        :root {
                    --gold: #fff11f;
                    --gold_dark: #666000;
                    --dark-bg: black;
                    --text-color: #ffffff;
                    --spacing: 0 10vw;
                }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
            font: normal normal 16px 'Bahnschrift', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            height: 100vh;
            display: flex;
            flex-direction: column;
            font-kerning: none; 
            text-rendering: optimizeSpeed; 
            overflow-x: hidden; 
            line-height: 1.15; 
            -webkit-text-size-adjust: 100%; 
            text-size-adjust: 100%;
        }

    .hero-section {
            padding: var(--spacing);
        }

    .container-main {
        width: 100%; 
        max-width: 1920px; 
        margin: 0px auto; 
        display: flex;
        align-items: center;
        position: relative;
        }


    .main-title {
        position: absolute; 
        top: 20%;     
        left: 5%;       
        right: 5%;       
        color: var(--gold);
        padding: 0.6rem;      
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        height: auto;
    }

    .content-wrapper {
        display: block;
        width: 100%;
        height: auto;
    }

    .content-wrapper img {
        display: block;
        width: 100%;
        max-width: 1920px;
        height: auto;
    }

/* Секция 1 */
    .linetitle {
        display: block; 
        margin-bottom: 0.2em; 
        text-align: center;
        transform: scaleY(1.12);
    }
    
    .linetitle.t1 {
        font-size: 1.4rem;
        letter-spacing: 1.5rem;
        position: relative;
        margin-left: 0.6em;
        display: flex;
        justify-content: space-between;
    }
    
    .linetitle.t2 {
        font-size: 3.35rem;
        letter-spacing: 0.6rem;
        display: inline-block;
        font-weight: 900;
        -webkit-text-stroke: 0.9px var(--gold);
        paint-order: stroke fill;
    }

    .linetitle.t2:before {
        content: '';
        display: block;
        width: 98.65%;
        height: 0.15rem;
        background-color: var(--gold);
        margin-bottom: 0.1rem;
    }

    .linetitle.t3 {
        font-size: 1.35rem;
        margin-top: clamp(0.8rem , 2vw, 1.5rem);
        font-weight: 500;
        letter-spacing: 0.25rem;
        text-align: center;
    }

    .linetitle.t4 {
        font-size: 1.15rem;
        color: var(--gold_dark);
        font-weight: 500;
        display: block;
        text-align: center;
        background-color: var(--dark-bg);
        margin-top: clamp(0.8em , 2vw, 1.5em);
        /* margin-top: 0.05em; */
        letter-spacing: 0.025em;
    }

/* --- ВЕРХНЯЯ ЧАСТЬ (HEADER) --- */
    .header-section {
        text-align: center;
        max-width: 1920px;
        height: auto;
        padding: 5vw 0 5vh 0;
        background-color: rgba(15, 15, 15, 0.9); 
        z-index: 10;
    }

    .hero-title-top {
        font-size: 2rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 5px;
        color: var(--text-color);
        border-bottom: 3px solid var(--primary-yellow); 
        display: inline-block;
        padding-bottom: 10px;
    }

    .hero-title-main {
        font-size: 5rem;
        color: var(--primary-yellow);
        text-transform: uppercase;
        line-height: 1.1;
        margin-top: -10px; 
        font-weight: 900;
    }

    .hero-subtitle {
        margin-top: 25px;
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: #ccc;
    }

    /* --- НИЖНЯЯ ЧАСТЬ (SLIDER) --- */
    .slider-section {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: var(--spacing); 
        flex-wrap: wrap;
        display: inline-block;
    }

    .slider-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }

    .slider-track-container {
        max-width: 100%;
        flex-grow: 25;
        max-height: 58vh; 
    }

    .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide {
        flex-shrink: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%; /* Ширина слайда = 50% контейнера, чтобы были видны края соседних */
        opacity: 0.3;
    }

    /* Активный слайд по центру - полностью виден */
    .slide.active {
        opacity: 1;
        z-index: 10;
    }

    /* Соседние слайды слева и справа от активного */
    .slide.left, .slide.right {
        opacity: 0.5; 
    }

    .slide img {
        max-height: clamp(11rem, 28vw, 32rem);
        object-fit: contain;
        filter: brightness(0.85);
        border-radius: 1px;
    }

    /* Градиентные переходы по краям */
    .slider-track::before,
    .slider-track::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 10vw;
        z-index: 5;
        pointer-events: none;
    }

    .slider-track::before {
        left: 0;
        background: linear-gradient(to right, var(--dark-bg), transparent);
    }

    .slider-track::after {
        right: 0;
        background: linear-gradient(to left, var(--dark-bg), transparent);
    }

    /* Стрелки навигации поверх слайдов */
    .slider-btn {
        position: absolute;
        transform: translateY(-50%); 
        z-index: 30;
        font-size: clamp(2rem, 3vw, 4rem);
        transform: scaleY(2);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: transparent;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    } 

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-btn:hover {
        background-color: transparent;
        color: var(--gold);
        transform: scaleY(2.5);
    }

    /* Ромбические индикаторы поверх слайдера */
    .slider-dots {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 30; 
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: #0000007e;
        cursor: pointer;
        transition: all 0.3s ease;
        transform: rotate(45deg); 
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    .dot:hover {
        background-color: var(--dark-bg);
        transform: rotate(45deg) scale(1.2);
    }

    .dot.active {
        background-color: var(--gold);
        width: 10px;
        height: 10px;
        transform: rotate(45deg) scale(1.3);
    }


/* Section2 */
    .section2.container {
        max-width: 100%; 
        padding: var(--spacing);
    }

    .features-container {
        display: flex; 
        flex-direction: column; 
        text-align: center;
        position: absolute; 
        top: 45%; 
        left: 48%; 
        transform: translate(-46%, -45%); 
        z-index: 10;
        color: var(--gold); 
    }
       
    .section-bottom-image {
        width: 100%; 
        max-width: 1920px; 
        height: auto;
        position: relative; 
    }

    .section-bottom-image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 1px;
        position: relative;
    }

    .top2.h3 {
        font-size: clamp(2.8rem, 3.5vw, 4rem);
        color: var(--dark-bg);
        transform: scaleY(1.2);
        letter-spacing: 5px;
        margin-bottom: -10px;
        text-align: left;
        font-weight: 900;
        -webkit-text-stroke: 1px var(--dark-bg); 
        paint-order: stroke fill;
    }

    .feature-item {
        background-color: var(--dark-bg);
        padding: 1rem;
        position: relative;
        max-width: 980px;
        width: 65vw;
        margin-top: 1rem;
        font-weight: 900;
        list-style-type: none;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 2rem;
    }

    .feature-item p {
        transform: scaleY(1.15);
        text-transform: uppercase;
        font-size: clamp(0.8rem, 1.2vw, 1.5rem);
        letter-spacing: 0.1em;
        text-align: left;
        margin-top: 0.12em;
        /* margin: 0; */
    }

    .feature-marker {
        color: var(--gold);
        font-size: clamp(1.8rem, 2vw, 2.2rem);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.1rem;
        height: 1.1rem;
        flex-shrink: 0;
        padding-bottom: 2px;
        padding-left: clamp(0.8rem, 2vw, 1.5rem);
        font-weight: 500;
        -webkit-text-stroke: 0.05em var(--gold); 
        paint-order: stroke fill;
    }

    .feature-marker::before {
        content: "○";
    }

