html {
    scroll-behavior: smooth;
}



.disp {
    display: none;
}
        /* ================================
           RESET
        ================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            min-width: 320px;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #090909;
            color: #fff;
        }


        /* ================================
           PAGE
        ================================= */

        .page {
            min-height: 100vh;
            overflow: hidden;

            background:
                radial-gradient(
                    circle at center,
                    rgba(255, 255, 255, 0.08),
                    transparent 35%
                ),
                #090909;
        }


        /* ================================
           CONTAINER
           Аналог Bootstrap container
        ================================= */

        .container {
            width: 100%;
            max-width: 1200px;

            margin: 0 auto;

            padding: 0 30px;
        }


        /* ================================
           HEADER
        ================================= */

        .header {
            height: 100px;

            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* ================================
           NAVIGATION
        ================================= */

        .nav {
            display: flex;
            align-items: center;
            justify-content: center;

            gap: 8px;

            padding: 6px;

            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
position: fixed;
            background: rgba(255, 255, 255, 0.025);
z-index: 999999;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }


        .nav__link {
            padding: 11px 20px;

            color: rgba(255, 255, 255, 0.55);

                font-size: clamp(20px, 1vw, 18px);
            text-decoration: none;

            border-radius: 100px;

            transition:
                color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.3s ease;
        }


        .nav__link:hover {
            color: #fff;

            background: rgba(255, 255, 255, 0.1);

            box-shadow:
                0 0 25px rgba(255, 255, 255, 0.08),
                inset 0 0 15px rgba(255, 255, 255, 0.04);

            transform: translateY(-1px);
        }


        /* ================================
           HERO
        ================================= */


.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
margin-top: -100px;
    background-image: url("../images/tes.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ========================================
   CONTENT
======================================== */

.hero__content {
    position: relative;

    z-index: 2;

    max-width: 1000px;

    padding: 40px 20px;
}


/* ========================================
   TITLE
======================================== */

.hero__title {
    margin: 0;
    font-size: clamp(30px, 8vw, 30px);
    text-transform: uppercase;
}


/* ========================================
   SUBTITLE
======================================== */

.hero__subtitle {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.5);

    font-size:29px;

    letter-spacing: 1px;
}


/* ========================================
   CENTER TEXT
======================================== */




/* ========================================
   BOTTOM PHRASE
======================================== */




        /* ================================
           BOTTOM PHRASE
        ================================= */

        .hero__phrase {
    position: absolute;
    right: 42px;
    bottom: 38px;
    color: rgb(255 255 255 / 80%);
    font-size: 21px;
    line-height: 1.5;
    text-align: right;
    letter-spacing: 0.5px;
        }




        .hero__center-text {


            color: rgba(255, 255, 255, 0.85);

            font-size: 32px;
            font-weight: 300;

            letter-spacing: 3px;
            text-transform: uppercase;
        }


        /* На телефоне */











/* ========================================
   IMAGE SECTION
========================================= */

.image-section {
    display: none;
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 600px;

    overflow: hidden;

    background: #111;
}


/* Картинка */

.image-section__image {
    position: absolute;

    inset: 0;
}


.image-section__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Затемнение снизу */

.image-section__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0) 65%
        );
}


/* Текст */

.image-section__text {
    position: absolute;

    left: 50%;
    bottom: 55px;

    width: min(900px, calc(100% - 40px));

    transform: translateX(-50%);

    text-align: center;

    z-index: 2;
}


.image-section__text p {
    color: #fff;

    font-size: clamp(25px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 300;

    letter-spacing: -1px;
}



/* ========================================
   ABOUT SECTION
========================================= */

.about-section {
    width: 100%;

    min-height: 750px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #090909;
}


/* ========================================
   IMAGE
========================================= */

.about-section__image {
    width: 100%;
        height: 71%;


    overflow: hidden;
}


.about-section__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.about-section:hover .about-section__image img {
    transform: scale(1.03);
}


/* ========================================
   CONTENT
========================================= */

.about-section__content {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 80px;
}


/* Маленькая надпись */

.about-section__label {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Заголовок */

.about-section__title {
    max-width: 600px;

    color: #fff;

    font-size: clamp(40px, 4vw, 65px);

    line-height: 0.98;

    font-weight: 400;

    letter-spacing: -3px;
}


/* Текст */

.about-section__text {
    max-width: 500px;

    margin-top: 35px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 17px;

    line-height: 1.7;
}


/* ========================================
   ABOUT SECTION
========================================= */

.about-section {
    width: 100%;

    min-height: 750px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    padding-left: 60px ;
    padding-right: 60px ;
    padding-top: 40px;
    padding-bottom: 40px;

    background: #090909;
}


/* ========================================
   IMAGE
========================================= */

.about-section__image {
    width: min(530px, 45vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 49%;
    background: #111;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.6s ease, transform 0.6s ease;
}


.about-section__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.9s ease;
}


.about-section__image:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.05);
}


.about-section__image:hover img {
    transform: scale(1.05);
}


/* ========================================
   CONTENT
========================================= */

.about-section__content {
    max-width: 650px;

    padding: 30px 0;
}


/* ========================================
   LABEL
========================================= */

