* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Прелоадер */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292A2F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.preloader-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
}

#preloader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
}

.progress-ring-circle {
    fill: none;
    stroke: rgba(191,191,191,1.00);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 282.74;
    stroke-dashoffset: 282.74;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-text {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Анимация исчезновения прелоадера */
.preloader-hidden {
    opacity: 0 !important;
    transform: scale(0.9) !important;
    pointer-events: none;
}

.preloader-wrapper-hidden {
    transform: scale(0.8) !important;
    opacity: 0 !important;
}

/* Основной контент */
#main-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.main-content-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .preloader-wrapper {
        width: 180px;
        height: 180px;
    }

    #preloader-container {
        width: 130px;
        height: 130px;
    }

    .progress-ring {
        width: 180px;
        height: 180px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .preloader-wrapper {
        width: 150px;
        height: 150px;
    }

    #preloader-container {
        width: 120px;
        height: 120px;
    }

    .progress-ring {
        width: 150px;
        height: 150px;
    }

    .progress-text {
        font-size: 14px;
        bottom: -25px;
    }
}









.fr { margin-left: auto; }
.fl { margin-right: auto; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 1000;
    transition: background 0.5s ease;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 70px;
    margin: 0 auto;
}

.header__logo img {
    width: 190px;
    height: 140px;
    object-fit: contain;
}

.header__center {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(232, 225, 225, 1);
    font-weight: 500;
    font-size: 24px;
}

.header__phone img {
    width: 19px;
    height: 17px;
}

.header__contact-btn , .header__contact-btn2 {
    background: #212327;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header__contact-btn:hover , .header__contact-btn2:hover {
    background: #353338;
}

.header__menu-btn {
    background: #212327;
    border: none;
    width: 47px;
    height: 47px;
    border-radius: 47px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s all linear;
}

.header__menu-btn:hover {
    background-color: #353338;
}

.header__menu-btn img {
    width: 20px;
    height: 20px;
}

