@font-face {
    font-family: 'RockStar';
    font-stretch: normal;
    font-style: normal;
    font-weight: 250;
    src: local('RockStar-ExtraLight'), /* проверка наличия шрифта в ОС клиента */
    url('fonts/RockStar-extralight.otf');
}
@font-face {
    font-family: 'RockStar';
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    src: local('RockStar'), /* проверка наличия шрифта в ОС клиента */
    url('fonts/RockStar-regular.otf');
}
@font-face {
    font-family: 'RockStar';
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    src: local('RockStar-SemiBold'), /* проверка наличия шрифта в ОС клиента */
    url('fonts/RockStar-semibold.otf');
}
@font-face {
    font-family: 'Play';
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    src: local('Play'), /* проверка наличия шрифта в ОС клиента */
    url('fonts/Play-Regular.ttf');
}
.hide {
    display: none;
}
body {
    min-width: 320px;
    margin: 0;
    font-family: RockStar;
}
img {
    max-width: 100%;
}
* {
    box-sizing: border-box;
}
.header {
    padding: 30px 0;
}
.container {
    max-width: 1207px;
    width: 100%;
    margin: 0 auto;
}
.header__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.header__menu {
    display: flex;
    gap: 24px;
    font-size: 12px;
}
.header__menu a {
    color: #828282;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.header__menu a:hover {
    color: #1B201C;
}
.header__buttons {
    display: flex;
    gap: 12px;
}
.header__buttons-item a {
    display: block;
    padding: 0 18px;
    border-radius: 100px;
    background: #1B201C;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header__buttons-item_enter a {
    background: none;
    border: 1px solid #828282;
    color: #828282;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header__buttons-item a:hover {
    background: #CFF745;
    color: #1B201C;
}
.header__buttons-item_enter a:hover {
    background: none;
    border-color: #1B201C;
    color: #1B201C;
}
.header-banner {
    margin-top: 85px;
    position: relative;
}
.header-banner__container {
    position: relative;
    z-index: 1;
    height: 100%;
}
.header-banner__img-block {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.header-banner__img {
    position: absolute;
    right: -92px;
    bottom: 36px;
    z-index: 1;
}
.header-banner__title {
    font-size: 70px;
    line-height: 1.2;
}
.header-banner__title-block {
    padding: 0 20px;
}
.header-banner__title-container {
    position: relative;
    z-index: 1;
}
.header-banner__text {
    color: #1B201C;
    font-size: 22px;
    line-height: 31px;
    max-width: 634px;
    border: 2px solid #E2C7FC;
    border-radius: 57px;
    padding: 14px 30px;
    margin-bottom: 100px;
}
.header-banner__text span {
    font-weight: 250;
}
.header-banner__text-block {
    position: relative;
    min-height: 512px;
    padding: 0 20px;
    padding-top: 40px;
}
.header-banner__gradient {
    background: linear-gradient(180deg, #F7F7F7, #F8F8F8, #F7F7F9, #F6F6F6, #F3F2F3, #F2F2F3, #F3F3F3, #F2F2F2, #EEEFEF, #EEEFEF, #D1D6D7);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.header-banner__text-block__container {
    z-index: 2;
    position: relative;
    padding-bottom: 87px;
}
.header-banner__count {
    gap: 24px;
    align-items: center;
}
.header-banner__count.mob-hide {
    display: flex;
}
.header-banner__count-block {
    display: flex;
    gap: 24px;
    border: 2px solid #fff;
    border-radius: 46px;
    padding: 24px;
    max-width: 390px;
    flex-direction: column;
}
.header-banner__count-buttons {
    display: flex;
    gap: 12px;
}
.header-banner__count-buttons-items {
    font-family: Play;
    font-size: 12px;
    background: rgba(226, 199, 252, 0.8);
    border-radius: 78px;
    line-height: 30px;
    padding: 0 18px;
}
.header-banner__count-exercise {
    font-family: Play;
    font-size: 12px;
}
.header-banner__count-exercise span {
    font-family: RockStar;
    font-weight: 600;
    font-size: 90px;
}
.header-banner__count-btn a {
    font-size: 14px;
    background: #1B201C;
    border-radius: 100px;
    line-height: 44px;
    padding: 0 18px;
    display: block;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header-banner__count-btn a span {
    opacity: 0.9;
    font-weight: 400;
}
.header-banner__count-btn a:after {
    content: '';
    position: absolute;
    right: -37px;
    top: 0;
    background: url(images/arrow.svg) 0 0 no-repeat;
    width: 44px;
    height: 44px;
    transition: background 0.3s ease-in-out;
}
.header-banner__count-btn a:hover {
    background: #CFF745;
    color: #1B201C;
}
.header-banner__count-btn a:hover:after {
    background: url(images/arrow-hover.svg) 0 0 no-repeat;
}
.title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}
.main-middle {
    background: url(images/circle.svg) 0 center no-repeat;
    background-color: #000;
    padding: 100px 0;
}
.solutions__title {
    font-weight: 250;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.solutions__title span {
    color: #CFF745;
}
.solutions__text {
    text-align: center;
    color: #828282;
    font-size: 24px;
    font-weight: 250;
    max-width: 955px;
    width: 100%;
    margin: 0 auto;
}
.solutions__block {
    display: grid;
    grid-template-columns: 23.75% 40.17% 23.75%;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 83px;
}
.solutions__item-1 {
    grid-column: 1;
    grid-row: 2;
}
.solutions__item-1 .solutions__it {
    width: 100%;
    height: 285px;
}
.solutions__item-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.solutions__item-2 .solutions__it {
    width: 100%;
    height: 435px;
}
.solutions__item-3 {
    grid-column: 3;
    grid-row: 1;
}
.solutions__item-3 .solutions__it {
    width: 70%;
    height: 187px;
}
.solutions__item-4 {
    grid-column: 3;
    grid-row: 2;
}
.solutions__item-4 .solutions__it {
    width: 100%;
    height: 285px;
}
.solutions__item-5 {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    justify-content: flex-end;
}
.solutions__item-5 .solutions__it {
    width: 80%;
    height: 187px;
}
.solutions__item-6 {
    grid-column: 2;
    grid-row: 3;
}
.solutions__item-6 .solutions__it {
    margin-left: 140px;
    margin-bottom: 67px;
}
.solutions__it {
    text-align: center;
    padding: 32px;
    border-radius: 46px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.solutions__item img {
    margin-bottom: 50px;
}
.solutions__item-title {
    font-weight: 250;
    color: #828282;
}
.solutions__item-1 .solutions__item-title,
.solutions__item-4 .solutions__item-title {
    font-size: 20px;
}
.solutions__item-2 .solutions__item-title {
    font-size: 27px;
}
.solutions__item-3 .solutions__item-title,
.solutions__item-5 .solutions__item-title,
.solutions__item-6 .solutions__item-title {
    font-size: 11px;
}
.solutions__item:not(.solutions__item-6) .solutions__it:hover {
    box-shadow: 0px 0px 33.5px 0px #CFF74580;
}
.programs {
    padding: 95px 0;
}
.programs__block {
    display: grid;
    grid-template-columns: 205px auto 287px;
}
.programs__title {
    font-size: 28px;
    color: #fff;
    text-align: center;
}
.programs__center {
    display: flex;
    justify-content: center;
    position: relative;
}
.programs__center-text-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.programs__center-text {
    color: #CFF745;
    font-size: 28px;
    margin-top: 80px;
}
.programs__left-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.programs__left-block a {
    display: block;
    background: #1E1E1E;
    padding: 10px;
    width: 100%;
    line-height: 24px;
    border-radius: 100px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.programs__left-block a:hover {
    background: #CFF745;
    color: #1B201C;
}
.programs__right-block-title {
    display: flex;
    border-radius: 100px;
    background: #181818;
    width: 100%;
    padding: 4px;
    justify-content: center;
}
.programs__right-block-title-item {
    cursor: pointer;
    font-size: 14px;
    line-height: 44px;
    color: #fff;
    text-align: center;
    width: 50%;
}
.programs__right-block-title-item.active {
    background: #3D3B3B;
    border-radius: 100px;
}
.programs__right-block-title-item:hover {
    background: #3D3B3B;
    border-radius: 100px;
}
.programs__right-block {
    display: flex;
    gap: 32px;
    flex-direction: column;
}
.programs__right-block-item {
    display: none;
    flex-direction: column;
    gap: 24px;
}
.programs__right-block-item.active {
    display: flex;
}
.programs__right-block-item a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: padding-right 0.3s ease-in-out, color 0.3s ease-in-out;
    position: relative;
}
.programs__right-block-item a span {
    display: block;
    width: 100%;
    line-height: 44px;
    font-size: 14px;
    background: #1E1E1E;
    border-radius: 100px;
}
.programs__right-block-item a:hover {
    color: #CFF745;
    padding-right: 50px;
    position: relative;
}
.programs__right-block-item a span.programs__arrow {
    background: url(images/arrow-green.svg) 0 0 no-repeat;
    width: 44px;
    height: 44px;
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.programs__right-block-item a:hover span {
    opacity: 1;
}
/* Блок тарифов - слайдер */
.tarif {
    padding: 112px 20px;
    overflow: visible;
    padding-bottom: 200px;
}
.tarif__title {
    font-size: 36px;
    text-align: start;
}
.tarif__slider-wrapper {
    position: relative;
}
.tarif__slider-wrapper:after {
    content: '';
    background: url(images/tarif.svg) 0 0 no-repeat;
    width: 341px;
    height: 341px;
    position: absolute;
    right: -106px;
    top: -146px;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}
.tarif__slider.owl-carousel {
    position: relative;
}
.owl-stage {
    margin-top: 110px;
    margin-bottom: 10px;
}

.owl-stage-outer {
    padding-bottom: 50px;
}

/* Убраны все hover эффекты */
.tarif__item {
    width: 100%;
    transition: transform 0.3s ease;
}
.tarif__it {
    box-shadow: 0px 4px 6.7px 0px #0000001F;
    border-radius: 40px;
    height: 100%;
}
.tarif__item-top {
    display: flex;
    flex-direction: column;
    gap: 45px;
    box-shadow: 0px 4px 6.7px 0px #0000001F;
    border-radius: 40px;
    padding: 42px 25px 14px;
    background: #fff;
}
/* Центральный элемент увеличен в 1.26 раза */
.tarif__slider .owl-item.center .tarif__item {
    transform: scale(1.15);
}
.tarif__item-top-price {
    width: 100%;
    border-radius: 40px;
    background: #E2C7FC;
    height: 205px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tarif__item-top-price-name {
    background: #fff;
    border-radius: 77px;
    width: 112px;
    text-align: center;
    font-family: Play;
    font-size: 14px;
    line-height: 22px;
}
.tarif__item-top-price-cost {
    font-size: 20px;
    line-height: 16px;
    font-weight: 250;
    display: flex;
    align-items: center;
}
.tarif__item-top-price-cost span {
    font-size: 49px;
    font-weight: normal;
    line-height: 32px;
}
.tarif__item-top-price-cost span.rub {
    font-family: Play;
    font-size: 39px;
}
.tarif__item-top a {
    background: #000;
    border-radius: 100px;
    display: block;
    text-align: center;
    line-height: 52px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}
.tarif__item-text {
    padding: 50px 30px 30px;
    font-family: Play;
    font-size: 21px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.tarif__item-text div {
    position: relative;
    padding-left: 30px;
}
.tarif__item-text div:before {
    content: '';
    background: url(images/check.svg) 0 0 no-repeat;
    width: 16px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 3px;
    background-size: cover;
}
.tarif__item_2 .tarif__item-top-price {
    background: #CFF745;
}
.tarif__item_3 .tarif__item-top-price {
    background: #F3F2F3;
}
.reviews {
    background: #000;
    padding: 90px 0 174px;
}
.reviews__title {
    color: #fff;
}
.owl-carousel .owl-item img {
    width: auto;
}
.reviews__slider {
    background: url(images/reviews.svg) center 0 no-repeat;
    padding: 68px 0;
}
.reviews__block .owl-item {
    background: rgba(255, 255, 255, 0.47);
    border-radius: 24px;
    backdrop-filter: blur(52.900001525878906px);
    padding: 14px 14px 25px;
}
.reviews__item {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.reviews__person {
    display: flex;
    gap: 30px;
    align-items: center;
}
.reviews__person img {
    border-radius: 100px;
}
.reviews__name {
    font-size: 16px;
}
.revews__text {
    font-family: Play;
    font-size: 14px;
}
.reviews__stars {
    display: flex;
    gap: 5px;
}
.reviews__star.active {
    width: 25px;
    height: 25px;
    background: url(images/star.svg) 0 0 no-repeat;
    background-size: cover;
    display: block;
}
.main-faq {
    padding: 89px 20px;
}
.main-faq__block {
    max-width: 827px;
    width: 100%;
    margin: 0 auto;
}
.main-faq__item {
    background: #F3F2F3;
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 12px;
}
.main-faq__title {
    font-weight: 600;
    font-size: 18px;
    position: relative;
    min-height: 32px;
    cursor: pointer;
}
.main-faq__title:after {
    content: '';
    background: url(images/arrow-down.svg);
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -16px;
    transition: background 0.5s ease-in-out;
}
.main-faq__title.active:after {
    background: url(images/arrow-down-active.svg);
}
.main-faq__text {
    font-family: Play;
    color: #949494;
    font-size: 14px;
    max-width: 484px;
    display: none;
    margin-top: 20px;
}
.footer {
    background: #000;
    padding: 0 20px;
    padding-top: 86px;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
}
.footer__info {
    display: flex;
    gap: 64px;
    flex-direction: column;
}
.footer__text {
    display: flex;
    gap: 32px;
    flex-direction: column;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.footer__text p {
    margin: 0;
}
.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__menu a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}
.footer__bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    font-size: 10px;
    border-top: 0.5px solid #3D3B3B;
}
.footer__links {
    display: flex;
    gap: 24px;
}
.footer__links a {
    color: #fff;
}
.header-mobile__block {
    display: none;
    background: #fff;
    position: absolute;
    left: 0;
    top: 59px;
    z-index: 2;
    width: 100%;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.05);
    padding: 12px 16px;
    text-align: center;
}
.header-mobile__block.show {
    display: block;
}
.header__burger {
    display: none;
    border: 1px solid #DADADA;
    border-radius: 100px;
    width: 60px;
    height: 36px;
    justify-content: center;
    align-items: center;
}
.header__burger span {
    background: url(images/burger.svg) 0 0 no-repeat;
    width: 18px;
    height: 14px;
    background-size: cover;
    display: inline-block;
}
.header__burger.active {
    border: 0 none;
}
.header__burger.active span {
    background: url(images/close.svg) 0 0 no-repeat;
    width: 16px;
    height: 16px;
}
.header-mobile__menu-item {
    margin-bottom: 15px;
}
.header-mobile__menu-item a {
    color: #828282;
    font-size: 14px;
    text-decoration: none;
}
.header-mobile__buttons {
    margin-top: 30px;
}
.header-mobile__buttons-item a {
    display: inline-block;
    width: 189px;
    padding: 0 18px;
    border-radius: 100px;
    background: #1B201C;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    margin-bottom: 12px;
}
.header-mobile__buttons-item_enter a {
    background: none;
    border: 1px solid #828282;
    color: #828282;
    transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.header-mobile__buttons-item a:hover {
    background: #CFF745;
    color: #1B201C;
}
.header-mobile__buttons-item_enter a:hover {
    background: none;
    border-color: #1B201C;
    color: #1B201C;
}
.mob-hide {
    display: block;
}
.mob-show {
    display: none;
}
@media screen and (max-width: 1440px) {
    .header-banner__img {
        right: 0;
    }
    .tarif__slider-wrapper:after {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    header {
        position: relative;
        z-index: 2;
    }
    .header {
        padding: 13px 0;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        box-shadow: 0 6px 10px 0 rgba(0,0,0,0.05);
        position: fixed;
        width: 100%;
        background: #fff;
        height: 60px;
    }
    .header.header-mobile {
        box-shadow: none;
        border-radius: 0;
    }
    .header__menu {
        display: none;
    }
    .header__buttons {
        display: none;
    }
    .header__burger {
        display: flex;
    }
    .header__block {
        padding: 0 16px;
    }
    main {
        padding-top: 60px;
        position: relative;
        z-index: 1;
    }
    .header-banner__gradient {
        display: none;
    }
    .header-banner__img-block {
        position: relative;
        padding-left: 42px;
        padding-right: 80px;
        margin-bottom: 36px;
    }
    .header-banner__img {
        position: relative;
        bottom: 0;
        width: 260px;
    }
    .header-banner {
        margin-top: 54px;
    }
    .mob-hide {
        display: none;
    }
    .mob-show {
        display: block;
    }
    .header-banner__title {
        font-size: 32px;
        text-align: center;
    }
    .header-banner__count-buttons-items {
        display: inline-block;
        line-height: 26px;
    }
    .header-banner__count-buttons-items-1 {
        position: absolute;
        right: -45px;
        top: 60px;
    }
    .header-banner__count-buttons-items-2 {
        position: absolute;
        right: -45px;
        bottom: 5px;
    }
    .header-banner__text {
        padding: 38px;
        text-align: center;
        font-size: 18px;
        border-radius: 40px;
        margin: 0 auto;
    }
    .header-banner__text .header-banner__count-btn {
        margin-top: 35px;
        display: inline-block;
        margin-left: -35px;
    }
    .header-banner__text .header-banner__count-btn a {
        font-size: 18px;
    }
    .header-banner__text-block__container {
        padding-bottom: 72px;
    }
    .header-banner__text-block {
        min-height: 0;
        padding:  0 16px;
        padding-top: 40px;
    }
    .footer__top {
        flex-direction: column;
        gap: 64px;
    }
    .footer__info img {
        max-width: auto;
        margin-bottom: 64px;
    }
    .footer__info {
        display: block;
    }
    .footer {
        padding: 32px 16px;
    }
    .footer__bottom {
        flex-direction: column;
    }
    .header-banner__count.mob-hide {
        display: none;
    }
    .header-banner__title-block {
        padding: 0 16px;
    }
    .main-middle {
        background-image: none;
        padding-top: 64px;
    }
    .solutions {
        padding: 0 16px 64px 16px;
    }
    .solutions__block {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-bottom: 0;
    }
    .solutions__item-1 {
        grid-row: 1;
        grid-column: 1;
    }
    .solutions__item-2 {
        grid-row: 1;
        grid-column: 2;
    }
    .solutions__item-3 {
        grid-row: 2;
        grid-column: 1;
    }
    .solutions__item-4 {
        margin: 20px auto 0;
        width: 50%;
    }
    .solutions__item-5 {
        grid-row: 2;
        grid-column: 2;
    }
    .solutions__item-1 .solutions__it,
    .solutions__item-2 .solutions__it,
    .solutions__item-3 .solutions__it,
    .solutions__item-4 .solutions__it,
    .solutions__item-5 .solutions__it {
        height: 180px;
        box-shadow: 0px 0px 8px 0px rgba(207, 247, 69, 0.32);
        width: 100%;
    }
    .solutions__item-1 .solutions__it img {
        width: 63px;
    }
    .solutions__item-2 .solutions__it img {
        width: 59px;
    }
    .solutions__item-3 .solutions__it img {
        width: 52px;
    }
    .solutions__item-5 .solutions__it img {
        width: 45px;
    }
    .solutions__item-4 .solutions__it img {
        width: 43px;
    }
    .solutions__item .solutions__item-title {
        font-size: 12px !important;
    }
    .solutions__item img {
        margin-bottom: 30px;
    }
    .programs__block {
        grid-template-columns: 100%;
    }
    .programs {
        margin-top: 12px;
        padding: 0 16px 20px;
    }
    .programs__title {
        margin-bottom: 24px;
    }
    .programs__right {
        order: 1;
        border: 1px solid #383838;
        border-radius: 20px;
        margin-top: 12px;
        padding: 24px 16px;
    }
    .programs__left {
        order: 2;
        border: 1px solid #383838;
        border-radius: 20px;
        margin-top: 20px;
        padding: 24px 16px;
    }
    .programs__right-block {
        max-width: 287px;
        margin: 0 auto;
        width: 100%;
    }
    .programs__center-text {
        text-align: center;
        margin-top: 0;
        margin-bottom: 24px;
    }
    .programs__left-block {
        max-width: 204px;
        width: 100%;
        margin: 0 auto;
    }
    .title {
        font-size: 32px;
    }
    .reviews__title {
        margin-bottom: 100px;
    }
    .reviews__block {
        padding: 0 16px;
    }
    .reviews__slider {
        background-size: contain;
        padding-top: 120px;
        padding-bottom: 0;
    }
    .owl-carousel .owl-item .reviews__photo img {
        width: 44px;
    }
    .reviews__person {
        gap: 20px;
    }
    .reviews {
        padding-bottom: 32px;
    }
    .main-faq .title {
        font-size: 28px;
        margin-bottom: 46px;
    }
    .main-faq {
        padding-left: 16px;
        padding-right: 16px;
    }
    .main-faq__title {
        font-size: 14px;
        min-height: 0;
        padding-right: 50px;
    }
    .main-faq__item {
        padding: 32px 24px;

    }
    .tarif__title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .tarif {
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 150px;
    }
    .tarif__item-top {
        padding: 16px;
        border-radius: 20px;
        gap: 20px;
    }
    .tarif__item-top-price {
        padding: 16px;
        border-radius: 20px;
        height: 137px;
    }
    .tarif__item-top-price-name {
        font-size: 12px;
        width: 70px;
    }
    .tarif__item-top-price-cost {
        font-size: 12px;
    }
    .tarif__item-top-price-cost span {
        font-size: 32px;
    }
    .tarif__item-top-price-cost span.rub {
        font-size: 28px;
    }
    .tarif__item-top a {
        font-size: 14px;
        line-height: 42px;
    }
    .tarif__item-text {
        padding: 32px 16px 16px 16px;
        font-size: 14px;
        gap: 16px;
    }
    .tarif__item-text div:before {
        width: 11px;
        height: 9px;
    }
    .tarif__item-text div {
        padding-left: 23px;
    }
}

/* === Tariffs: separate Desktop grid and Mobile Owl === */
.tarif--desktop { display: none; }
.tarif--mobile { display: block; }

@media (min-width: 1024px) {
  .tarif--desktop { display: block; }
  .tarif--mobile { display: none !important; }

  .tarif__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  /* Ensure cards fill the grid column */
  .tarif__grid .tarif__item,
  .tarif__grid .tarif__it {
    height: 100%;
  }

  .tarif__grid .tarif__it {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform;
  }

  /* Push feature list area to grow, so buttons align */
  .tarif__grid .tarif__item-text { flex: 1 1 auto; }

  .tarif__grid .tarif__it:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    z-index: 10;
  }
}


/* === MOBILE ONLY (safe): align tariff side cards bottom === */
@media (max-width: 1023px) and (hover: none) and (pointer: coarse) {

  .tarif__slider .owl-stage {
    display: flex;
    align-items: stretch;
  }

  .tarif__slider .owl-item {
    display: flex;
  }

  .tarif__slider .tariff-card,
  .tarif__slider .tarif__item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .tarif__slider .tariff-card__features,
  .tarif__slider .tarif__item-bottom {
    margin-top: auto;
  }
}