.about-section__label {
    display: block;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 17px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* ========================================
   TITLE
========================================= */

.about-section__title {
    max-width: 650px;

    margin: 0 auto;

    color: #fff;

    font-size: clamp(42px, 5vw, 63px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -4px;
}


/* ========================================
   TEXT
========================================= */

.about-section__text {
    max-width: 580px;

    margin-top: 35px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   FEATURES
========================================= */

.about-section__features {
    max-width: 600px;

    margin-top: 55px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* ========================================
   FEATURE
========================================= */

.feature {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 18px;
}


/* ========================================
   ICON
========================================= */


.feature__icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.feature:hover .feature__icon {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.4);

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.05);
}


/* ========================================
   FEATURE TEXT
========================================= */

.feature__text {
    display: flex;
    align-items: center;
    flex-direction: column;

    gap: 7px;
}


.feature__text strong {
    color: #fff;

    font-size: 14px;

    font-weight: 400;
}


.feature__text span {
    color: rgba(255, 255, 255, 0.4);
text-align: center;
    font-size: 12px;

    line-height: 1.4;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .about-section {
        gap: 50px;

        padding: 80px 40px;
    }


    .about-section__image {
        width: min(440px, 42vw);
    }


    .about-section__title {
        font-size: clamp(38px, 5vw, 58px);

        letter-spacing: -3px;
    }


    .about-section__features {
        gap: 15px;
    }

}


/* ========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 10px 30px;
    }


    .about-section__image {
        width: min(500px, 70vw);
    }


    .about-section__content {
        width: min(700px, 100%);

        margin: 0 auto;

        padding: 0;
    }


    .about-section__title {
        font-size: clamp(42px, 7vw, 65px);
    }


    .about-section__text {
        max-width: 650px;
    }


    .about-section__features {
        max-width: 650px;
    }

}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .about-section {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 55px;

        padding: 30px 20px;
    }




    /* Круглая фотография */

    .about-section__image {
        width: min(85vw, 400px);

        height: auto;

        aspect-ratio: 1 / 1;

        margin: 0 auto;
    }


    .about-section__content {
        width: 100%;

        padding: 0;
    }


    .about-section__label {
        margin-bottom: 20px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .about-section__title {
        font-size: clamp(36px, 10vw, 52px);

        line-height: 0.98;

        letter-spacing: -2.5px;
    }


    .about-section__text {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.75;
    }


    /* Три значка */

    .about-section__features {
        width: 100%;
        display: none;
        margin-top: 45px;
        min-height: 1px;
        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }


    .feature {
        align-items: center;

        text-align: center;

        gap: 14px;
    }


    .feature__icon {
        width: 44px;
        height: 44px;
    }


    .feature__text {
        align-items: center;
    }


    .feature__text strong {
        font-size: 13px;
    }


    .feature__text span {
        font-size: 11px;
    }

}


/* ========================================
   SMALL MOBILE
========================================= */

@media (max-width: 450px) {

    .about-section {
        gap: 45px;
        min-height: 1px;
        padding: 30px 18px;
    }


    .about-section__image {
        width: 82vw;
    }


    .about-section__title {
        font-size: 36px;

        letter-spacing: -2px;
    }


    .about-section__text {
        font-size: 13px;
    }


    .about-section__features {
        gap: 8px;
    }


    .feature {
        gap: 11px;
    }


    .feature__icon {
        width: 40px;
        height: 40px;

        font-size: 10px;
    }


    .feature__text {
        gap: 5px;
    }


    .feature__text strong {
        font-size: 12px;
    }


    .feature__text span {
        font-size: 10px;
    }

}


/* ========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 350px) {

    .about-section__features {
        grid-template-columns: 1fr;
    }


    .feature {
        flex-direction: row;

        align-items: center;

        text-align: left;
    }


    .feature__text {
        align-items: flex-start;
    }

}








/* ========================================
   CARDS SECTION
========================================= */

.cards-section {
    width: 100%;

    padding: 14px 0;

    background: #090909;
}


/* ========================================
   SECTION HEADER
========================================= */

.cards-section__header {
    max-width: 1200px;

    margin: 0 auto 70px;

    padding: 0 30px;

    text-align: center;
}


.cards-section__label {
    display: block;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 17px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.cards-section__title {
    color: #fff;

    font-size: clamp(40px, 6vw, 75px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}


/* ========================================
   CARDS
========================================= */

.cards {
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 30px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ========================================
   CARD
========================================= */

.card {
    position: relative;

    height: 650px;

    overflow: hidden;

    border-radius: 4px;

    background: #111;

    cursor: pointer;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


/* Свечение */

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 70px rgba(255, 255, 255, 0.08),
        0 0 40px rgba(255, 255, 255, 0.06);
}


/* ========================================
   IMAGE
========================================= */

.card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0, 1),
        filter 0.5s ease;
}


.card:hover .card__image {
    transform: scale(1.07);

    filter: brightness(1.08);
}


/* ========================================
   OVERLAY
========================================= */

.card__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.05) 35%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.85) 100%
        );

    transition: background 0.5s ease;
}


.card:hover .card__overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.02) 40%,
            rgba(0, 0, 0, 0.9) 100%
        );
}


/* ========================================
   TOP TEXT
========================================= */

.card__top {
    position: absolute;

    top: 25px;
    left: 25px;
    right: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 2;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    letter-spacing: 2px;
text-align: center;
    text-transform: uppercase;
}


/* ========================================
   BOTTOM TEXT
========================================= */

.card__bottom {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;
}