/* Section 3 */
    .section3 {
        display: block;
        justify-content: center; 
        padding: var(--spacing);
        max-height: none;
        height: auto;
    }

    .features-container3 {
        background-color: var(--dark-bg);
        padding: 0PX 1vw;
        display: block;
        align-items: center;
        max-width: 1200px;
        max-height: none; 
        height: auto;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    .container3-left img, .container3-right img {
        display: block;
        width: 100%;
        max-width: 50rem;
    }

    .sec3-title {
        color: var(--gold);
        font-size: clamp(0.5rem, 2.2vw, 2.8rem);
        transform: scaleY(1.1);
        text-align: left;
        margin-bottom: 0.9rem;
        font-weight: 900;
        letter-spacing: 0.1rem;
        margin-top: clamp(0.5rem , 1vw, 1rem);
        margin-bottom: clamp(0.2rem , 1vw, 1rem);
    }

    .sec3-about-you {
        font-size: clamp(0.7rem , 1.2vw, 1.23rem);
        max-width: 1150px;
        text-align: left;
        line-height: 1.4;
        color: var(--gold);
        text-transform: uppercase;
        transform: scaleY(1.2);
        letter-spacing: 1.5px;
        margin-top: clamp(0.6rem , 1vw, 1rem);
        margin-bottom: clamp(1rem , 2vw, 3rem);;
        display: block;
        position: relative;
    }

    .sec3-about-you p {
        margin-top: clamp(0.2rem , 1vw, 1rem);;
    }

    .sec3-rus-prew {
        display: block;
        max-width: 1000px;
        margin-top: clamp(0.4rem , 1vw, 1rem);;
        align-items: center; 
        margin-bottom: clamp(0.6rem, 2vw, 2rem);
    }

    .sec3-rus-prew img {
        max-height: clamp(6rem, 12vw, 14.5rem);
    }

    .section3.container img[alt="tit-prew"] {
        margin-left: 10px;
    }

    .sec3-logs {
        text-align: center;
        margin-bottom: clamp(0.25rem, 2vw, 2rem);
        margin-left: 0.1rem;
        margin-right: 0.1rem;
        position: relative;
    }

    .sec3-logs img {
        margin-left: 0.4rem;
        margin-top: clamp(0.25rem, 0.6vw, 0.8rem);
        max-height: 3.1rem;
        height: auto;
    }

    .sec3-logs img:first-child {
        margin-left: 0;
    }

/* section 4 */
    .section4.container {
        padding: var(--spacing);
    }

    .features-container2 {
        display: block; 
        text-align: center;
        position: absolute; 
        top: 46%; 
        left: 50%; 
        transform: translate(-50%, -45%); 
        z-index: 10; 
        color: var(--gold); 
        width: max-content; 
    }

/* section 5 */
        .section5.container {
            max-width: 100%; 
            padding: var(--spacing); 
        }

        .hero-section2 {
            display: block; 
            text-align: center;
            position: relative; 
        }

        .hero-section2 img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 1px;
            position: relative;
        }

        .sec5-title {
            position: absolute; 
            top: 20%;         
            left: 0.5%;      
            right: 0.5%;      
            bottom: 20%;    
            color: var(--gold);
            font-family:"Bahnschrift";
            font-weight: 700;
            transform: scaleY(1.2);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
   
        .linetitle.t5 {
            font-size: 1.7em;
            letter-spacing: 0.965em;
            position: relative;
            margin-left: 0.55em;
            margin-top: 6%;
            justify-content: space-between; 
        }
        
        .linetitle.t6 {
            font-size: 3.2em;
            margin-top: 0.7vh;
            position: relative;
            letter-spacing: 0.159em;
            font-weight: 900;
            justify-content: space-between;
        }

        .sec5-str {
            letter-spacing: 0.14em;
            font-size: clamp(0.8rem, 1.2vw, 1.32rem);
            margin-top: 2rem;
        }

        .str1, .str3 {
            color: var(--gold_dark)
        }

        .linetitle.t7 {
            font-size: clamp(2.2rem, 2.5vw, 2.8rem);
            margin-top: 3.5rem;
            color: #666000;
            font-weight: 900;
            display: block;
            text-align: center;
        }

        .linetitle.t7::after {
            content: "";
            position: absolute;
            left: -5%;
            margin-top: 0.45em;
            width: clamp(8.35rem, 10vw, 10.45rem);
            text-align: center;
            height: 0.1em; 
            background-color: var(--gold_dark); 
            box-shadow: 0 0 0 1.5px black; 
            z-index: 1;
            pointer-events: none; 
        }

        .linetitle.t8 {
            font-size: clamp(2.2rem, 2.5vw, 3rem);
            font-weight: 900;
            letter-spacing: 0.05em;
            margin-top: -0.2rem;
        }

        .linetitle.t9 {
            letter-spacing: 0.33rem;
            font-weight: 400;
            font-size: clamp(0.2rem, 0.8vw, 1rem);
            margin-top: -0.2rem;
        }

        .content-wrapper2 img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 1px;
            position: relative;
        }