.footer__menu-btn {
    background: rgb(33 35 39);
    border: none;
    width: 47px;
    height: 47px;
    border-radius: 47px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__menu-btn img {
    width: 36px;
    height: 36px;
}

.call-btn {
    position: fixed;
    bottom: 70px;
    right: calc(70px + var(--scrollbar-width, 17px));
    width: 47px;
    height: 47px;
    background: rgb(33 35 39);
    border-radius: 47px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    display: none;
}

.call-btn img {
    width: 20px;
    height: 20px;
}

.block-nav {
    position: fixed;
    right: calc(15px + var(--scrollbar-width, 17px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    pointer-events: none;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.nav-dot {
    width: 11px;
    height: 11px;
    background: rgba(217, 217, 217, 1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 1s ease;
    position: relative;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    width: 25px;
    height: 25px;
    border: 1px solid #af9e80;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.main-content {
    position: relative;
    height: 100%;
}

.block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 20px;
    scroll-snap-align: start;
    position: relative;
}

.block__content {
    text-align: center;
    width: 100%;
}

/*
.block-1 {
    background: linear-gradient(rgb(34,37,26), rgb(53,41,18));
    background-color: rgb(34,37,26);
    background-image: url(../img/block1/bg_large.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    height:100vh;
    max-height:100vh;
}
.block-1 .block__content {
    max-width: 650px;
    margin-bottom:10%;
}
*/

/*.block-1 {
    position: relative;
    background: linear-gradient(rgb(34,37,26), rgb(53,41,18));
    background-color: rgb(34,37,26);
    overflow: hidden;
    min-height: 100vh;
    height:100vh;
    max-height:100vh;
}

.block1-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.block-1 .block__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-bottom: 10%;
}*/


.block-1 {
    position: relative;
    background: linear-gradient(rgb(34,37,26), rgb(53,41,18));
    background-color: rgb(34,37,26);
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
}

.block1-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    
    /* Исправления для производительности */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.block5-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    
    /* Исправления для производительности */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Фолбэк - скрыт по умолчанию */
.ios-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/block1/bg_large.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
    display: none; /* Скрыт */
}

.block-1 .block__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-bottom: 10%;
}






.block-5 {
    background-image: url(../img/block5/bg_large.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
    /*min-height: -webkit-fill-available;*/
    /*min-height: 100vh;*/
    height:80vh;
}
.block-5 .block__content {
    z-index: 2;
}

.block1__title {
    color: rgba(203, 208, 201, 1);
    font-weight: 700;
    font-size: clamp(40px, 8vw, 91px);
    line-height: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.block1__subtitle {
    color: #AF9E80;
    font-weight: 700;
    font-size: clamp(40px, 8vw, 91px);
    line-height: 100%;
    text-align: right;
}

.block__num , .block__num2 , .block__num3 , .block__num4 {
    position: absolute;
    top:-7vw;
    left: -7vw;
}

.block__num_val {
    font-size: 21vw;
    color: rgba(65, 76, 57, 0.14);
}

.block__num_val2 {
    position: absolute;
    top: 12.5vw;
    left: 11.5vw;
    font-size: 2.5vw;
    color: rgba(74, 89, 63, 1);
    padding-bottom: 1vw;
    border-bottom: 0.2vw solid #4a593f;
}

.block__num_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    color:rgba(33, 35, 39, 1);
    position: absolute;
    left: 18.5vw;
    top: 11.5vw;
    font-size: 5vw;
    font-weight: bold;
}

.block__num_title .first-word {
    color:rgba(74, 89, 63, 1);
}

.block__num2 .block__num_val {
    color:rgba(65, 76, 57, 0.14);
}

.block__num2 .block__num_val2 {
    color: rgba(139, 160, 144, 1);
    border-bottom: 0.2vw solid rgba(139, 160, 144, 1);
}

.block__num2 .block__num_title {
    color:rgba(139, 160, 144, 1);
}

.block__num2 .block__num_title .first-word {
    color:rgba(175, 158, 128, 1);
}

.block__num3 .block__num_val {
    color:rgba(65, 76, 57, 0.14);
}

.block__num3 .block__num_val2 {
    color: #8BA090;
    border-bottom: 0.2vw solid #CBD0C9;
}

.block__num3 .block__num_title {
    color: #557C40;
}

.block__num3 .block__num_title .first-word {
    color: #CBD0C9;
}

.block__num4 .block__num_val {
    color:rgba(65, 76, 57, 0.14);
}

.block__num4 .block__num_val2 {
    color: #8BA090;
    border-bottom: 0.2vw solid #CBD0C9;
}

.block__num4 .block__num_title {
    color: #557C40;
}

.block__num4 .block__num_title .first-word {
    color: #AF9E80;
}

.block-2 { background-color: #CBD0C9; }
.block-3 { background-color: #212327; }
.block-4 { background-color: #CBD0C9; }
.block-5 { background-color: #CBD0C9; }
.block-6 {background-color: #292A2F;}
.block-7 { background-color: #212327; }
.block-8 {background-color: #CBD0C9;padding-bottom: 10%;padding-top: 10%;}
.block-9 {background-color: #cbd0c9;}
.block-10 { background-color: #CBD0C9; }
.block-11 { background-color: #040602; }
.block-12 { background-color: #292A2F; }
.block-13 { background-color: #212327; }

@media (max-width: 370px) {
    .header__contact-btn2 {
        display: none;
    }
}




/* 
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.locs-carousel .owl-stage {
    will-change: transform;
    transition: transform 0.3s ease;
}

@media (max-width: 600px) {
    .locs-carousel .owl-stage {
        animation: none !important;
        transform: none !important;
    }
}


@media (min-width: 601px) {
    .locs-carousel .owl-wrapper-outer {
        overflow: hidden;
    }
    
    .locs-carousel .owl-stage {
        display: flex;
        animation: infiniteScroll 60s linear infinite;
    }
}*/






@media (max-width: 768px) {
    
    .header {
        height: 80px;
        width: 100%;
    }
    
    .header__container {
        padding: 0 20px;
    }
    
    .header__logo img {
        width: 100px;
        height: 60px;
    }
    
    .header__phone {
        font-size: 16px;
    }
    
    .header__phone span {
        display: none;
    }
        
    .header__contact-btn {
        padding: 8px 16px;
        font-size: 14px;
        display: none;
    }
    
    .call-btn {
        display: flex;
        bottom: 20px;
        right: 20px;
    }
    
    .block-nav {
        right: 15px;
    }
    
    .nav-dots {
        gap: 40px;
    }
    
    .nav-dot::before {
        width: 20px;
        height: 20px;
    }
    
    .block {
        padding: 80px 15px 15px;
        overflow-x: hidden;
    }
    .block-4 .content > div:last-child img {
        margin-right:-30px;
    }

    .block-1 .block__content {
        width:80%;
    }
    
    .block1__title,
    .block1__subtitle {
    }
    
    .main-content::-webkit-scrollbar {
        width: 8px;
    }
    
    .header__phone {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header__center {
        gap: 8px;
    }
    
    .header__contact-btn {
        display: none;
    }
    
    .nav-dots {
        gap: 30px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-dot::before {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    .block-1 .block__content {
        max-width: 480px;
    }
    
    .call-btn {
        right: calc(40px + var(--scrollbar-width, 17px));
        bottom: 40px;
    }
    
    .block-nav {
        right: calc(15px + var(--scrollbar-width, 17px));
    }
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

@supports (-webkit-touch-callout: none) {
    body {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .main-content {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        height: 100%;
    }
    
    .main-content {
        overscroll-behavior-y: none;
    }
}

.block-13 {
    background-color: #212327 !important;
    max-height: none !important;
    height: auto;
    min-height: auto;
    padding: 80px 70px 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    gap: 40px;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo img {
    width: 190px;
    height: 143px;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    flex-grow: 1;
    max-width: 600px;
}

.footer__nav-link {
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer__nav-link:hover {
    color: #557C40;
}

.footer__contacts {
    display: flex;
    align-items: center;
    gap: 3vw;
    flex-shrink: 0;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__phone-block {
    display: flex;
    align-items: center;
    gap: 3vw;
}

.footer__phone {
    color: #cbd0c9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: right;
    white-space: nowrap;
    cursor: pointer;
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__phone img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer__contact-btn {
    background: #AF9E80;
    color: #212327;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer__contact-btn:hover {
    background: #353338;
    color: #CBD0C9;
}

.map-icon {
    margin-bottom: 10px;
}

.map-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.map-link {
    display: inline-block;
    margin-bottom: 35px !important;
}

.block__icon_map {
    width: 45px;
    height: 45px;
}

.block-12 .block__content_main {
    width: 100%;
    height: calc(95vh - 20vw);
    max-height: 580px;
    margin-top: 7vw;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    padding-bottom: 0px;
}

.block-12 .map-left-block {
    margin-left: calc(11.5vw - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.block-12 .left-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block-12 .top-text {
    text-align: left;
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    padding-left: calc(11.5vw - 15px);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#map .ymaps-2-1-79-map-copyrights-promo,
#map .ymaps-2-1-79-copyright__content,
#map .ymaps-2-1-79-copyright__wrap {
    display: none !important;
}

.block-12 #map {
    width: 60vw;
    height: 100%;
    filter: grayscale(1);
}

.block-12 .bottom-text {
    text-align: left;
    background-color: greenyellow;
}

.block-12 .right-block {
    background-color: antiquewhite;
}

.block-11 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.block-11 .container {
    display: flex;
    width: 100%;
    height: max( min(100vh, 120vw) , 450px );
}

.block-11 .left-block {
    width: 60%;
    background: #cbd0c9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.block-11 .left-block p {
    margin: 0;
}

.block-11 .right-block {
    flex: 0 0 40%;
    background: lightcoral;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F4F4F4;
    background-image: url("../img/block11/bg_right_large.jpg");
    background-position: center;
    background-size: cover;
}

.block-11 .left-block .download {
    background-color: #353338;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 80px;
    width: calc(60vw - 15px);
    max-width: 327px;
    display: inline-block;
    text-align: center;
    color: #CBD0C9;
}

.block-11 .left-block .download:hover {
    background-color: #212327;
    color: #CBD0C9;
}


.block-10 {
    margin: 0;
    padding: 5vw;
    box-sizing: border-box;
    min-height: min( 90vh , 70vw );
}

.block-10 .button {
    background-color: #AF9E80;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 80px;
    width: calc(60vw - 15px);
    max-width: max(280px , 20vw);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: 2px solid #AF9E80;
    border: none;
    color:#212327;
}

.block-10 .button:hover {
    background-color: #353338;
    color: #CBD0C9;
}

.block-10 .steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.block-10 .step {
    flex: 1 1 300px;
    min-width: 250px;
    max-width: max( 20vw , 420px );
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.block-10 .step-title {
    padding-top: 10vw;
    margin-bottom: 10px;
}

.block-10 .step-text {
    
}

.block-10 .step-txt {
    display: inline-block;
    position: relative;
}

.block-10 .step-txt b {
    position: relative;
    z-index: 2;
}

.block-10 .step-num {
    position: relative;
    z-index: 1;
}

.block-10 .step-num {
    position: absolute;
    bottom: calc( ( max(74px,9vw) ) / -6 );
    left: 0px;
}

.block-7 {
    min-height: min( 70vh , 70vw );
}

.block-7 .button {
    background-color: #AF9E80;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 80px;
    width: calc(60vw - 15px);
    max-width: max(280px , 20vw);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: 2px solid #AF9E80;
    border: none;
    color:#212327;
}

.block-7 .button:hover {
    background-color: #353338;
    color:#CBD0C9;
}

.block-7 .pricing-table {
    width: calc( 100% - (11.5vw - 15px) * 2 );
    display: flex;
    flex-direction: column;
    margin-left: calc(11.5vw - 15px);
    margin-top: 7vw;
}

.block-7 .pricing-table > div {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #383838;
    padding: 3vh 0;
    align-items: center;
    cursor: pointer;
}

.block-7 .pricingtable_div {
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.35s all linear;
}

.block-7 .pricingtable_div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(33, 35, 39, 0) 0%, rgba(56, 56, 56, 1) 31%, rgba(33, 35, 39, 1) 56%, rgba(56, 56, 56, 0) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 1s linear;
}

.block-7 .pricingtable_div:hover::before {
    opacity: 1;
}

.block-7 .pricing-table > div > div:first-child {
    flex: 1;
    text-align: left;
    font-weight: bold;
}

.block-7 .pricing-table > div > div:last-child {
    flex: 1;
    text-align: right;
}

.block-7 .pricing-table > div > div:first-child,
.block-7 .pricing-table > div > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tariff-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tariff-modal.active {
    display: block;
    opacity: 1;
}

.tariff-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tariff-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: max-content;
    height: auto;
    max-width: 1800px;
    max-height: 90%;
    background: #212327;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tariff-modal.active .tariff-modal__container {
    transform: translate(-50%, -50%) scale(1);
}

.tariff-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #353338;
    color: #CBD0C9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tariff-modal__close:hover {
    background: #212327;
}

.tariff-modal__close img {
    width: 16px;
    height: 16px;
}

.tariff-modal__content {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(175, 158, 128, 0.3) transparent;
}

.tariff-modal__content::-webkit-scrollbar {
    width: 8px;
}

.tariff-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.tariff-modal__content::-webkit-scrollbar-thumb {
    background: rgba(175, 158, 128, 0.3);
    border-radius: 4px;
}

.tariff-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(175, 158, 128, 0.5);
}

.tariff-modal-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 10px;
    height: 100%;
    width: 100%;
}

.tariff-left-column {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
}

.tariff-right-column {
    background: #292A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.tariff-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 622 / 800;
}

.tariff-image {
    max-height: 800px;
    max-width: 622px;
    object-fit: contain;
    background: linear-gradient(135deg, #292A2F 0%, #212327 100%);
    color: #CBD0C9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-height: 300px;
}

.tariff-image-new {
    aspect-ratio: 622 / 800;
    max-height: 800px;
    max-width: 622px;
    width:100%;
}

.tariff-header-section {
    margin-bottom: 20px;
}

.tariff-divider {
    height: 2px;
    background: #383838;
    margin: 20px 0;
    width: 100%;
}

.tariff-navigation-section {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
    flex: 1;
}

.tariff-navigation-section-mobile {
    display: none;
}

.tariff-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.tariff-nav-arrow:hover {
    opacity: 0.7;
}

.tariff-description {
    text-align: center;
    min-height: 33em;
    padding-top: 2em;
}

.tariff-price {
    margin-bottom: 10px;
}

.tariff-duration {
    margin-bottom: 20px;
}

.tariff-desc-text {
    margin-bottom: 30px;
    line-height: 1.4;
    height: 3em;
}

.tariff-features-section,
.tariff-not-included-section {
    margin-bottom: 25px;
    text-align: left;
    margin-top: 25px;
}

.tariff-features-title,
.tariff-not-included-title {
    margin-bottom: 15px;
    text-align: center;
}

.tariff-features-list,
.tariff-not-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tariff-feature-item,
.tariff-not-included-item {
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(56, 56, 56, 0.3);
    position: relative;
    padding-left: 30px !important;
    font-weight: normal !important;
}

.tariff-feature-item:before {
    content: '✓';
    color: #557C40;
    position: absolute;
    left: 0px;
    font-weight: bold;
}

.tariff-not-included-item:before {
    content: '×';
    color: #8BA090;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tariff-feature-item:last-child,
.tariff-not-included-item:last-child {
    border-bottom: none;
}

.tariff-actions-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.tariff-book-btn,
.tariff-download-btn {
    background-color: #AF9E80;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 80px;
    width: 100%;
    max-width: 480px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    color: #212327;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: max(14px, 1.1vw);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.tariff-book-btn:hover {
    background-color: #353338;
    color: #CBD0C9;
}

.tariff-download-btn {
    background-color: #212327;
    color: #CBD0C9;
}

.tariff-download-btn:hover {
    background-color: #353338;
}

.tariff-nav-arrow img {
    width: 40px;
    height: 40px;
    padding: 5px;
    transition: 0.1s all linear;
    opacity: 0.6;
}
.tariff-nav-arrow:hover img {
    background-color: rgba( 255,255,255,0.15 );
    transform: scale(1.1);
}

@media (max-width: 1140px) {

    .tariff-left-column {
        padding: 0px;
    }
    
    .tariff-features-list,
    .tariff-not-included-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .tariff-navigation-section {
        display: none;
    }
    
    .tariff-navigation-section-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .tariff-modal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tariff-right-column {
        display: none;
    }
    
    .tariff-mobile-image {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: top;
        justify-content: center;
        order: 1;
    }
    
    .tariff-mobile-image .tariff-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }
    
    .tariff-mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        order: 2;
        margin-top: 10px;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 25vh;
    }
    
    .tariff-nav-arrow {
        flex: 0 0 50%;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: opacity 0.3s ease;
        padding: 10px;
    }
    
    .tariff-nav-arrow.tariff-prev {
        justify-content: flex-start;
    }
    
    .tariff-nav-arrow.tariff-next {
        justify-content: flex-end;
    }
    
    
    .tariff-nav-arrow.tariff-prev img , .tariff-nav-arrow.tariff-next img {
        background-color: rgba(0,0,0,0.50);
    }
    
    .tariff-nav-arrow:hover {
        opacity: 0.7;
    }
        
    .tariff-description {
        order: 3;
        padding-top: 0;
    }
    
    .tariff-modal__container {
        width: 95%;
        max-width: 480px;
    }

    .tariff-modal__content {
        padding: 30px 20px;
    }
    
    .tariff-actions-section {
        order: 4;
        margin-top: 20px;
    }
    
    .tariff-description {
        text-align: left;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .tariff-desc-text,
    .tariff-features-section,
    .tariff-not-included-section {
        width: auto;
        text-align: left;
    }
    
    .tariff-features-title,
    .tariff-not-included-title {
        text-align: left;
        width: 100%;
    }
    
}

@media (max-width: 480px) {
    .tariff-modal__content {
        padding: 25px 15px;
    }
}

.block-8 .stats-table {
    width: calc( 100% - (11.5vw - 15px) * 2 );
    display: flex;
    flex-wrap: wrap;
    gap: 10vh 0;
    margin-left: calc(11.5vw - 15px);
    margin-right: calc(11.5vw - 15px);
}

.block-8 .stats-table > div:first-child {
    width: 100%;
    margin-bottom: 30px;
    font-size: max(24px, 2.5vw);
    font-weight: bold;
}

.block-8 .stats-table > div:not(:first-child) {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: normal;
    text-align: left;
    padding: 25px 15px;
    border-left: 0.3em solid #AF9E80;
    padding-left: 5%;
}

.block-8 .stats-table .txt-style-1 {
    width: 100%;
    margin-bottom: 10px;
}

.block-8 .stats-table .txt-style-2 {
    width: 100%;
}

@media (max-width: 768px) {
    .block-8 .stats-table > div:first-child {
        margin-bottom: 0px;
    }
    .block-8 .stats-table > div:not(:first-child) {
        width: 100%;
    }
}

.block-5 .content {
    width: calc( 100% - (11.5vw - 15px) * 2 );
    margin-left: calc(11.5vw - 15px);
    margin-right: calc(11.5vw - 15px);
    text-align: left;
}

.block-6 .content {
    width: 100%;
    margin-top: 7vw;
}

.block-6 .slide-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    max-height: 2.8em;
    line-height: 1.4;
    overflow: hidden;
    min-height: 2.8em;
}

.block-6 .slide-description {
    font-weight: 100;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: block;
    max-height: 4.2em;
    line-height: 1.4;
    overflow: hidden;
    min-height: 4.2em;
    margin-bottom: 1.4em;
    margin-top: 1.4em;
}

.block-6 .slide-content {
    background-color: #212327;
    padding: 15px;
}

.block-6 .owl-nav {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    display: flex;
}

.block-6 .owl-nav button {
    width: 50%;
    height: 50px;
    flex: 0 0 50%;
    color:#fff;
}    

.block-6 .owl-carousel {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.block-6 .slide-imgblock {
    position: relative;
}

.block-6 .slide-imgblock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: -1px -63px 33px -20px rgba(32, 35, 39, 1) inset;
    pointer-events: none;
    z-index: 2;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #af9e80 !important;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}

.block-2 .content {
    width: calc( 100% - (11.5vw - 15px) * 2 );
    margin-left: calc(11.5vw - 15px);
    margin-right: calc(11.5vw - 15px);
    text-align: left;
    margin-top: 5vw;
}

.block-3 {
    background-color: #212327 !important;
    padding-bottom: 80px !important;
}

.block-3 .block__content {
    background-image: url("../img/block3/bg_logo.png");
    background-repeat: no-repeat;
    background-size: 90% auto;
    background-position: center center;
}

.coaches-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 7vw 0 4vw 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: #AF9E80;
    border: none;
    color: #212327;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: max(14px, 1.1vw);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.filter-btn:hover {
    background: #353338;
    color: #CBD0C9;
}

.filter-btn.active {
    background: #AF9E80;
    color: #212327;
}

.coaches-carousel-container {
    position: relative;
    margin: 0 auto;
    padding: 0 60px;
    width: calc(100% - (11.5vw - 15px) * 2);
    margin-left: calc(11.5vw - 15px);
}

.coaches-carousel {
    width: 100%;
}

.coach-item {
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
    max-width: none;
}

.coach-item:hover {
    margin-top: -5px;
}

.coach-image {
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    position: relative;
    overflow: hidden;
}

.coach-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: -1px -63px 33px -20px rgba(32, 35, 39, 1) inset;
    pointer-events: none;
    z-index: 2;
}

.coach-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coach-item:hover .coach-photo {
    transform: scale(1.05);
}

.coach-info {
    padding: 20px 15px;
    text-align: center;
    margin: 0 7px;
}

.coach-name {
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: max(16px, 1.4vw);
    line-height: 1.2;
    margin-bottom: 8px;
}

.coach-position {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 4em;
    color: #AF9E80;
    font-family: 'Inter', sans-serif;
}

.coaches-nav {
    position: absolute;
    top: 50%;
    left: 0px;
    padding: 0 10px;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.coach-prev,
.coach-next {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-container .coaches-nav {
    top:auto !important;
    bottom: calc( 25% + 100px + 5vh ) !important;
}

.coach-prev:hover,
.coach-next:hover {
    background-color: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.coach-prev img,
.coach-next img {
    width: 25px;
    height: 43px;
    opacity:0.5;
}

.coach-prev {
    transform: translateX(-10px);
}

.coach-next {
    transform: translateX(10px);
}

.coach-prev:hover {
    transform: translateX(-10px) scale(1.1);
}

.coach-next:hover {
    transform: translateX(10px) scale(1.1);
}

@media (max-width: 1200px) {
    .coaches-carousel-container {
        padding: 0 50px;
    }
    
    .header__phone {
        font-size: 16px;
    }
    
    .header__phone {
        display: none;
    }
    
    .header__phone span {
        display: none;
    }

    .coach-prev,
    .coach-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .coaches-filters {
        margin: 10vw 0 6vw 0;
        gap: 15px;
    }

    .filter-btn {
        min-width: 150px;
        padding: 10px 25px;
        font-size: 14px;
    }

    .coaches-carousel-container {
        padding: 0px;
        width: 100%;
        margin: 0;
    }

    .coach-prev,
    .coach-next {
        width: 40px;
        height: 40px;
    }

    .coach-prev img,
    .coach-next img {
        width: 16px;
        height: 16px;
    }

    .coach-info {
        padding: 15px 10px;
    }

    .coach-name {
        font-size: 15px;
    }

    .coach-position {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .coaches-filters {
        flex-direction: column;
        align-items: center;
        margin: 12vw 0 8vw 0;
    }
    
    .block-3 .block__content {
        background-size: 100%;
        background-position: center 243px;
    }

    .filter-btn {
        width: 200px;
    }

    .coaches-carousel-container {
        padding: 0px;
        width: 100%;
        margin: 0;
    }

    .coach-prev,
    .coach-next {
        width: 35px;
        height: 35px;
    }

    .coach-prev img,
    .coach-next img {
        width: 14px;
        height: 14px;
    }
}

.coach-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.block-4 .content {
    width: calc(100% - (11.5vw - 15px) * 1);
    margin-left: calc(11.5vw - 15px);
    text-align: left;
    margin-top: 5vw;
}

.block-4 .button {
    background-color: #353338;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 80px;
    width: calc(60vw - 15px);
    max-width: max(280px, 20vw);
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    color: #CBD0C9;
}

.block-4 .button:hover {
    background-color: #212327;
}

.block-4 .content > div:last-child img {
    max-width: 735px !important;
    width: 100%;
    height: auto;
    display: block;
}
/*.block-4 .laptop-video {
    position:absolute;
    top: 1%;
    right: 0%;
    background-color:red;
    width: 86.5%;
    height: 91%;
    border-top-left-radius: 3%;
}*/

@media (min-width: 1125px) {
    .block-4 .content {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }
    
    .block-4 {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .block-4 .content > div:first-child {
        flex: 2;
        width: 60vw;
    }

    .block-4 .content > div:last-child {
        flex: 1;
        width: 40vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 20px;
    }

    .block-4 .content > div:last-child img {
        max-width: 735px !important;
        width: 40vw;
    }

    .block-4 .button {
        width: 100%;
        max-width: 280px;
        padding: 18px 35px;
    }

    .block-4 .font-md {
        margin-bottom: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 1124px) {
    .block-4 .content {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .block-4 .content > div {
        width: 100% !important;
    }

    .block-4 .content > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: center;
    }

    .block-4 .content > div:last-child img {
        max-width: 735px !important;
        width: 70vw;
        height: auto;
        margin-right: -35px;
    }
    /*.block-4 .laptop-video {
        right: calc(0% - 39px);
        width: calc(86.5% + 35px);
    }*/
    .laptop-video-container {
        right: calc(0% - 39px) !important;
        width: calc(86.5% + 35px) !important;
    }
    

    .block-4 .content br {
        display: none;
    }

    .block-4 .content > div:first-child > div {
        margin-bottom: 35px;
    }
    
    .block-4 .content > div:first-child > div:not(:last-child) {
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(175, 158, 128, 0.3);
    }

    .block-4 .button {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
    
    .block-4 .font-md {
        margin-top: 15px;
        margin-bottom: 5px;
    }
}

@media (min-width: 769px) and (max-width: 1124px) {
    .block-4 .font-md {
        margin-top: 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .block-4 .content {
        margin-top: 40px;
        gap: 20px;
    }

    .block-4 .font-md {
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .block-4 .button {
        padding: 12px 20px;
    }

    .block-4 .content > div:last-child img {
        max-width: 90vw !important;
        width: 90vw;
        margin-right: -40px;
    }
    
    .block-4 .content > div:last-child {
        align-items: center;
    }
    
    .block-4 .font-md {
        margin-top: 15px;
        margin-bottom: 5px;
    }
}

.block-4 .content > div:last-child p {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.block-4 .content > div:first-child > div {
    margin-bottom: 40px;
}

.block-4 .content br {
    display: none;
}

.block-4 .content > div:first-child > div:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(175, 158, 128, 0.3);
}

/* БЛОК 9 прелоадер */
.block-9 .content {
    width: calc( 100% - (11.5vw - 15px) * 2 );
    margin-left: calc(11.5vw - 15px);
    margin-right: calc(11.5vw - 15px);
    text-align: left;
}
.list-p {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    padding: 20px 0;
    height: max( 18vh , 18vw );
    position: relative;
    margin-top: 20vh;
    margin-bottom: 7vh;
}

.list-p > div {
    flex: 0 0 min(20%, max( 18vh , 18vw ) );
    min-width: 120px;
    height: auto;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}
.list-p > div:nth-child(1) { z-index: 5; }
.list-p > div:nth-child(2) { z-index: 4; margin-left: -25px; }
.list-p > div:nth-child(3) { z-index: 3; margin-left: -25px; }
.list-p > div:nth-child(4) { z-index: 2; margin-left: -25px; }
.list-p > div:nth-child(5) { z-index: 1; margin-left: -25px; }

.list-p > div:hover {
    z-index: 10 !important;
    transform: scale(1.15) translateY(-10px) !important;
}
.list-p > div:hover img {
    opacity:1;
}
.list-p img {
    width: 100%;
    height: auto;
    max-height: max( 18vh , 18vw );
    display: block;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 15%;
    opacity:0.25;
}

/* Стили для прелоадера в блоке 9 */
.block-9 .list-p > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
/* Контейнер для изображения и прелоадера */
.block-9 .list-p > div .image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Прелоадер - круг (фон) */
.block-9 .list-p > div .preloader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(85% + 40px);
    height: calc(85% + 40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
/* Контейнер для прогресса */
.block-9 .list-p > div .preloader-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
/* Маска для прогресса в формате доната */
.block-9 .list-p > div .progress-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1vw solid transparent;
    border-radius: 50%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 50% 0%);
}
/* Линия прогресса */
.block-9 .list-p > div .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1vw solid #8BA090;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
}
/* Анимация загрузки в формате доната */
.block-9 .list-p > div.loading .preloader-progress {
    opacity: 1;
}
.block-9 .list-p > div.loading .progress-fill {
    animation: preloader-donut 5s linear forwards;
}
/* Показываем круг при наведении */
.block-9 .list-p > div:hover .preloader-circle {
    opacity: 1;
}
/* Подпись под изображением */
.block-9 .list-p > div .image-caption {
    margin-top: 35px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.block-9 .list-p > div:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}
/* Стили для текста подписи */
.block-9 .list-p > div .caption-line-1 {
    color: #212327;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: max(14px, 1.2vw);
    line-height: 1.2;
    margin-bottom: 4px;
}
.block-9 .list-p > div .caption-line-2 {
    color: #af9e80;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: max(12px, 1vw);
    line-height: 1.2;
}
/* Анимация доната - заполнение от 0 до 100% */
@keyframes preloader-donut {
    0% {
        transform: rotate(-45deg);
        border-color: #8BA090;
        border-right-color: transparent;
        border-bottom-color: transparent;
    }
    50% {
        transform: rotate(135deg);
        border-color: #8BA090;
        border-right-color: transparent;
        border-bottom-color: #8BA090;
    }
    100% {
        transform: rotate(315deg);
        border-color: #8BA090;
        border-right-color: transparent;
        border-bottom-color: #8BA090;
    }
}
/* Альтернативная анимация - более плавная */
@keyframes preloader-donut-smooth {
    0% {
        transform: rotate(0deg);
        border-top-color: #8BA090;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        transform: rotate(90deg);
        border-top-color: #8BA090;
        border-right-color: #8BA090;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    50% {
        transform: rotate(180deg);
        border-top-color: #8BA090;
        border-right-color: #8BA090;
        border-bottom-color: #8BA090;
        border-left-color: transparent;
    }
    75% {
        transform: rotate(270deg);
        border-top-color: #8BA090;
        border-right-color: #8BA090;
        border-bottom-color: #8BA090;
        border-left-color: #8BA090;
    }
    100% {
        transform: rotate(360deg);
        border-top-color: #8BA090;
        border-right-color: #8BA090;
        border-bottom-color: #8BA090;
        border-left-color: #8BA090;
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .block-9 .list-p > div .preloader-circle,
    .block-9 .list-p > div .preloader-progress {
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    
    .block-9 .list-p > div .image-caption {
        margin-top: 10px;
    }
}
@media (max-width: 512px) {
    .block-9 .hide512 {
        display: none;
    }
}
/* Стили для SVG прелоадера */
.block-9 .list-p > div .image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-9 .list-p > div .preloader-circle {
}

/* Фоновый круг */
.block-9 .list-p > div .preloader-circle .progress-bg {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Прогресс-бар */
.block-9 .list-p > div .preloader-circle .progress-bar1 {
    transition: stroke-dashoffset 1s linear;
}
.block-9 .list-p > div .preloader-circle .progress-bar2 {
    transition: stroke-dashoffset 1s linear;
}
.block-9 .list-p > div .preloader-circle .progress-bar3 {
    transition: stroke-dashoffset 1s linear;
}
.block-9 .list-p > div .preloader-circle .progress-bar4 {
    transition: stroke-dashoffset 1s linear;
}
.block-9 .list-p > div .preloader-circle .progress-bar5 {
    transition: stroke-dashoffset 1s linear;
}

/* Показываем прелоадер при наведении */
.block-9 .list-p > div:hover .preloader-circle {
    opacity: 1;
}

/* Анимация заполнения при активации */
.block-9 .list-p > div.loading .preloader-circle {
    opacity: 1;
}

.block-9 .list-p > div.loading .progress-bar1 {
    stroke-dashoffset: 0;
    animation: fill-progress1 1s linear forwards;
}
.block-9 .list-p > div.loading .progress-bar2 {
    stroke-dashoffset: 0;
    animation: fill-progress2 1s linear forwards;
}
.block-9 .list-p > div.loading .progress-bar3 {
    stroke-dashoffset: 0;
    animation: fill-progress3 1s linear forwards;
}
.block-9 .list-p > div.loading .progress-bar4 {
    stroke-dashoffset: 0;
    animation: fill-progress4 1s linear forwards;
}
.block-9 .list-p > div.loading .progress-bar5 {
    stroke-dashoffset: 0;
    animation: fill-progress5 1s linear forwards;
}

/* Анимация заполнения */
@keyframes fill-progress1 {
    0% {
        stroke-dashoffset: 502.4;
    }
    100% {
        stroke-dashoffset: 200;
    }
}
@keyframes fill-progress2 {
    0% {
        stroke-dashoffset: 502.4;
    }
    100% {
        stroke-dashoffset: 150;
    }
}
@keyframes fill-progress3 {
    0% {
        stroke-dashoffset: 502.4;
    }
    100% {
        stroke-dashoffset: 100;
    }
}
@keyframes fill-progress4 {
    0% {
        stroke-dashoffset: 502.4;
    }
    100% {
        stroke-dashoffset: 50;
    }
}
@keyframes fill-progress5 {
    0% {
        stroke-dashoffset: 502.4;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Подпись под изображением */
.block-9 .list-p > div .image-caption {
    margin-top: 2%;
    text-align: center;
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.block-9 .list-p > div:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Стили для текста подписи */
.block-9 .list-p > div .caption-line-1 {
    color: #212327;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: max(14px, 1.2vw);
    line-height: 1.2;
    margin-bottom: 4px;
}

.block-9 .list-p > div .caption-line-2 {
    color: #af9e80;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: max(12px, 1vw);
    line-height: 1.2;
}

/* Стили для карусели блока 9 */
.block9-carousel-container {
    display: none;
    position: relative;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    margin-top: 5vh;
}

.block9-carousel {
    width: 100%;
}

.block9-slide {
    text-align: center;
    padding: 20px;
}

.block9-slide .image-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block9-slide img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    padding: 15%;
}

.block9-slide .preloader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    opacity: 1;
}

.block9-slide .image-caption {
    margin-top: 20px;
    text-align: center;
    opacity: 1;
}

.block9-slide .caption-line-1 {
    color: #212327;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.block9-slide .caption-line-2 {
    color: #af9e80;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

.block9-nav {
    position: absolute;
    top: 50%;
    left: 0px;
    padding: 0 10px;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.block9-prev,
.block9-next {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.block9-prev:hover,
.block9-next:hover {
    background-color: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.block9-prev img,
.block9-next img {
    width: 25px;
    height: 43px;
    opacity: 0.5;
}

.block9-prev {
    transform: translateX(-10px);
}

.block9-next {
    transform: translateX(10px);
}

.block9-prev:hover {
    transform: translateX(-10px) scale(1.1);
}

.block9-next:hover {
    transform: translateX(10px) scale(1.1);
}

/* Адаптивность для карусели */
@media (max-width: 947px) {
    .list-p.desktop-version {
        display: none;
    }
    
    .block9-carousel-container.mobile-version {
        display: block;
    }
    
    .block-9 .list-p {
        margin-top: 5vh;
        margin-bottom: 5vh;
        height: auto;
    }
}

@media (min-width: 948px) {
    .list-p.desktop-version {
        display: flex;
    }
    
    .block9-carousel-container.mobile-version {
        display: none;
    }
}

@media (max-width: 768px) {
    .block9-carousel-container {
        padding: 0 40px;
    }
    
    .block9-prev,
    .block9-next {
        width: 40px;
        height: 40px;
    }
    
    .block9-prev img,
    .block9-next img {
        width: 20px;
        height: 35px;
    }
    
    .block9-slide .image-container {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .block9-carousel-container {
        padding: 0 20px;
    }
    
    .block9-prev,
    .block9-next {
        width: 35px;
        height: 35px;
    }
    
    .block9-prev img,
    .block9-next img {
        width: 16px;
        height: 28px;
    }
    
    .block9-slide .image-container {
        max-width: 200px;
    }
    
    .block9-slide .caption-line-1 {
        font-size: 16px;
    }
    
    .block9-slide .caption-line-2 {
        font-size: 14px;
    }
}

.block-2 .container {
    width: 100%;
}

.block-2 .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    flex-wrap: wrap;
}

.block-2 .item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
    border-radius: 8px;
}

.block-2 .item-image {
    width: 145px;
    height: 145px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-2 .item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.block-2 .item-text {
    flex: 1;
}

@media (max-width: 768px) {
    .block-2 .row {
        gap: 20px;
    }

    .block-2 .item {
        min-width: 200px;
        padding: 15px;
    }

    .block-2 .item-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .block-2 .row {
        flex-direction: column;
        gap: 15px;
    }

    .block-2 .item {
        min-width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .block-2 .item-image {
        width: 45px;
        height: 45px;
    }

    .block-2 .item-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .footer__container {
        gap: 25px;
    }
    
    .footer__nav {
        gap: 15px;
        max-width: 500px;
    }
    
    .footer__nav-link {
        font-size: 13px;
    }
    
    .footer__contacts {
        gap: 20px;
    }
    
    .footer__phone {
        font-size: 15px;
    }
        
    .social-link {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1260px) {
    .block-13 {
        padding: 60px 40px 40px !important;
    }
    
    .footer__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer__logo {
        order: 1;
    }
    
    .footer__nav {
        order: 3;
        width: 100%;
        gap: 12px;
        margin-top: 15px;
    }
    
    .footer__nav-link {
        font-size: 12px;
    }
    
    .footer__contacts {
        order: 2;
        gap: 30px;
    }
    
    .footer__phone-block {
        align-items: center;
    }
    
    .footer__phone {
        font-size: 14px;
    }
    
    .footer__logo img {
        width: 140px;
        height: 105px;
    }
    
    .block-11 .right-block {
        background-position: calc( 50% + 5vw);
    }
    
    .block-10 .step-txt {
        display: inline-block;
        width: max( 200, 10vw );
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer__contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .block-10 .step {
        min-width: 100%;
    }
    .block-10 .step-txt {
        display: inline-block;
        min-width: 250px;
    }
    .block-10 .steps-container {
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .block-13 {
        padding: 50px 20px 30px !important;
    }
    
    .footer__nav {
        gap: 10px 15px;
        justify-content: center;
    }
    
    .footer__nav-link {
        font-size: 11px;
    }
    
    .footer__contacts {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer__phone-block {
        align-items: center;
    }
    
    .footer__phone {
        font-size: 13px;
    }
    
    .footer__contact-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .footer__logo img {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .block-12 {
        padding-left: 0px !important;
    }
    .block-12 #map { 
        width: calc( 100vw - 0px );
    }
    .block-12 .block__content_main {
        min-height: auto;
        overflow: hidden;
    }
    .block-12 .block__content_main {
        grid-template-columns: 1fr;
    }
}

/* Базовые стили кнопки */
.button {
    transition: all 0.3s ease;
}

/* ===== ЭФФЕКТЫ ПУЛЬСАЦИИ ===== */

/* Пульсация зеленая */
.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Пульсация золотая */
.pulse-glow-2 {
    animation: pulse-glow-2 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgb(53 51 56);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(85, 124, 64, 0);
    }
}

@keyframes pulse-glow-2 {
    0% {
        box-shadow: 0 0 0 0 rgba(175, 158, 128, 0.45);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(175, 158, 128, 0);
    }
}

/* Блок 14 - Отзывы */
.block-14 { 
    background-color: #212327 !important; 
    padding-bottom: 0px !important;
}

.block-14 .owl-dots {
    display: none !important;
}

.review-info {
    background-color: rgba(53,51,56,0.98);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
    transition: top 0.3s ease;
    padding: 10% !important;
    font-weight: normal !important;
    
    display: flex;
    justify-content: center;
    align-items: center;
}


.review-ii-a , .review-ii-b {
    position: absolute;
    width: 25% !important;
    opacity: 0.1;
}
.review-ii-a {
    top: 20%;
    left: 5%;
}
.review-ii-b {
    bottom: 20%;
    right: 5%;
}

.review-btn {
    position: absolute;
    width: 100%;
    height: 10%;
    text-align: center;
    bottom: 0px;
    left: 0px;
    z-index: 3;
    cursor: pointer;
    text-decoration: underline;
}

.review-item {
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
    max-width: none;
    margin: 0 7px;
}

.review-item:hover {
    margin-top: -5px;
    padding-top: 5px;
}

.review-content {
    background: #353338;
    /*border-radius: 12px;*/
    overflow: hidden;
    /* height: 65vh !important; */
    /* padding-top:10%; */
    display: flex;
    flex-direction: column;
}

.review-text {
    padding: 26pt;
    /* padding-bottom: 0; */
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: top;
}

.review-name {
    margin-bottom: 8px;
    font-weight: 700;
}

.review-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.review-image {
    height: calc( 100% - 20% );
    position: relative;
    overflow: hidden;
}

.review-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform: scale(0.95);
    margin-top: 5%;
    padding: 0 7%;
    margin-bottom: -5%;
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 35, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-item:hover .review-overlay {
    opacity: 1;
}

.review-item:hover .review-photo {
    transform: scale(1);
}

.read-review-btn {
    background: #AF9E80;
    color: #212327;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-review-btn:hover {
    background: #9c8b6d;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .review-content {
        height: 350px;
    }
    
    .review-text {
        padding: 15px 12px;
    }
    
    .review-name {
        font-size: 14px;
    }
    
    .review-description {
        font-size: 12px;
    }
    
    .read-review-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ===== ЭФФЕКТ БРИЛЛИАНТА ===== */

.diamond-btn-simple {
    position: relative;
    overflow: hidden;
}

/* Базовый слой блеска */
.diamond-btn-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.16),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    border-radius: inherit;
    pointer-events: none;
}
.diamond-btn-simple-color-2::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    ) !important;
}

/* Анимация блеска при hover */
.diamond-btn-simple:hover::before {
    left: 100%;
}

/* ===== КОМБИНАЦИИ ЭФФЕКТОВ ===== */

/* Бриллиант + зеленая пульсация */
.diamond-btn-simple.pulse-glow {
    position: relative;
}

/* Бриллиант + золотая пульсация */
.diamond-btn-simple.pulse-glow-2 {
    position: relative;
}

/* Фикс для Safari при комбинации эффектов */
.diamond-btn-simple.pulse-glow,
.diamond-btn-simple.pulse-glow-2 {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.diamond-btn-simple.pulse-glow:hover,
.diamond-btn-simple.pulse-glow-2:hover {
    transform: translateY(-2px) translateZ(0);
    -webkit-transform: translateY(-2px) translateZ(0);
}

.txt-style-1 {
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0;
    padding: 0;
}

.txt-style-2 {
    color: #557C40;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-3 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-4 {
    color: #414C39;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-5 {
    color: rgba(175,158,128,0.4);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-6 {
    color: #AF9E80;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-7 {
    color: #212327;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.txt-style-8 {
    color: #75897a;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.font-sz-1 {
    font-size: max( 14px , 1.8vw );
    line-height: max( 22px , 2.4vw );
}

.font-sz-2 {
    font-size: max( 12px , 1vw );
    line-height: 1.6vw;
}

.font-xs {
    font-size: max(10px, 0.8vw);
    line-height: max(16px, 1.2vw);
}

.font-sm {
    font-size: max(12px, 1vw);
    line-height: max(18px, 1.6vw);
}

.font-base {
    font-size: max(14px, 1.2vw);
    line-height: max(22px, 1.8vw);
}

.font-md {
    font-size: max(16px, 1.6vw);
    line-height: max(24px, 2.2vw);
}

.font-lg {
    font-size: max(18px, 2vw);
    line-height: max(28px, 2.6vw);
}

.font-xl {
    font-size: max(22px, 2.8vw);
    line-height: max(32px, 3.2vw);
}

.font-2xl {
    font-size: max(28px, 3.5vw);
    line-height: max(38px, 4vw);
}

.font-3xl {
    font-size: max(36px, 4.5vw);
    line-height: max(46px, 5vw);
}

.font-4xl {
    font-size: max(42px, 5.5vw);
    line-height: max(52px, 6vw);
}

.font-5xl {
    font-size: max(48px, 6.5vw);
    line-height: max(58px, 7vw);
}

.font-6xl {
    font-size: max(56px, 7.5vw);
    line-height: max(66px, 8vw);
}

.font-7xl {
    font-size: max(94px, 8.5vw);
    line-height: max(104px, 9vw);
}

.font-btn {
    font-size: max(14px, 1.1vw);
    line-height: max(20px, 1.4vw);
    font-weight: 600;
}

.font-nav {
    font-size: max(13px, 1vw);
    line-height: max(20px, 1.5vw);
    font-weight: 500;
}

.font-quote {
    font-size: max(16px, 1.8vw);
    line-height: max(26px, 2.4vw);
    font-style: italic;
}

.font-dense {
    font-size: max(11px, 0.9vw);
    line-height: max(16px, 1.3vw);
}

.fix-w100 {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ПО ДИЗАЙНУ ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 650px;
    height: 100%;
    background: rgba(4, 6, 2, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__header {
    display: flex;
    justify-content: flex-end;
    padding: 30px 30px 0;
    flex-shrink: 0;
}

.mobile-menu__close {
    position: fixed;
    top: 40px;
    right: 70px;
    width: 47px;
    height: 47px;
    background: #212327;
    border: none;
    border-radius: 47px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.mobile-menu__close:hover {
    background: #353338;
}

.mobile-menu__close-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.mobile-menu__close-icon::before,
.mobile-menu__close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #E8E1E1;
    border-radius: 1px;
}

.mobile-menu__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 50px 50px;
}

.mobile-menu__nav {
    margin-bottom: 10px;
    margin-top:70px;
}

.mobile-menu__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__nav-item {
    margin-bottom: 20px;
}

.mobile-menu__nav-link {
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.5s ease;
    display: block;
    padding: 12px 0;
    position: relative;
    letter-spacing: -0.5px;
}

.mobile-menu__nav-link:hover {
    color: #AF9E80;
    transform: translateX(5px);
}

.mobile-menu__divider {
    display:none;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(203, 208, 201, 0.3) 50%, transparent 100%);
    margin: 30px 0;
    width: 100%;
}

.mobile-menu__actions {
    margin-bottom: 40px;
}

.mobile-menu__action-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid #AF9E80;
    color: #CBD0C9;
    padding: 18px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
}

.mobile-menu__action-btn:hover {
    background: rgba(175, 158, 128, 0.1);
    transform: translateY(-2px);
}

.mobile-menu__action-btn--primary {
    background: #AF9E80;
    color: #212327;
    border-color: #AF9E80;
}

.mobile-menu__action-btn--primary:hover {
    background: #9c8b6d;
    border-color: #9c8b6d;
}

.mobile-menu__contacts {
    margin-top: auto;
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #E8E1E1;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px 0;
    justify-content: center;
}

.mobile-menu__phone:hover {
    color: #AF9E80;
}

.mobile-menu__phone-icon {
    width: 22px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-menu__location {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.mobile-menu__location:hover {
    color: #AF9E80;
}

.mobile-menu__location-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Эффект масштабирования основного контента */
body.mobile-menu-open .main-content {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.mobile-menu-open .header,
body.mobile-menu-open .block-nav,
body.mobile-menu-open .call-btn {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .mobile-menu__content {
        padding: 30px 35px 40px;
    }
    
    .mobile-menu__nav-link {
        font-size: 24px;
    }
    
    .mobile-menu__action-btn {
        font-size: 16px;
        padding: 16px 25px;
    }
    
    .mobile-menu__phone {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-menu__header {
        padding: 20px 20px 0;
    }
    
    .mobile-menu__content {
        padding: 25px 25px 35px;
    }
    
    .mobile-menu__close {
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu__nav-link {
        font-size: 22px;
        padding: 10px 0;
    }
    
    .mobile-menu__action-btn {
        font-size: 15px;
        padding: 14px 20px;
    }
    
    .mobile-menu__phone {
        font-size: 18px;
    }
    
    .mobile-menu__location {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .mobile-menu__content {
        padding: 20px 20px 30px;
    }
    
    .mobile-menu__nav-link {
        font-size: 20px;
    }
    
    .mobile-menu__phone {
        font-size: 17px;
    }
}

/* ===== МОДАЛЬНОЕ ОКНО ОБРАТНОЙ СВЯЗИ ===== */
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.callback-modal.active {
    display: block;
    opacity: 1;
}

.callback-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.callback-modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 640px;
    background: #212327;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.callback-modal.active .callback-modal__container {
    transform: translate(-50%, -50%) scale(1);
}

.callback-modal__header {
    background: #212327;
    padding: 15% 40px 25px;
    text-align: center;
    position: relative;
}

.callback-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #212327;
    color: #CBD0C9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.callback-modal__close:hover {
    background: #353338;
}

.callback-modal__close-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.callback-modal__close-icon::before,
.callback-modal__close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #E8E1E1;
    border-radius: 1px;
}

.callback-modal__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.callback-modal__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.callback-modal__title {
    color: #CBD0C9;
    margin-bottom: 8px;
}

.callback-modal__subtitle {
    color: #AF9E80;
}

.callback-modal__body {
    padding: 20%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background: #212327;
    border: 2px solid #383838;
    border-radius: 50px;
    padding: 18px 20px;
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #545454;
    background: #353338;
}

.form-input::placeholder {
    color: rgb(203 208 201 / 45%);
}

.form-input:focus::placeholder {
    color: #ababab;
}

.form-submit-btn {
    background: #AF9E80;
    border: none;
    color: #212327;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: max(14px, 1.1vw);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.form-submit-btn:hover {
    background: #353338;
    color: #CBD0C9;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.callback-modal__footer {
    text-align: center;
    padding: 0 40px 15%;
}

.callback-modal__info {
    color: #CBD0C9;
    margin: 0;
}

.callback-modal__info strong {
    color: #AF9E80;
    font-weight: 600;
}

/* Стили для успешной отправки */
.callback-form__success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.callback-form__success-icon {
    width: 80px;
    height: 80px;
    background: #557C40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.callback-form__success-icon::before {
    content: '';
    width: 30px;
    height: 15px;
    border: 3px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    position: absolute;
    top: 28px;
    left: 22px;
}

.callback-form__success-title {
    color: #CBD0C9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.callback-form__success-text {
    color: #8BA090;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Анимация загрузки */
.form-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .callback-modal__container {
        width: 95%;
        max-width: 400px;
    }
    
    .callback-modal__header {
        padding: 12% 30px 20px;
    }
    
    .callback-modal__body {
        padding: 30px;
    }
    
    .callback-modal__title {
    }
    
    .callback-modal__subtitle {
    }
    
    .form-input {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .form-submit-btn {
        padding: 18px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .callback-modal__header {
        padding: 17% 25px 15px;
    }
    
    .callback-modal__body {
        padding: 25px;
    }
    
    .callback-modal__title {
    }
    
    .callback-form {
        gap: 20px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-submit-btn {
        padding: 16px 20px;
    }
    
    .callback-modal__footer {
        padding: 0 25px 15%;
    }
    
    .callback-modal__info {
    }
}

/* ===== ПЛАВНЫЙ СКРОЛЛ-ПРОГРЕСС МЕЖДУ ТОЧКАМИ ===== */
.block-nav {
    position: fixed;
    right: calc(90px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    position: relative;
}

.nav-progress-line {
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    width: 8px;
    height: 0;
    background: rgba(175,158,128,0.0);
    border-radius: 10px;
    transition: height 0.1s ease;
    z-index: 1;
}

.nav-dot {
    width: 8px;
    height: 8px;
    background: rgba(217, 217, 217, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-dot.active {
    background: #af9e80;
    transform: scale(1.2);
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    transform: translate(-50%, -50%) scale(0.3);
    width: 20px;
    height: 20px;
    border: 1px solid #af9e80;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    border-color: #af9e80;
}

/* Адаптивность */
@media (max-width: 768px) {
    .block-nav {
        right: 40px;
    }
    
    .nav-dots {
        gap: 40px;
    }
    
    .nav-dot::before {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nav-dots {
        gap: 30px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}

/* Стили для точек навигации с состоянием "completed" */
.nav-dot.completed {
    background: #AF9E80;
    opacity: 1;
}

.nav-dot.active {
    background: #AF9E80;
    transform: scale(1.3);
}

.nav-dot.active::before {
    border-color: #AF9E80;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.nav-dot {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-dot.completed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 8px;
    font-weight: bold;
    opacity: 0.9;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .mobile-menu__close {
        top: 40px;
        right: 22px;
    }
    
    .mobile-menu__close-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    
    .mobile-menu__content {
        padding-top: 0;
        padding-bottom: 0;
    }
    .mobile-menu__nav {
        margin-top: 20px;
    }
}

/* Базовые стили кнопки */
.block-11 .left-block .download , .header__contact-btn , .filter-btn , .block-4 .button , .block-7 .button , .block-10 .button , .footer__contact-btn {
    font-size: 14pt !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    max-width: 327px;
}












/* Стили для контейнера видео в блоке 4 */
.laptop-video-container {
    position: absolute;
    top: 1%;
    right: 0%;
    width: 86.5%;
    height: 91%;
    border-top-left-radius: 3%;
    overflow: hidden;
}

.laptop-video {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Стили для постера */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Кнопка воспроизведения */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: calc( 56% + 40px );
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Видео плеер */
.laptop-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Полноэкранный режим */
.laptop-video-player:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

.laptop-video-player:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

.laptop-video-player:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

.laptop-video-player:fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

/* Скрываем постер когда видео активно */
.laptop-video.playing .video-poster {
    display: none;
}

.laptop-video.playing .laptop-video-player {
    display: block;
}




/* Стили для анимированных изображений в карусели */
.coach-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    overflow: hidden;
}

.coach-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
}

.static-photo {
    opacity: 1;
}

@media (min-width: 769px) {

    .animated-photo {
        opacity: 0;
        z-index: 2;
    }

    /* Состояния при наведении */
    .coach-item:hover .static-photo {
        opacity: 0;
    }

    .coach-item:hover .animated-photo {
        opacity: 1;
    }

    /* Анимация для активного элемента карусели */
    .coach-item.active .static-photo {
        opacity: 0;
    }

    .coach-item.active .animated-photo {
        opacity: 1;
    }
    
}

@media (max-width: 768px) {
    .animated-photo {
        opacity: 0;
        display: none;
    }

    .coach-item.active .animated-photo {
        opacity: 0;
        display: none;
    }
}

#tariffModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10000 !important;
    display: none !important;
}

#tariffModal.active {
    display: block !important;
}