.card__bottom h3 {
    margin-bottom: 12px;
text-align: center;
    color: #fff;

    font-size: clamp(30px, 3vw, 45px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1.5px;
}


.card__bottom p {

text-align: center;
    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;

    line-height: 1.5;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cards-section {
        padding: 50px 0;
    }

    .cards {
        padding: 0 20px;

        gap: 15px;
    }

    .cards-section__header {
        margin-bottom: 50px;

        padding: 0 20px;
    }

    .card {
        height: 500px;
    }

    .card__top {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .card__bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .card__bottom h3 {
        font-size: 30px;
    }
}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .cards-section {
        padding: 17px 0;
    }

    .cards-section__header {
        margin-bottom: 40px;
    }

    .cards-section__title {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .cards {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 0 20px;
    }

    .card {
        height: 600px;
    }

    .card:hover {
        transform: none;
    }

    .card:hover .card__image {
        transform: scale(1.03);
    }
}


/* ========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .card {
        height: 500px;
    }

    .cards {
        padding: 0 15px;
    }

    .card__top {
        top: 18px;
        left: 18px;
        right: 18px;
    }

    .card__bottom {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}





/* ========================================
   STORY SECTION
========================================= */

.story-section {
    width: 100%;

    padding: 30px 30px;

    background: #090909;
}


/* ========================================
   БОЛЬШАЯ КАРТИНКА
========================================= */

.story-section__image {
    width: min(750px, 85vw);

    aspect-ratio: 5 / 5;

    margin: 0 auto;

    overflow: hidden;
}


.story-section__image img {
    width: 100%;


    display: block;

    object-fit: cover;
    border-radius: 50%;

    transition: transform 1s ease;
}


.story-section__image:hover img {
    transform: scale(1.03);
}


/* ========================================
   НИЖНЯЯ ЧАСТЬ
========================================= */

.story-section__content {
    width: min(1100px, 90vw);

    margin: 10px auto 0;

    display: grid;

    grid-template-columns: 1fr 280px;

    gap: 100px;

    align-items: end;
}


/* ========================================
   ТЕКСТ
========================================= */

.story-section__main {
    max-width: 700px;
}


.story-section__label {
    display: block;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 17px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.story-section__title {
    color: #fff;

    font-size: clamp(38px, 5vw, 65px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -3px;
}


.story-section__text {
  

    margin-top: 35px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 17px;

    line-height: 1.8;
}


/* ========================================
   КНОПКА
========================================= */

.story-section__button {
    width: fit-content;

    margin-top: 40px;

    padding: 14px 20px;

    display: flex;

    align-items: center;

    gap: 25px;

    color: #fff;

    font-size: 13px;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 100px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.story-section__button span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.story-section__button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.5);

    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.07);
}


.story-section__button:hover span {
    transform: translate(3px, -3px);
}


/* ========================================
   МАЛЕНЬКАЯ КАРТИНКА
========================================= */

.story-section__small-image {
    width: 280px;

    aspect-ratio: 2 / 4;

    overflow: hidden;
}


.story-section__small-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.story-section__small-image:hover img {
    transform: scale(1.05);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .story-section {
        padding: 11px 20px;
    }

    .story-section__content {
        width: 90vw;

        grid-template-columns: 1fr 220px;

        gap: 50px;


    }

    .story-section__small-image {
        width: 174px;
        aspect-ratio: 1 / 4;
    }

}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .story-section {
        padding: 10px 15px;
    }

    .story-section__image {
        width: 90vw;

        aspect-ratio: 4 / 4;
    }

    .story-section__content {
        width: 90vw;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 45px;

      
    }

    .story-section__title {
        font-size: 36px;

        letter-spacing: -2px;
    }

    .story-section__text {
        margin-top: 25px;

        font-size: 14px;

        line-height: 1.7;
    }

    .story-section__button {
        margin-top: 30px;
    }

    .story-section__small-image {
        width: 55vw;

        max-width: 250px;
        aspect-ratio: 2 / 4;
       align-self: center;
    }

}



/* ========================================
   REVIEWS SECTION
========================================= */

.reviews-section {
    width: 100%;

    padding: 16px 30px;

    overflow: hidden;

    background: #090909;
}


/* ========================================
   5 GIF TRIANGLES
========================================= */

.gif-triangle-list {
    width: min(1000px, 100%);

    margin: 0 auto;

    display: flex;

    justify-content: center;
    align-items: center;

}


/* Каждый треугольник */

.gif-triangle {
    width: 170px;
    height: 190px;

    overflow: hidden;

    clip-path: polygon(
        50% 0%,
        100% 100%,
        0% 100%
    );

    background: #151515;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* GIF */

.gif-triangle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


/* ========================================
   ЧЕРЕДОВАНИЕ
========================================= */

/* 1 — вверх */
/* 2 — вниз */
.gif-triangle:nth-child(even) {
    transform: rotate(180deg);
}


/* Возвращаем саму GIF,
   чтобы она не была вверх ногами */

.gif-triangle:nth-child(even) img {
    transform: rotate(180deg);
}


/* ========================================
   HOVER
========================================= */

.gif-triangle:nth-child(odd):hover {
    transform: translateY(-10px);
    
    filter:
        drop-shadow(
            0 15px 25px rgba(255, 255, 255, 0.08)
        );
}


.gif-triangle:nth-child(even):hover {
    transform: rotate(180deg) translateY(-10px);

    filter:
        drop-shadow(
            0 15px 25px rgba(255, 255, 255, 0.08)
        );
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .gif-triangle-list {
        gap: 12px;
    }

    .gif-triangle {
        width: 140px;
        height: 155px;
    }
}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
 
    .gif-triangle-list {
        display: grid;

        grid-template-columns: repeat(5, 1fr);

        gap: 5px;
        
        width: 100%;
    }
    .gif-triangle {
        width: 100%;
        height: auto;

        aspect-ratio: 0.9 / 1;
    }
    .story-section__button{ 
        margin-right: auto;
        margin-left: auto;
    }



}


/* ========================================
   INTRO
========================================= */

.reviews-section__intro {
    max-width: 750px;

    margin: 68px auto 0;

    text-align: center;
}


.reviews-section__label {
    display: block;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.reviews-section__title {
    color: #fff;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -4px;
}


.reviews-section__text {
    max-width: 500px;

    margin: 30px auto 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 17px;

    line-height: 1.7;
}

/* ========================================
   SLIDER
========================================= */

.reviews-slider {
    position: relative;

    max-width: 1200px;

    margin: 39px auto 0;
}


.reviews-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0 /*30px*/;
    /* Важно для телефона */
    touch-action: pan-x;
    /* Чтобы браузер не выделял картинки */
    user-select: none;
    cursor: grab;
}


.reviews-slider__track::-webkit-scrollbar {
    display: none;
}


/* Когда тащим мышкой */

.reviews-slider__track.is-dragging {
    cursor: grabbing;

    scroll-behavior: auto;
}


/* Чтобы картинки не перетаскивались браузером */

.reviews-slider__track img {
    pointer-events: none;

    user-select: none;

    -webkit-user-drag: none;
}


/* ========================================
   REVIEW IMAGE
========================================= */

.review {
    flex: 0 0 360px;



    overflow: hidden;

    background: #090909;;
}


.review img {
    width: 100%;


    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.review:hover img {
    transform: scale(1.04);
}


/* ========================================
   CONTROLS
========================================= */

.reviews-slider__controls {
    display: flex;

    justify-content: center;

    gap: 10px;

    /*margin-top: 25px;*/
}


.reviews-slider__button {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.reviews-slider__button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.4);

    transform: translateY(-2px);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .reviews-section {
        padding: 50px 20px 1px;
    }

    .gif-triangle-list {
        gap: 12px;
    }

    .gif-triangle {
        width: 140px;
        height: 155px;
    }

    .reviews-section__intro {
        margin-top: 90px;
    }

    .review {
        flex-basis: 300px;

        height: 147px;
    }
}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .reviews-section {
        padding: 15px 15px 8px;
    }

    .gif-triangle-list {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 10px;

        max-width: 360px;
    }

    .gif-triangle {
        width: 100%;

        height: auto;

        aspect-ratio: 0.9 / 1;
    }

    .gif-triangle:nth-child(4) {
        grid-column: 1 / 2;
    }

    .gif-triangle:nth-child(5) {
        grid-column: 2 / 3;
    }

    .reviews-section__intro {
        margin-top: 70px;
    }

    .reviews-section__title {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .reviews-section__text {
        font-size: 14px;
    }

    .reviews-slider {
        margin-top: 60px;
    }

    .review {
        flex: 0 0 78vw;

        height: 105vw;

        max-height: 200px;
    }

    .reviews-slider__button {
        width: 45px;
        height: 45px;
    }
}






/* ========================================
   VIDEO SECTION
========================================= */

.video-section {
    position: relative;

    width: 100%;
    /*height: 650px;*/

    min-height: 400px;

    overflow: hidden;

    background: #000;
}


/* ========================================
   VIDEO
========================================= */

.video-section__video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ========================================
   DARK OVERLAY
========================================= */

.video-section__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        );

    z-index: 1;
}