/* Section 6 */
    .section6.container  {
            max-width: 100%;  
            padding: var(--spacing);
        }

    .sec6-cont {
            display: flex; 
            flex-direction: column; 
            z-index: 20; 
            color: var(--gold); 
            width: 100%; 
            height: auto;
            top: 5%;
        }

    .sec6-cont img {
            max-width: 1920px;
            display: block;
            width: 100%;
            height: auto;
            border-radius: 1px;
            position: relative;
        }   

    .sec6-tit {
            font-size: clamp(2rem, 3.6vw, 4.5rem);
            color: var(--dark-bg);
            letter-spacing: 0.12em;
            font-weight: 900;
            position: absolute;
            top: 6%;
            left: 50%;
            transform: translateX(-50%) scaleY(1.2);
            -webkit-text-stroke: 1px var(--dark-bg);
            paint-order: stroke fill;
            z-index: 25;
            display: flex;
        }

    .sec6-button {
            font-size: clamp(1.5rem, 1.9vw, 2.1rem);
            color: var(--gold);
            font-weight: 900;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.1em;
            top: 83%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark-bg);
            padding: clamp(1.2rem, 2vw, 1.7rem) clamp(3rem, 3vw, 4.5rem);
            z-index: 20;
            border: none;
            box-shadow:
                0 0 0 4px var(--gold),
                0 0 0 10px var(--dark-bg);
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: clamp(0.7rem, 1.2vw, 3rem);
        }

    .sec6-button a {
            padding: 25px;   
        }

    .s6b-text {
            transform: scaleY(1.1) scaleX(0.9);
            max-width: 500px;
            width: 100%;
        }

    .plus {
        display: block;
        position: relative;
        color: var(--gold_dark);
        }

    /* Hover и active состояния для sec6-button */
    .sec6-button:hover {
        color: var(--dark-bg);
        font-weight: 900;
        box-shadow:
            0 0 0 0.2em var(--gold),
            0 0 0 0.4em var(--dark-bg),
            0 0 0.8em rgba(255, 255, 255, 0.872);
        background-color: rgba(5, 5, 5, 0.292);
        transform: translate(-50%, -5%) scale(1.1);
    }

    .sec6-button:active {
        transform: translate(-50%, -5%) scale(1.15);
        box-shadow:
            0 0 0 0.6em var(--gold_dark),
            0 0 0 0.8em var(--gold_dark),
            0 0 1em rgba(255, 241, 31, 0.3);
        background-color: rgba(57, 56, 52, 0.2);
    }

    .sec6-button:hover .plus {
        color: var(--gold);
    }

    .sec6-slider-wrapper {
        display: flex;
        flex-direction: row;
        position: absolute;
        align-items: center;
        width: 100%;
        max-height: 88vh;
        height: 100%;
        padding: 0 clamp(4.5rem, 8vw, 11.5rem);
        top: 45%;
        transform: translateY(-50%);
        z-index: 15;
    }

    .sec6-slider-track-container {
        overflow: hidden;
        height: 100%;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

    .sec6-slider-track {
        display: flex;
        width: 100%;
        align-items: center;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sec6-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        display: block;
        align-items: center;
    }

    .review-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .review-author, .review-text {
        font-weight: 700;
        font-size: clamp(0.8rem, 1.1vw, 1.5rem);
        transform: scaleY(1.15);
        color: var(--gold);
        background-color: var(--dark-bg);
        text-transform: uppercase;
        padding: 0.4em 0.4em 0.4em 3.3em;
        letter-spacing: clamp(0.03em, 0.1vw, 0.15em);
    }

    .review-author {
        margin-bottom: 2.2em;
        text-transform: uppercase;
        position: relative;
        text-align: left; 
    }

    .review-text {
        line-height: 1.3;
        flex-grow: 1;
    }

    .sec6-slider-btn {
        background: none;
        border: none;
        color: var(--dark-bg);
        font-size: clamp(1rem, 3vw, 4rem);
        transform: scaleY(2);
        cursor: pointer;
        padding: clamp(0.15rem, 1.4vh, 1.2rem) clamp(0.15rem, 1.4vh, 1.2rem);
        transition: color 0.3s ease;
        z-index: 10;
        background-color: transparent;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    .sec6-slider-btn:hover {
        color: var(--gold);
        transform: scaleY(3);
    }

    .sec6-slider-btn::before {
        color: #ffffff0f;
    }

    .sec6-slider-btn.prev {
        margin-right: auto;
    }

    .sec6-slider-btn.next {
        margin-left: auto;
    }

    .sec6-bottom {
        position: relative;
        background-color: var(--dark-bg);
        padding-bottom: 1.2em;
        margin-top: 1.5em;
        margin-left: auto;
        margin-right: auto;
        width: max-content;
    }

    .sec6-bottom-link {
        margin-left: 0.4vw;
        display: inline-block;
        transition: transform 0.3s ease;
        transform-origin: center;
    }

    .sec6-bottom-link:first-child {
        margin-left: 0;
    }

    .sec6-bottom-link img {
        height: 100%;
        max-height: 5.5vw;
        z-index: 30;
        display: block;
    }

    .sec6-bottom-link:hover {
        transform: scale(1.3);
    }


@media (min-width: 1025px) and (max-width: 1440px) {
    .hero-section,
    .slider-section,
    .section2.container,
    .section3,
    .section4.container,
    .section5.container,
    .section6.container {
        padding: 0 5vw;
    }

    .main-title {
        top: 18%;
        left: 2%;
        right: 2%;
        bottom: 20%;
    }

    .linetitle.t1 {
        font-size: 1.4rem;
        letter-spacing: 0.789em;
        margin-left: 0.28em;
    }

    .linetitle.t2 {
        font-size: 2.5rem;
        letter-spacing: 11px;
    }

    .linetitle.t3 {
        font-size: 18.5px;
        letter-spacing: 2.5px;
        margin-top: 5vh;
    }

    .linetitle.t4 {
        font-size: 14.5px;
        letter-spacing: 0.55px;
    }

/* Section 2  */
    .feature-item {
        max-width: 65vw;
    }

    .top2.h3 {
        font-size: clamp(1rem , 3.5vw, 2.6rem);
    }

    .feature-item p {
        font-size: clamp(0.9rem, 1.3vw, 1.4rem);
    }

/* Section 3 */
    .sec3-about-you {
        max-width: 800px;
    }

    .sec3-rus-prew img {
        max-height: 9rem;
    }

    .sec3-about-you p{
        font-size: 1rem;
    }

    .sec3-logs img {
        margin-left: 0.3em;
        margin-top: 1em;
        max-height: 4vh;
        height: auto;
    }

    .container3-left img, .container3-right img {
        max-width: 280px;
    }

/* Section 5 */
    .linetitle.t5 {
        font-size: 1.4rem;
        letter-spacing: 1.19rem;
        position: relative;
        margin-left: 12px;
        margin-top: 4%;
        display: flex;
        justify-content: space-between; 
    }
    
    .linetitle.t6 {
        font-size: 2.6rem;
        margin-top: 8px;
        letter-spacing: 4.5px;
        font-weight: 900;
        display: inline-block; 
    }

    .sec5-str {
        letter-spacing: 0.11rem;
        font-size: 1.1rem;
        margin-top: 2rem;
    }

    .str1, .str3 {
        color: var(--gold_dark)
    }

    .linetitle.t7 {
        font-size: 2.4rem;
        margin-top: 2.8rem;
        color: #666000;
        font-weight: 900;
        display: block;
        text-align: center;
    }

    .linetitle.t7::after {
        content: "";
        position: absolute;
        left: -5%;
        margin-top: 18px;
        width: 9.2rem;
        text-align: center;
        height: 3px; 
        background-color: var(--gold_dark); 
        box-shadow: 0 0 0 1.5px black; 
        z-index: 1;
        pointer-events: none; 
    }

    .linetitle.t8 {
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        margin-top: -2px;
    }

    .linetitle.t9 {
        font-size: 0.8rem;
        letter-spacing: 0.26rem;
        font-weight: 400;
        margin-top: -0.2rem;
    }

/* Section 6 */
    .sec6-tit {
        font-size: 3.3rem;
        margin-top: 0.1em;
        top: 0.26em;
        left: 50%;
    }

    .sec6-button {
        font-size: clamp(1rem, 2vw, 2rem);
        padding: 1.4rem 4.2rem;
        top: 82%;
    }

    .review-author,
    .review-text {
        font-size: clamp(0.9rem, 1.3vw, 1.4rem);
    }

    .sec6-slider-wrapper {
        width: 100%;
        padding: 0 clamp(1rem, 6.5vw, 6rem);
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section,
    .slider-section,
    .section2.container,
    .section3,
    .section4.container,
    .section5.container,
    .section6.container {
        padding: 0 0vw;
    }

/* Section 1 */
    .main-title {
        top: 20%;
        left: 2%;
        right: 2%;
        bottom: 20%;
    }

    .linetitle.t1 {
        font-size: 1.145rem;
        letter-spacing: 0.938rem;
        margin-left: 0.32em;
    }

    .linetitle.t2 {
        font-size: 2.3rem;
        letter-spacing: 7px;
    }

    .linetitle.t3 {
        font-size: 1.2rem;
        margin-top: 1.4em;
        margin-left: 0;
    }

    .linetitle.t4 {
        font-size: 1.02rem;
        margin-left: -0.2em;
    }

/* Section 2 */
    .top2.h3 {
        font-size: 2.6rem;
        letter-spacing: 3px;
    }

    .feature-item {
        max-width: 100%;
        padding: 0.55rem;
        width: 75vw;
        margin-top: 0.7rem;
    }

    .feature-item p {
        font-size: clamp(0.6rem, 1.5vw, 1rem);
        letter-spacing: 0.05rem;
    }

    .feature-marker {
        padding-left: 1.5rem;
    }

 /*Section 3  */
     .sec3-title {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .sec3-about-you {
        font-size: clamp(0.8rem, 1vw, 1rem);
        width: 100%;
    }

    .sec3-rus-prew img {
        max-height: clamp(7.5rem, 6vh, 9rem); 
    }

    .container3-left img, .container3-right img {
        max-width: 22rem;
    }

    .section3.container img[alt="tit-prew"]{
        width: auto;
    }

    .section3.container img[alt="tit-rus"] {
        width: auto;
    }

    .sec3-logs img {
        margin-left: 0.6vw;
        max-height: 1rem;
        height: auto;
    }

/* Секция 5 */
    .linetitle.t5 {
        font-size: clamp(0.9rem, 1.8vw, 1.45rem);
        letter-spacing: 1.12em;
        position: relative;
        margin-left: 0.8rem;
        margin-top: 2%;
        display: flex;
        justify-content: space-between; 
    }

    .linetitle.t6 {
        font-size: clamp(1.7rem, 3.9vw, 2.55rem);
        margin-top: 8px;
        letter-spacing: 0.12em;
        font-weight: 900;
        display: inline-block;
    }

    .sec5-str {
        font-size: clamp(0.8em, 1.55vw, 1.05em);
        letter-spacing: 0.14em;
        margin-top: 2rem;
    }

    .linetitle.t7 {
        font-size: 2.2rem;
        margin-top: 2.4rem;
        color: #666000;
        font-weight: 900;
        display: block;
        text-align: center;
    }

    .linetitle.t7::after {
        content: "";
        position: absolute;
        left: -5%;
        margin-top: 16px;
        width: 8.4rem;
        text-align: center;
        height: 3px; 
        background-color: var(--gold_dark); 
        box-shadow: 0 0 0 1.5px black; 
        z-index: 1;
        pointer-events: none; 
    }

    .linetitle.t8 {
        font-size: 2.3rem;
        font-weight: 900;
        letter-spacing: 2px;
        margin-top: -2px;
    }

    .linetitle.t9 {
        font-size: 0.72rem;
        letter-spacing: 0.26rem;
        font-weight: 400;
        margin-top: -0.2rem;
    }

/* Section 6 */
    .sec6-tit {
        font-size: clamp(2rem, 5vw, 4.4rem);
        top: 2.5%;
        left: 50%;
    }

    .sec6-slider-wrapper {
        width: 100%;
        padding: 0 clamp(1rem, 6.5vw, 6rem);
    }

    .review-author,
    .review-text {
        font-size: clamp(0.6rem, 1.47vw, 1rem);;
        padding-top: 0.6em;
    }

    .sec6-button {
        font-size: clamp(1.35rem, 2vw, 4rem);
        padding: 1rem 3rem;
        top: 84%;
        left: 50%;
    }

    .sec6-slider-btn {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .sec6-bottom {
        position: relative;
        background-color: var(--dark-bg);
        margin-top: 1.2em;
    }

    .sec6-bottom-link img {
        height: 3vw;
    }
}


@media (max-width: 768px) {
    .hero-section,
    .slider-section,
    .section2.container,
    .section3,
    .section4.container,
    .section5.container,
    .section6.container {
        padding: 0 0vw;
    }

/* Section 1*/
    .hero-title-main {
        font-size: 3rem;
    }

    .main-title {
        top: 15%;
        left: 3%;
        right: 3%;
        bottom: 20%;
    }

    .linetitle.t1 {
        font-size: 0.7rem;
        letter-spacing: 0.935em;
        margin-left: 0.32em;
    }

    .linetitle.t2 {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

    .linetitle.t2:before {
        height: 0.09rem;
    }

    .linetitle.t3 {
        font-size: 0.7rem;
        margin-top: 0.7em;
    }

    .linetitle.t4 {
        font-size: 0.68rem;
        margin-left: -0.2em;
        letter-spacing: 0.068em;
    }

    .slider-track-container {
        max-height: 60vh;
    }

       .dot {
        width: 5px;
        height: 5px;
    }

    .dot.active {
        width: 6px;
        height: 6px;
    }

    .slider-dots {
        gap: 6px;
    }

    .sec3-about-you {
        font-size: 14px;
        width: 100%;
        max-width: 100%;
    }

/* Section 2 */
    .top2.h3 {
        font-size: Clamp(1.4rem, 3.5vw, 3rem);
        letter-spacing: 2px;
        margin-bottom: 0.05rem;
        font-weight: 500;
    }

    .feature-item {
        max-width: 100%;
        padding: 0.55rem;
        width: 75vw;
        margin-top: 0.3rem;
        gap: 12px;
    }

    .feature-item p {
        font-size: clamp(0.5rem, 1.5vw, 1.45rem);
        letter-spacing: 2px;
    }

    .feature-marker  {
        font-size: 1.1em;
        padding-left: 0.5rem;
    }

/* Секция 3 */
    .sec3-title {
        font-size: Clamp(1.1rem, 3vw, 2.2rem);
        letter-spacing: 2px;
        margin-bottom: 0.05rem;
        font-weight: 500;
    }

    .sec3-rus-prew {
        gap: 20px;
    }

    .container3-left img, .container3-right img {
        display: block;
        width: 100%;
        max-width: 320px;
    }

    .section3.container img[alt="tit-prew"] {
        margin-left: 0;
    }

    .sec3-rus-prew img {
        height: clamp(5.5rem, 5vw, 10rem);
    }

    .sec3-logs img {
        margin-left: 0.3rem;
        margin-top: 0.05rem;
        max-height: 0.8em;
    }

    .sec3-about-you {
        font-size: 0.55rem;
    }

/* Секция 5 */
    .linetitle.t5 {
        font-size: clamp(0.69rem, 1.8vw, 2rem);
        letter-spacing: 0.875em;
        position: relative;
        margin-left: 0.5em;
        margin-top: 2rem;
        display: flex;
        justify-content: space-between; 
    }
    
    .linetitle.t6 {
        font-size: clamp(1.2rem, 3.15vw, 3rem);
        margin-top: 0.2rem;
        letter-spacing: 0.17em;
        font-weight: 900;
        display: inline-block; 
    }

    .sec5-str {
        font-size: clamp(0.5rem, 1.2vw, 1rem);
        letter-spacing: 0.16em;
        margin-top: 1rem;
    }

    .linetitle.t7 {
        font-size: Clamp(1.5rem, 1vw, 2rem);
        margin-top: 1.2rem;
        color: #666000;
        font-weight: 900;
        display: block;
        text-align: center;
    }

    .linetitle.t7::after {
        content: "";
        position: absolute;
        left: -5%;
        margin-top: 0.41em;
        width: 3.75em;
        text-align: center;
        height: 3px; 
        background-color: var(--gold_dark); 
        box-shadow: 0 0 0 1.5px black; 
        z-index: 1;
        pointer-events: none; 
    }

    .linetitle.t8 {
        font-size: Clamp(1.5rem, 1vw, 3rem);
        font-weight: 900;
        letter-spacing: 0.08em;
        margin-top: -0.25em;
    }

    .linetitle.t9 {
        font-size: Clamp(0.522rem, 1vw, 1rem);
        letter-spacing: 0.31em;
        font-weight: 400;
        margin-top: -0.2rem;
    }

/* Section 6 */
    .sec6-tit {
        font-size: clamp(1.4rem, 4.6vw, 3.6rem);
        margin-top: -0.6rem;
        left: 50%;
        font-weight: 600;
    }

    .sec6-button {
        font-size: clamp(0.45rem, 2.4vw, 3rem);
        padding: clamp(0.4em, 2vw, 0.8em) clamp(0.8em, 3vw, 1.6em);
        top: 83%;
        left: 50%;
        box-shadow:
            0 0 0 0.2em var(--gold),
            0 0 0 0.4em var(--dark-bg);
    }

    .review-author,
    .review-text {
        font-size: clamp(0.5rem, 1.5vw, 1.45rem);
    }

    .sec6-slider-wrapper {
        padding: 0 clamp(0.4rem, 4vw, 3.5rem);
        
    }

    .sec6-bottom {
        position: relative;
        background-color: var(--dark-bg);
        padding-bottom: 1vh;
        margin-top: 0.7em;
        margin-left: auto;
        margin-right: auto;
    }

    .sec6-bottom-link {
        margin-left: 0.2rem;
        display: inline-block;
        transition: transform 0.3s ease;
        transform-origin: center;
    }

    .sec6-bottom-link:first-child {
        margin-left: 0;
    }

    .sec6-bottom-link img {
        height: 1.25em;
        z-index: 20;
        display: block;
    }

    .sec6-bottom-link:hover {
        transform: scale(1.3);
    }

    .sec6-slider-btn {
        font-size: clamp(2.6rem, 3vw, 4rem);
    }
}


@media (max-width: 480px) {
    .hero-section,
    .slider-section,
    .section2.container,
    .section3,
    .section4.container,
    .section5.container,
    .section6.container {
        padding: 0 0vw;
    }

/* Секция 1 */
    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-title-top {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-top: 15px;
    }

    .main-title {
        top: 10%;
        left: 4%;
        right: 4%;
        bottom: 18%;
    }

    .linetitle.t1 {
        font-size: clamp(0.625rem, 1vw, 1.2rem);
        letter-spacing: 0.422rem;
        margin-left: 2px;
    }

    .linetitle.t2 {
        font-size: clamp(1rem, 1vw, 1.2rem);
        letter-spacing: 0.3rem;
    }

    .linetitle.t2:before {
        height: 0.07em;
        background-color: var(--gold);
        margin-bottom: 0.1rem;
    }

    .linetitle.t3 {
        font-size: clamp(0.5rem, 1vw, 1.2rem);
        letter-spacing: 2px;
        margin-top: 0.2rem;
    }

    .linetitle.t4 {
        font-size: clamp(0.38rem, 0.9vw, 1.1rem);
        letter-spacing: 0.062rem;
        /* margin-top: -0.35em; */
        padding: 0.1em;
    }

    .slide img {
        max-height: clamp(4rem, 28vw, 9rem);
    }

    .slider-btn {
        font-size: 1.5rem;
    }

    .dot {
        width: 0.2rem;
        height: 0.2rem;
    }

    .dot.active {
        width: 0.3rem;
        height: 0.3rem;
    }

    .slider-dots {
        gap: 3px;
    }

/* Секция 2 */
    .top2.h3 {
        font-size: clamp(1rem, 1vw, 1.5rem);
        font-weight: 500;
    }

    .features-list {
        margin-top: 0.05em;
    }

    .feature-item {
        max-width: 100%;
        padding: clamp(0.08rem, 1.6vw, 0.45rem);
        width: 75vw;
        margin-top: 0.25em;
        gap: 0.7rem;
    }

    .feature-item p {
        font-size: clamp(0.15rem, 1.5vw, 0.7rem);
        letter-spacing: 0.1px;
    }

    .feature-marker {
        font-size: 0.7em;
        width: 1em;
        height: 1em;
        padding-left: 0.7em;
        padding-top: 0.1em;
    }

/* Секция 3 */
    .sec3-title {
        font-size: clamp(0.85rem, 1.5vw, 2.6rem);
        margin-top: 0.5em;
        font-weight: 700;
    }

    .sec3-about-you {
        font-size: clamp(0.35rem, 0.4vw, 0.5rem);
        letter-spacing: 0.2em;
    }

    .sec3-about-you p {
        margin-top: 0.8em;
    }

    .container3-left img, .container3-right img {
        display: block;
        width: 100%;
        max-width: 240px;
    }

    .sec3-rus-prew img {
        height: clamp(3.4rem, 2vh, 5rem);
    }

    .sec3-logs img {
        margin-left: 0.05em;
        max-height: 0.5em;
    }

/* Секция 5 */
    .linetitle.t5 {
        font-size: 0.5rem;
        letter-spacing: 0.449rem;
        position: relative;
        margin-left: 0.5em;
        margin-top: 2%;
        display: flex;
    }

    .linetitle.t6 {
        font-size: 0.855rem;
        letter-spacing: 0.2em;
        margin-top: 0.03em;
        font-weight: 900;
        display: inline-block; 
    }

    .sec5-str {
        font-size: 0.35rem;
        letter-spacing: 0.16em;
        margin-top: 0.8rem;
    }

    .linetitle.t7 {
        font-size: Clamp(0.8rem, 1vw, 2rem);
        margin-top: 1.1rem;
        color: #666000;
        font-weight: 900;
        display: block;
        text-align: center;
    }

    .linetitle.t7::after {
        content: "";
        position: absolute;
        left: -5%;
        margin-top: 0.45em;
        width: 3.7em;
        text-align: center;
        height: 0.05em; 
        background-color: var(--gold_dark); 
        box-shadow: 0 0 0 0.05em black; 
        z-index: 1;
        pointer-events: none; 
    }

    .linetitle.t8 {
        font-size: Clamp(1rem, 1vw, 2rem);
        font-weight: 900;
        letter-spacing: 0.08em;
        margin-top: -0.25em;
    }

    .linetitle.t9 {
        font-size: Clamp(0.315rem, 1vw, 1rem);
        letter-spacing: 0.4em;
        font-weight: 400;
        margin-top: -0.3rem;
    }

/* Section 6 */
    .sec6-tit {
        font-size: clamp(1rem, 5vw, 3.4rem);
        margin-top: -0.25em;
        left: 50%;
        font-weight: 500;
    }

    .sec6-slider-wrapper {
        padding: 0 clamp(1rem, 2vw, 3rem);
    }

    .sec6-button {
        font-size: clamp(0.5rem, 2.3vw, 3rem);
        padding: clamp(0.35rem, 2vw, 0.45rem) clamp(0.5rem, 1vw, 0.7rem);
        top: 83%;
        left: 50%;
        box-shadow:
            0 0 0 0.2em var(--gold),
            0 0 0 0.4em var(--dark-bg);
    }

    .review-author,
    .review-text {
        font-size: clamp(0.15rem, 1.5vw, 0.7rem);
        padding: 0.35em 0.35em 0.35em 4em;
        letter-spacing: 0.1px;
    }

    .review-author {
        margin-bottom: 2.3em;  
    }

    .sec6-bottom {
        position: relative;
        background-color: var(--dark-bg);
        padding-bottom: 0.2em;
        margin-top: 0.3em;
        }

    .sec6-bottom-link {
        margin-left: 0.05em;
        display: inline-block;
        transition: transform 0.3s ease;
        transform-origin: center;
        }

    .sec6-bottom-link:first-child {
        margin-left: 0;
        }

    .sec6-bottom-link img {
        height: 3.3vw;
        z-index: 20;
        display: block;
        }

    .sec6-slider-btn {
        font-size: clamp(1.8rem, 3vw, 4rem);
    } 

}


@media (max-width: 360px) { 
/* Сексция 1 */
    .main-title  {
        top: 7%;
    }

    .linetitle.t1 {
        font-size: clamp(0.50rem, 1vw, 1rem);
        letter-spacing: 0.5em;
    }

    .linetitle.t2 {
        font-size: clamp(0.88rem, 1vw, 1.6rem);
        letter-spacing: 0.1em;
        font-weight: 400;
    }

    .linetitle.t3 {
        margin-top: 0.5em;
        font-size: clamp(0.37rem, 0.3vw, 1rem);
        }

    .linetitle.t4 {
        font-size: 0.33rem;
        letter-spacing: 0.12em;
        }

    .slide img {
        width: 110%;
        max-height: 22vh;
    }

    .slider-btn {
        font-size: 1.5rem;
    }

/* Секция 2 */
    .top2.h3,
    .sec3-title {
        font-weight: 400;
    }

    .feature-item p {
        font-size: clamp(0.2rem, 1.3vw, 1.55rem);
        letter-spacing: 0.1em;
    }

    .feature-marker {
        font-size: 0.5rem;
        width: 0.8em;
        height: 0.8em;
    }

/* Секция 3 */
    .sec3-title {
        font-size: clamp(0.5rem, 2vw, 2.4rem);
        letter-spacing: 0.05rem;
        margin-bottom: 0.7rem;
    }

    .sec3-about-you {
        font-size: clamp(0.25rem, 0.6vw, 0.6rem);
        letter-spacing: 0.2em;
    }

    .sec3-rus-prew img {
        margin-top: -0.7rem;
        height: clamp(1rem, 7vw + 1rem, 7rem);
    }

    .container3-left img, .container3-right img {
        width: 100%;
        max-width: 10rem; 
    }

    .sec3-logs {
        margin-top: 1rem;
    }

    .sec3-logs img {
        margin-top: 0.03rem;
        max-height: clamp(0.2rem, 2vw, 0.3rem);
        margin-left: 0.05rem;
    }

/* Секция 5 */
    .sec5-title {
        padding: 0.1rem;
        margin-top: 3%;
    }

    .linetitle.t5 {
        font-size: 0.405rem;
        letter-spacing: 1.11em;
    }

    .linetitle.t6 {
        font-size: 0.795rem;
    }

    .sec5-str {
        font-size: 0.3rem;
        margin-top: 2em;
    }

    .linetitle.t7 {
        font-size: clamp(0.55rem, 1.2vw, 1rem);
        margin-top: 1.6em;
    }

    .linetitle.t7::after {
        margin-top: 0.37em;
        height: 0.015em;
    }

    .linetitle.t8 {
        font-size: clamp(0.65rem, 1vw, 1.1rem);
    }

    .linetitle.t9  {
        font-size: clamp(0.15rem, 1.2vw, 0.4rem);
        letter-spacing: 0.155em;
    }

 /*Секция 6  */
    .sec6-tit {
        font-size: clamp(1.05rem, 1.4vw, 1.4rem);
        font-weight: 400;
        margin-top: -0.3em;
    }

    .sec6-slider-wrapper {
        padding: 0 clamp(1.2rem, 3vw, 3rem);
        width: 100%;
    }

    .review-author,
    .review-text {
        font-size: clamp(0.25rem, 1.3vw, 1.45rem);
        padding: 0.5em 0.5em 0.5em 3.5em;
    }

    .sec6-slider-btn {
        font-size: clamp(1.3rem, 3vw, 4rem);

    }
}

@supports not (-webkit-text-stroke: 1px black) {
    .linetitle.t2 {
        text-shadow:
            0 0 2px var(--gold),
            0 0 4px var(--gold),
            0 0 4px var(--gold);
    }
    
    .top2.h3 {
        text-shadow:
            0 0 2px var(--dark-bg),
            0 0 4px var(--dark-bg),
            0 0 4px var(--dark-bg);
    }
    
    .feature-marker {
        text-shadow:
            0 0 2px var(--gold),
            0 0 4px var(--gold),
            0 0 4px var(--gold);
    }
    
    .sec6-tit {
        text-shadow:
            0 0 2px var(--dark-bg),
            0 0 4px var(--dark-bg),
            0 0 4px var(--dark-bg);
    }
}

@-moz-document url-prefix() {
    body {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
    }
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: var(--gold);
    padding: 0.85em 1.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-banner-content p {
    margin: 0;
    font-size: clamp(0.6rem, 1.6vw, 1.3rem);
    font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
}

.cookie-ok-btn {
    background: #fff11f;
    color: #000000;
    border: none;
    padding: 0.35em 1.5em;
    font-size: clamp(0.6rem, 1.6vw, 1.2rem);
    font-weight: 700;
    font-family: 'Bahnschrift', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cookie-ok-btn:hover {
    background: #e6d800;
}

.privacy-link {
    color: var(--gold);
}

.footer {
    width: 100%;
    height: 2em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.line_fot {
        content: '';
        display: block;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
        height: 0.02rem;
        background-color: var(--gold);
        padding-top: 0.9em;
        margin-top: 0.005rem;
        pointer-events: none;
        margin-bottom: clamp(0.1rem, 0.8vw, 0.7rem);
    }

.privacy-link2 {
    font-size: clamp(0.4rem, 1.4vw, 0.9rem);
    font-weight: 700;
    color: var(--gold);
    transition: opacity 0.2s ease;
    padding-bottom: clamp(0.8rem, 0.9vw, 1.2rem);
}

.privacy-link2:hover {
        opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 0.25em;
        text-align: center;
    }
    
    .cookie-banner-content p {
        font-size: clamp(0.5rem, 1.4vw, 1.1rem);
    }
}