/* Дополнительное затемнение по краям */

.video-section__overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
radial-gradient(
                    circle at center,
                    rgba(255, 255, 255, 0.08),
                    transparent 35%
                ),
                #090909
}



/* ========================================
   CONTENT
========================================= */

.video-section__content {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 2;

    width: min(800px, 90%);

    transform: translate(-50%, -50%);

    text-align: center;
}


/* Маленькая надпись */

.video-section__label {
    display: block;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;

    letter-spacing: 5px;

    text-transform: uppercase;
}


/* Заголовок */

.video-section__title {
    color: #fff;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: -5px;
}


/* Текст */

.video-section__text {
    max-width: 580px;

    margin: 30px auto 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;
    
    line-height: 1.3;
}


/* ========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .video-section {


        min-height: 214px;
    }

    .video-section__content {
        width: calc(100% - 30px);
    }

    .video-section__label {
        margin-bottom: 20px;

        font-size: 9px;

        letter-spacing: 3px;
    }

    .video-section__title {
        font-size: 46px;

        line-height: 0.95;

        letter-spacing: -3px;
    }

    .video-section__text {
        max-width: 320px;

        margin-top: 25px;

        font-size: 13px;
    }
}




/* ========================================
   FINAL SECTION
========================================= */

.final-section {
    width: 100%;

    min-height: 650px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #090909;
}


/* ========================================
   VIDEO
========================================= */

.final-section__video {
    position: relative;

    min-height: 750px;

    overflow: hidden;
}


.final-section__video::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to right,
            transparent 60%,
            rgba(9, 9, 9, 0.4)
        );
}


.final-section__video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}


.final-section:hover .final-section__video video {
    transform: scale(1.025);
}


/* ========================================
   CONTENT
========================================= */

.final-section__content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left: 80px;
}


.final-section__label {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 17px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.final-section__title {
    max-width: 600px;

    color: #fff;

    font-size: clamp(45px, 5vw, 75px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -4px;
}


.final-section__text {
    max-width: 500px;

    margin-top: 35px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   BUTTON
========================================= */

.final-section__button {
    width: fit-content;

    margin-top: 40px;

    padding: 15px 22px;

    display: flex;

    align-items: center;

    gap: 30px;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 100px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.final-section__button span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.final-section__button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.5);

    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.06);
}


.final-section__button:hover span {
    transform: translate(3px, -3px);
}


/* ========================================
   FEEDBACK
========================================= */

.feedback-section {
    width: 100%;

    padding: 30px 30px;

    background: radial-gradient(
                    circle at center,
                    rgba(255, 255, 255, 0.08),
                    transparent 35%
                ),
                #090909
}


.feedback-section__inner {
    width: min(1100px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

    align-items: start;
}


/* ========================================
   FEEDBACK HEADING
========================================= */

.feedback-section__label {
    display: block;
margin-top: 55px;
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 17px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.feedback-section__title {
    max-width: 500px;

    color: #fff;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -4px;
}


.feedback-section__text {
    max-width: 420px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 17px;

    line-height: 1.7;
}


/* ========================================
   FORM
========================================= */

.feedback-form {
    display: flex;
    margin-top: 67px;
    flex-direction: column;

    gap: 30px;
}


.feedback-form__field {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.feedback-form__field label {
    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.feedback-form__field input,
.feedback-form__field textarea {
    width: 100%;

    padding: 15px 0;

    color: #fff;

    font-family: inherit;

    font-size: 15px;

    background: transparent;

    border: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);

    outline: none;

    transition: border-color 0.3s ease;
}


.feedback-form__field textarea {
    min-height: 53px;

    resize: vertical;
}


.feedback-form__field input::placeholder,
.feedback-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}


.feedback-form__field input:focus,
.feedback-form__field textarea:focus {
    border-color: rgba(255, 255, 255, 0.7);
}


/* ========================================
   FORM BUTTON
========================================= */

.feedback-form__button {
    width: fit-content;

    margin-top: 15px;

    padding: 16px 25px;

    display: flex;

    align-items: center;

    gap: 30px;

    color: #fff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 100px;

    font-family: inherit;

    font-size: 13px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.feedback-form__button span {
    font-size: 18px;
}


.feedback-form__button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.5);

    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.06);
}


/* ========================================
   FOOTER
========================================= */

.footer {
    padding: 40px 30px 30px;

    background: radial-gradient(                    circle at center,                                        transparent 35%                ),                #090909;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer__top {
    width: min(1200px, 100%);

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    gap: 80px;
}


.footer__brand {
    max-width: 300px;
}


.footer__logo {
    color: #fff;

    font-size: 20px;

    text-decoration: none;

    letter-spacing: 3px;
}


.footer__brand p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 13px;

    line-height: 1.6;
}


/* ========================================
   FOOTER LINKS
========================================= */

.footer__links {
    display: flex;

    gap: 100px;
}


.footer__column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.footer__column span {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.footer__column a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer__column a:hover {
    color: #fff;
}


/* ========================================
   FOOTER BOTTOM
========================================= */

.footer__bottom {
    width: min(1200px, 100%);

    margin: 20px auto 0;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.25);

    font-size: 11px;
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .final-section__content {
        padding: 50px;
    }

    .feedback-section__inner {
        gap: 60px;
    }

    .footer__links {
        gap: 40px;
    }
}


/* ========================================
   MOBILE
========================================= */









@media (max-width: 700px) {

    /* Видео + текст */

    .final-section {
        display: flex;

        flex-direction: column;
    }

    .final-section__video {
        min-height: 65vh;

        height: 65vh;
    }

    .final-section__content {
        padding: 3px 25px;
    }

    .final-section__title {
        font-size: 44px;

        letter-spacing: -3px;
    }


    /* Обратная связь */

    .feedback-section {
        padding: 4px 20px;
    }

    .feedback-section__inner {
        display: flex;

        flex-direction: column;
padding-bottom: 21px;
        gap: 60px;
    }

    .feedback-section__title {
        font-size: 45px;

        letter-spacing: -3px;
    }
    .review {height: 166px;}

  .video-section{ margin-bottom: 0px;}
    /* Footer */

    .footer {
        padding: 60px 20px 25px;
    }

    .footer__top {
        flex-direction: column;

        gap: 60px;
    }

    .footer__links {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 25px;
    }

    .footer__bottom {
        margin-top: 60px;

        flex-direction: column;

        gap: 10px;
    }
}









/* ========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .final-section__content {
        padding: 1px 1px;
    }

    .final-section__title {
        font-size: 39px;
    }

    .feedback-section__title {
        font-size: 40px;
    }

    .footer__links {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   BURGER
======================================== */

.burger {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.25);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    position: relative;
    z-index: 1002;
}


.burger span {
    display: block;

    width: 18px;
    height: 1px;

    background: #fff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ========================================
   MOBILE MENU
======================================== */

.mobile-menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(10, 10, 10, 0.97);

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}


.mobile-menu__nav {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 28px;
}


.mobile-menu__link {
    color: #fff;

    text-decoration: none;

    font-size: 22px;

    font-weight: 300;

    letter-spacing: 1px;

    transition: opacity 0.3s ease;
}


.mobile-menu__link:hover {
    opacity: 0.5;
}


/* ========================================
   OPEN
======================================== */

.mobile-menu.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* ========================================
   BURGER → CLOSE
======================================== */

.burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}


.burger.active span:nth-child(2) {
    opacity: 0;
}


.burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
/* ========================================
   BURGER MOBILE
======================================== */
/* =========================================================
   RESPONSIVE
========================================================= */


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   до 1000px
========================================================= */

@media (max-width: 1000px) {

    /* =========================
       HERO
    ========================= */

    .hero__content {
        width: min(90%, 850px);
        max-width: 850px;
    }

    .hero__title {
        font-size: clamp(22px, 6vw, 24px);

    }

    .hero__center-text {
        font-size: clamp(20px, 3vw, 27px);
        letter-spacing: clamp(1px, 0.25vw, 2.5px);
    }

    .hero__phrase {
        right: clamp(20px, 3vw, 30px);
        bottom: clamp(20px, 3vw, 30px);

        width: min(70%, 700px);

        font-size: clamp(15px, 2.2vw, 22px);
        line-height: 1.3;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section__content {
        width: min(100%, 650px);
    }

    .about-section__title {
        font-size: clamp(38px, 5vw, 54px);
    }

    .about-section__text {
        font-size: clamp(16px, 1.8vw, 20px);
        line-height: 1.6;
    }


    /* =========================
       STORY
    ========================= */

    .story-section__title {
        font-size: clamp(40px, 5vw, 58px);
        line-height: 0.98;
    }

    .story-section__text {
        font-size: clamp(16px, 1.7vw, 19px);
        line-height: 1.65;
    }


    /* =========================
       CARDS
    ========================= */

    .cards-section__title {
        font-size: clamp(42px, 5vw, 60px);
    }

    .card__top span {
        font-size: clamp(14px, 1.7vw, 18px);
    }

    .card__bottom h3 {
        font-size: clamp(30px, 3.5vw, 44px);
    }

    .card__bottom p {
        font-size: clamp(15px, 1.6vw, 18px);
        line-height: 1.45;
    }


    /* =========================
       REVIEWS
    ========================= */

    .reviews-section__title {
        font-size: clamp(40px, 5vw, 58px);
    }

    .reviews-section__text {
        font-size: clamp(16px, 1.7vw, 19px);
    }


    /* =========================
       VIDEO
    ========================= */

    .video-section__title {
        font-size: clamp(42px, 6vw, 70px);
        line-height: 0.95;
    }

    .video-section__text {
        font-size: clamp(16px, 1.8vw, 20px);
    }


    /* =========================
       FINAL
    ========================= */

    .final-section__title {
        font-size: clamp(40px, 5vw, 60px);
    }

    .final-section__text {
        font-size: clamp(16px, 1.7vw, 19px);
    }

}


/* =========================================================
   TABLET
   до 768px
========================================================= */

@media (max-width: 768px) {

    /* =========================
       CONTAINER
    ========================= */

    .container {
        padding: 0 20px;
    }
.video-section {min-height: 280px;
}

    /* =========================
       HEADER
    ========================= */

    .header {
        height: 85px;
    }

    .nav {
        display: none;
    }

    .burger {
        display: flex;

        position: fixed;

        top: 20px;
        right: 20px;

        z-index: 1100;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: calc(100vh - 85px);

        padding-top: clamp(50px, 8vh, 80px);
    }

    .hero__content {
        width: 100%;
        max-width: 700px;

        padding: 0 20px;
    }

    .hero__title {
        font-size: clamp(18px, 8vw, 22px);


    }

    .hero__subtitle {
        margin-top: 20px;

        font-size: clamp(18px, 3vw, 27px);
    }

    .hero__center-text {
        margin-top: 25px;

        font-size: clamp(18px, 3.5vw, 25px);

        letter-spacing: 1.5px;
    }

    .hero__phrase {
        right: 20px;
        left: 20px;

        bottom: 25px;

        width: auto;
        max-width: 600px;

        margin-left: auto;

        font-size: clamp(13px, 2vw, 17px);

        line-height: 1.35;
    }


    /* =========================
       IMAGE SECTION
    ========================= */

    .image-section__text {
        width: min(90%, 700px);
    }

    .image-section__text p {
        font-size: clamp(20px, 4vw, 30px);
        line-height: 1.2;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section {


        margin-bottom: 0;
    }

    .about-section__image {
        width: min(100%, 550px);
    }

    .about-section__content {
        width: 100%;
    }

    .about-section__title {
        font-size: clamp(36px, 7vw, 50px);
        line-height: 1;
    }

    .about-section__text {
        font-size: clamp(16px, 2.5vw, 19px);
        line-height: 1.6;
    }


    /* =========================
       FEATURES
    ========================= */

    .about-section__features {
        gap: 25px;
    }

    .feature__icon {
        flex-shrink: 0;
    }

    .feature__text strong {
        font-size: clamp(15px, 2vw, 18px);
    }

    .feature__text span {
        font-size: clamp(13px, 1.8vw, 16px);
    }


    /* =========================
       CARDS
    ========================= */

    .cards-section {
        padding-top: 10px;
    }

    .cards-section__title {
        font-size: clamp(38px, 7vw, 54px);
        line-height: 1;
    }

    .cards {
        gap: 15px;
    }

    .card__top span {
        font-size: clamp(12px, 2vw, 16px);
    }

    .card__bottom h3 {
        font-size: clamp(28px, 5vw, 40px);
    }

    .card__bottom p {
        font-size: clamp(14px, 2vw, 17px);
        line-height: 1.4;
    }


    /* =========================
       STORY
    ========================= */

    .story-section {
        padding-top: 10px;
    }

    .story-section__image {
        width: min(90%, 650px);
    }

    .story-section__title {
        font-size: clamp(36px, 7vw, 52px);
        line-height: 1;
    }

    .story-section__text {
        font-size: clamp(15px, 2.3vw, 18px);
        line-height: 1.6;
    }


    /* =========================
       REVIEWS
    ========================= */

    .reviews-section__title {
        font-size: clamp(36px, 7vw, 52px);
        line-height: 1;
    }

    .reviews-section__text {
        font-size: clamp(15px, 2.3vw, 18px);
    }

    .review {
        flex: 0 0 clamp(260px, 55vw, 420px);
    }


    /* =========================
       VIDEO
    ========================= */

    .video-section__content {
        width: min(90%, 700px);
    }

    .video-section__title {
        font-size: clamp(38px, 8vw, 62px);
        line-height: 0.95;
    }

    .video-section__text {
        font-size: clamp(15px, 2.3vw, 19px);
        line-height: 1.5;
    }


    /* =========================
       FINAL
    ========================= */

    .final-section {
        gap: 40px;
    }

    .final-section__title {
        font-size: clamp(36px, 7vw, 54px);
        line-height: 1;
    }

    .final-section__text {
        font-size: clamp(15px, 2.3vw, 18px);
        line-height: 1.6;
    }


    /* =========================
       FEEDBACK
    ========================= */

    .feedback-section__title {
        font-size: clamp(38px, 7vw, 54px);
        line-height: 1;
    }

    .feedback-section__text {
        font-size: clamp(15px, 2.3vw, 18px);
        line-height: 1.6;
    }

}


/* =========================================================
   MOBILE
   до 550px
========================================================= */



.reviews-slider {
    margin: 10px auto 0;
}


@media (max-width: 768px) {
    .card__bottom h3 {
        font-size: clamp(23px, 2vw, 30px);
    }
}

@media (max-width: 648px) {
    .card__bottom h3 {
        font-size: clamp(33px, 5vw, 34px);
    }
}



@media (max-width: 550px) {

    /* =========================
       GENERAL
    ========================= */

    .container {
        padding: 0 15px;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        height: 70px;
        padding: 15px 0;
    }

    .burger {
        top: 15px;
        right: 15px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: calc(100svh - 70px);

        padding-top: 50px;
    }

    .hero__content {
        padding: 0 10px;
    }

    .hero__title {
        font-size: clamp(14px, 11vw, 15px);


        overflow-wrap: break-word;
    }

    .hero__subtitle {
        font-size: clamp(16px, 5vw, 24px);

        line-height: 1.25;
    }

    .hero__center-text {
        margin-top: 20px;

        font-size: clamp(17px, 5vw, 23px);

        line-height: 1.2;

        letter-spacing: 1px;
    }

    .hero__phrase {
        right: 15px;
        left: 15px;

        bottom: 18px;

        font-size: clamp(11px, 3.2vw, 15px);

        line-height: 1.3;
    }


    /* =========================
       IMAGE SECTION
    ========================= */

    .image-section {
        min-height: 500px;
        height: 80svh;
    }

    .image-section__text {
        bottom: 25px;

        width: calc(100% - 30px);
    }

    .image-section__text p {
        font-size: clamp(20px, 6vw, 28px);

        line-height: 1.15;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-section {
        gap: 35px;
    }

    .about-section__image {
        width: 100%;
    }

    .about-section__title {
        font-size: clamp(32px, 9vw, 35px);

        line-height: 0.98;

        letter-spacing: -1.5px;
    }

    .about-section__text {
        font-size: clamp(15px, 4.3vw, 16px);

        line-height: 1.55;
    }


    /* =========================
       FEATURES
    ========================= */

    .about-section__features {
        display: grid;
        display: none;
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;
    }

    .feature {
        display: flex;

        align-items: center;

        gap: 15px;
    }

    .feature__icon {
        width: 42px;
        height: 42px;

        flex-shrink: 0;
    }

    .feature__text {
        min-width: 0;
    }

    .feature__text strong {
        font-size: 16px;
    }

    .feature__text span {
        font-size: 13px;
    }


    /* =========================
       CARDS
    ========================= */

    .cards-section {
        padding-top: 10px;
    }

    .cards-section__header {
        padding: 0 5px;
    }

    .cards-section__title {
        font-size: clamp(34px, 9vw, 45px);

        line-height: 1;

        letter-spacing: -1px;
    }

    .cards {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .card {
        min-height: 480px;
    }

    .card__top {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .card__top span {
        font-size: clamp(12px, 3.5vw, 15px);

        line-height: 1.3;
    }

    .card__bottom {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .card__bottom h3 {
        font-size: clamp(30px, 9vw, 42px);

        line-height: 1;
    }

    .card__bottom p {
        max-width: 100%;

        font-size: clamp(14px, 4vw, 17px);

        line-height: 1.4;
    }


    /* =========================
       STORY
    ========================= */

    .story-section {
        padding-top: 10px;
    }

    .story-section__image {
        width: 85vw;

        max-width: 500px;

        aspect-ratio: 4 / 4;
    }

    .story-section__title {
        font-size: clamp(32px, 9vw, 46px);

        line-height: 1;
    }

    .story-section__text {
        font-size: clamp(15px, 4.2vw, 17px);

        line-height: 1.55;
    }

    .story-section__small-image {
        width: 70vw;
        max-width: 350px;
    }


    /* =========================
       REVIEWS
    ========================= */

    .reviews-section {
        padding-top: 70px;
    }

    .reviews-section__title {
        font-size: clamp(32px, 9vw, 46px);

        line-height: 1;
    }

    .reviews-section__text {
        font-size: clamp(15px, 4.2vw, 17px);

        line-height: 1.5;
    }

    .review {
        flex: 0 0 78vw;

        height: auto;

  
    }

    .reviews-slider__button {
        width: 42px;
        height: 42px;
    }


    /* =========================
       VIDEO
    ========================= */



    .video-section__content {
        width: calc(100% - 30px);
    }

    .video-section__title {
        font-size: clamp(34px, 10vw, 50px);

        line-height: 0.95;

        letter-spacing: -1px;
    }

    .video-section__text {
        font-size: clamp(14px, 4vw, 17px);

        line-height: 1.5;
    }


    /* =========================
       FINAL
    ========================= */

    .final-section {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .final-section__video {
        width: 100%;
    }

    .final-section__content {
        width: 100%;
    }

    .final-section__title {
        font-size: clamp(32px, 9vw, 46px);

        line-height: 1;
    }

    .final-section__text {
        font-size: clamp(15px, 4.2vw, 17px);

        line-height: 1.55;
    }


    /* =========================
       FEEDBACK
    ========================= */

    .feedback-section {
        padding-top: 4px;
        padding-bottom: 21px;
    }

    .feedback-section__title {
        font-size: clamp(32px, 9vw, 46px);

        line-height: 1;
    }

    .feedback-section__text {
        font-size: clamp(15px, 4.2vw, 17px);

        line-height: 1.55;
    }

    .feedback-form__field input,
    .feedback-form__field textarea {
        font-size: 16px;
    }


    /* =========================
       FOOTER
    ========================= */

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}







@media (max-width: 409px) {
    .about-section__title {
        font-size: clamp(32px, 9vw, 25px);
        line-height: 0.98;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 476px) {
    .about-section__text {
        font-size: clamp(15px, 4.3vw, 14px);


    }
}


@media (max-width: 452px) {
    .about-section__text {
        font-size: clamp(11px, 4.3vw, 12px);


    }
}










/* =========================================================
   VERY SMALL MOBILE
   до 380px
========================================================= */

@media (max-width: 380px) {

    .container {
        padding: 0 12px;
    }


    /* HERO */

    .hero {
        padding-top: 40px;
    }

    .hero__title {
        font-size: clamp(10px, 10.5vw, 11px);

    }

    .hero__center-text {
        font-size: clamp(16px, 5vw, 20px);

        letter-spacing: 0.5px;
    }




    /* IMAGE */

    .image-section {
        min-height: 450px;
    }


    /* ABOUT */

    .about-section__title {
        font-size: clamp(29px, 6vw, 37px);
    }




    /* CARDS */

    .card {
        min-height: 430px;
    }

    .card__bottom h3 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .card__bottom p {
        font-size: 14px;
    }


    /* STORY */

    .story-section__title {
        font-size: clamp(29px, 9vw, 37px);
    }

    .story-section__text {
       
    }


    /* REVIEWS */

    .review {
        flex-basis: 84vw;
    }


    /* VIDEO */

    .video-section__title {
        font-size: clamp(30px, 9.5vw, 40px);
    }


    /* FINAL */

    .final-section__title {
        font-size: clamp(29px, 9vw, 37px);
    }


    /* FOOTER */

    .footer__links {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 337px) {
    .about-section__title {
        font-size: clamp(26px, 6vw, 23px);
    }
}

@media (max-width: 650px) {


.story-section__small-image {
aspect-ratio: 2 / 4;
}
}



@media (max-width: 380px) {
    .about-section__text {
        font-size: clamp(7px, 4.3vw, 10px);
    }
}


@media (max-width: 330px) {
    .story-section__title {
        font-size: clamp(22px, 2vw, 24px);
    }
}




@media (max-width: 328px) {
    .about-section__text {
        font-size: clamp(7px, 4.3vw, 9px);
    }
}




@media (max-width: 600px) {    .disp {
        display: block;
    } }







    .animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.is-visible {
    opacity: 1;
}



.animate-on-scroll.is-visible {
    --animate-duration: 2.1s;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.5s;
}

.card:nth-child(3) {
    animation-delay: 0.7s;
}














@media (max-width: 1012px) {
.footer__column a { font-size: 8px;}
}
@media (max-width: 668px) {
.footer__column a { font-size: 15px;}
}





@media (max-width: 700px) {
.feedback-form {
            gap: 34px;
    margin-top: 1px;

}
}



::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}
