/* Общие сбросы и базовые стили */
body,
h1,
h2,
p,
a,
button,
div,
img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}

html,
body {
    height: 100%;
}

@media (max-width: 768px) {
    body {
        height: 100%;
        overflow-x: hidden;
    }
}

body {

    color: black;
    background: #F5F1EB;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;

}

/* Кнопка "Купить часы" */
.fixed-buy-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    background: #FF5722;
    color: #F5F1EB;
    font-weight: bold;
    border-radius: 25px;
    z-index: 1000;
}



.social-icons-home a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-icons-home a img {
    height: 24px;
    width: 24px;
    object-fit: contain;
    opacity: 0.6;
}

.social-icons-home a:hover img {
    opacity: 1;
    filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(-10deg) contrast(120%) brightness(110%);
}

.image-hero-section img {

    width: 100%;
    height: auto;

}

.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    box-sizing: border-box;
    /* new-1 */
    padding: 0 20px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.hero-social img {
    width: 26px;
    height: 26px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
    .hero-background {
        clip-path: inset(0 0% 10% 0);
        /* обрезаем сверху и снизу по 25% */
    }

    .hero-content {
        position: absolute;
        bottom: 40px;
        left: 40px;
        transform: none;
        text-align: left;
        align-items: flex-start;
    }
}

.hero-social img:hover {
    opacity: 1;
}

/* === Mobile view === */
@media (max-width: 768px) {
    .hero-background {
        clip-path: inset(0 25% 0 25%);
        /* обрезаем по бокам */
    }

    .hero-content {
        position: absolute;
        bottom: 40px;
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
    }
}

/* Общий стиль содержимого */
.hero-content {
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.hero-social img {
    width: 26px;
    height: 26px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-social img:hover {
    opacity: 1;
}

/* Блоки с изображениями */
.top-image img,
.bottom-image img {
    width: 100%;
    height: auto;
    padding-top: 80px;

}

/* Кнопки переходов */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    background: #F5F1EB;
}

.nav-buttons a {
    padding: 10px 20px;
    background: black;
    background: #F5F1EB;
    border-radius: 10px;
    font-weight: bold;
}

/* Соц. кнопки */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.social-buttons a {
    background: #eee;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* Карусель */
.hero-buttons-new2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 50px 0 30px 0;
    background: #F5F1EB;
}

.hero-buttons-new2 .hero-btn {
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
    letter-spacing: 1px;
    border: 1px solid rgb(85, 85, 85);
    color: rgb(85, 85, 85);
    padding: 10px 50px;
    font-size: 11px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-buttons-new2 .hero-btn:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {


    .hero-buttons-new2 {
        flex-direction: column;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 50px 0 30px 0;
        background: #F5F1EB;
    }

    .hero-buttons-new2 .hero-btn {
        text-align: center;
        transition: all 0.3s ease;
        background-color: transparent;
        letter-spacing: 1px;
        border: 1px solid rgb(85, 85, 85);
        color: rgb(85, 85, 85);
        padding: 10px 50px;
        font-size: 11px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 300;
        width: 80%;
    }
}

/* Доставка */
.delivery {
    text-align: center;
    background: #e8ded0b8;
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    color: rgb(85, 85, 85);
}

/* Отзывы */
.reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;

}

.reviews img {
    width: 100px;
    border-radius: 12px;
}

/* FAQ */
.faq {
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    background: #F5F1EB;
}

.faq-section {
    position: relative;
    z-index: 1;

}

.faq-question,
.faq-answer {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}


.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;

}

.faq-question {
    width: 100%;
    min-height: 48px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    color: rgb(85, 85, 85);
    letter-spacing: 1px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;

}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    color: rgb(85, 85, 85);
    letter-spacing: 1px;

}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    padding: 0 0;
    font-size: 16px;
    color: rgb(85, 85, 85);
    letter-spacing: 1px;

}

.faq-item.active .faq-question .icon {
    transform: rotate(90deg);
    /* превращаем + в × */
}


.faq-item.active .faq-answer {
    opacity: 1;
    padding: 20px 0 50px 0;
}


.video-hero-section video {
    position: relative;
    width: 100%;

    overflow: hidden;
    margin-bottom: -110px;
    background: #F5F1EB;
}

@media (min-width: 769px) {
    .video-hero-section video {
        position: relative;
        width: 100%;
        height: 75vh;
        overflow: hidden;
        margin-bottom: -110px;
        background: #F5F1EB;
    }
}


.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /*min-width: 100%;*/
    /*min-height: 100%;*/
    width: 100vw;
    /* new-1 */
    height: 100%;
    /* new-1 */
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.video-hero-section .hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;


    z-index: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .video-hero-section .hero-content {
        left: 20px;
        right: 20px;
        text-align: center;
        bottom: 30px;
    }

    .hero-video {
        object-fit: cover;

    }
}

.video-hero-section {
    /* new-1 */
    height: 100dvh;
    background: black;

}

@media (max-width: 768px) {

    .video-hero-section .hero-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
        text-align: center;
        transform: none;
    }


    .video-hero-section {
        position: relative;
        width: 100%;
        min-height: 600px;
        height: 100dvh;
        /* new-1 */
        overflow: hidden;
        background: black;

    }



    .concept-text {
        max-width: 600px;
        margin: 0px auto;
        padding: 10vw 7vw;
        transform: none !important;
        background: #F5F1EB;
        font-weight: 300;
        font-size: 19px;
    }

    .concept-text h2 {
        line-height: 1.8;
        letter-spacing: 1px;
        font-weight: 400;
        color: rgb(85, 85, 85);
        font-size: 1.7rem;
    }

    .concept-text p {
        line-height: 1.6;
        font-size: 16px;
        letter-spacing: 1px;
        font-weight: 300;
        color: rgb(85, 85, 85);
    }

    .concept-image {
        max-width: 100%;
        flex: 1;
        max-width: 600px;
        align-items: center;
        width: 100%;
        transform: translate(0%, -55%);
        transform: none !important;
    }

    /* .hero-video {
        clip-path: inset(0 0 24% 0);
    } */

    .video-hero-section .hero-btn {
        background-color: rgba(250, 245, 239, 0.3);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(250, 245, 239);
        color: white;
        padding: 12px 24px;
        text-transform: uppercase;
        align-items: left;
        border-radius: 4px;
        font-weight: 300;
        font-size: 12px;
    }

    .social-icons-home {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        padding: 15px 0 35px 0;
        background: #F5F1EB;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btn {
        width: 80%;
        text-align: center;
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .video-hero-section .hero-content {
        position: absolute;
        bottom: 2px;
        left: 30px;
        top: 325px;
        transform: none;
        text-align: left;
        align-items: flex-start;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .video-hero-section .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1px;
        color: white;
    }

    .video-hero-section .hero-subtitle {
        font-size: 1.1rem;
        color: white;
        margin-bottom: 25px;
    }

    .video-hero-section .hero-btn {
        background-color: rgba(250, 245, 239, 0.3);
        backdrop-filter: blur(4px);
        border: 0.5px solid rgba(250, 245, 239);
        color: white;
        padding: 12px 24px;
        text-transform: uppercase;
        align-items: left;
        border-radius: 4px;
        font-weight: 300;
        font-size: 12px;
    }

    .hero-buttons {
        justify-content: left;
    }

    .video-hero-section .hero-btn:hover {
        background-color: white;
        color: black;
    }

    .video-hero-section .hero-buttons {
        gap: 10px;
    }

    .hero-video {
        clip-path: inset(0 0 14% 0);
        padding-top: 100 px;

    }

    /*  <!-- Второй баннер --> */
    @media (min-width: 769px) {
        .concept-block {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            background: #F5F1EB;
            flex-wrap: wrap;
        }

        .concept-text {
            flex: 1;
            max-width: 600px;
        }

        .concept-text h2 {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #111;
            margin: 5px 14px 0 0px;
        }

        .concept-text p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin: 5px 14px 0 0px;
        }

        .social-icons-home {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 55px;
            padding: 15px 0 35px 0;
            background: #F5F1EB;
        }

    }


    .concept-image {
        flex: 1;
        max-width: 600px;
    }

    .concept-image img {
        height: auto;
        display: block;
        border-radius: 5px;
    }

    @media (max-width: 768px) {

        .concept-block {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 60px 20px;
            background: #F5F1EB;
            flex-wrap: wrap;
            align-items: center;
            width: 92%;
        }

        .concept-text {
            max-width: 100%;
            background: #F5F1EB;
        }

        .concept-image img {
            width: 96%;
            height: auto;
            display: block;
            border-radius: 8px;
            align-items: center;
        }

        .concept-text h2 {
            font-size: 1.8rem;
            margin: 6px 12px;
        }

        .concept-text p {
            font-size: 3rem;
            font-size: 3rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 2px;
            margin: 6px 12px;

        }
    }

    @media (max-width: 768px) {
        .concept-block {
            flex-direction: column;
        }

        .concept-text {
            width: 100%;
            padding: 0 5vw;
            box-sizing: border-box;
        }

        .concept-image {
            width: 100%;
        }
    }

    .hero-buttons-new {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 0 0 20px 0;
        background: #F5F1EB;
    }

    .hero-buttons-new .hero-btn {
        text-align: center;
        transition: all 0.3s ease;
        background-color: transparent;
        letter-spacing: 1px;
        border: 1px solid rgb(85, 85, 85);
        color: rgb(85, 85, 85);
        padding: 10px 50px;
        font-size: 11px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 300;
    }

    .hero-buttons-new .hero-btn:hover {
        background-color: #333;
        color: #fff;
    }




    /* Анимация появления снизу вверх */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Мобильная адаптация */
    @media (max-width: 768px) {


        .hero-buttons-new {
            flex-direction: column;
            align-items: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin: 30px 0;
        }

        .hero-buttons-new .hero-btn {
            text-align: center;
            transition: all 0.3s ease;
            background-color: transparent;
            letter-spacing: 1px;
            border: 1px solid rgb(85, 85, 85);
            color: rgb(85, 85, 85);
            padding: 10px 50px;
            font-size: 11px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 300;
            width: 80%;
        }
    }


}

/* Мобильная адаптация */
@media (max-width: 768px) {


    .hero-buttons-new {
        flex-direction: column;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 40px 0 20px 0;
        background: #F5F1EB;
    }

    .hero-buttons-new .hero-btn {
        text-align: center;
        transition: all 0.3s ease;
        background-color: transparent;
        letter-spacing: 1px;
        border: 1px solid rgb(85, 85, 85);
        color: rgb(85, 85, 85);
        padding: 10px 50px;
        font-size: 11px;
        border-radius: 3px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 300;
        width: 80%;
    }
}

@media screen and (max-height: 480px) {
    .video-hero-section {
        position: relative;
        min-height: 480px;
        height: 100dvh;
    }

    .hero-content {
        position: static;
        transform: none;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-video {
        position: absolute;
        top: 50%;
        /*left: 50%;*/
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 100%;

        object-fit: cover;
        z-index: 0;
        /*pointer-events: none; */
    }

    .video-hero-section video {
        height: 172vh;
    }

    .video-hero-section .hero-content {
        position: absolute;
        bottom: 2px;
        left: 44px;
        top: 210px;
        transform: none;
        text-align: left;
        align-items: flex-start;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .how-it-works-wrapper {
        background: #e8ded0;
        padding: 0;
    }

    .how-it-works {
        background: #e8ded096;
        padding: 12vw 5vw 6vw 4vw;
        max-width: 800px;
        margin: 0 auto;
    }

    .how-it-works h2 {
        margin-bottom: 50px;
        text-align: center;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
        color: rgb(85, 85, 85);
    }

    .how-it-works p {
        font-size: 28px;
        text-align: center;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 300;
        color: rgb(85, 85, 85);
    }

    .steps {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0px;
        /* убрано лишнее пространство */
        padding-left: 40px;


    }

    .step p {
        line-height: 34px;
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        color: #555;
        padding-top: 2vw;
    }

    .step {
        display: flex;
        /* align-items: center;*/
        /* 👈 центр по вертикали */
        gap: 20px;
        min-height: 60px;
        position: relative;
        opacity: 0;
        transform: translateY(20vw);
        color: rgb(85, 85, 85);
        transition: opacity 0.5s ease, transform 0.5s ease;

    }

    .step.visible {
        opacity: 1;
        transform: translateY(0);
    }


    .circle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        text-align: center;
        line-height: 34px;
        background: #e8ded000;
        z-index: 1;
        border: 2px solid #888585;
        color: #888585;
        flex-shrink: 0;
        font-weight: 500;
    }

    .circle-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 34px;
        flex-shrink: 0;
    }

    .line {
        width: 2px;
        flex-grow: 1;
        background: #888585;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.8s ease;
        height: 11vw;
    }

    .step.visible .line {
        transform: scaleY(1);
    }


}

@media (max-width: 768px) {
    .how-it-works {
        background: #e8ded096;
        padding: 12vw 5vw 6vw 4vw !important;
        max-width: 800px;
        margin: 0 auto;
    }

    .how-it-works h2 {
        margin-bottom: 50px;
        text-align: center;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
        color: rgb(85, 85, 85);
    }

    .how-it-works p {
        font-size: 28px;
        text-align: center;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 300;
        color: rgb(85, 85, 85);
    }

    .steps {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0px;
        /* убрано лишнее пространство */
        padding-left: 40px;


    }

    .step p {
        line-height: 34px;
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        color: #555;
        padding-top: 2vw;
        line-height: 31px;
    }

    .step {
        display: flex;
        /* align-items: center;*/
        /* 👈 центр по вертикали */
        gap: 20px;
        min-height: 60px;
        position: relative;
        opacity: 0;
        transform: translateY(20vw);
        color: rgb(85, 85, 85);
        transition: opacity 0.5s ease, transform 0.5s ease;

    }

    .step.visible {
        opacity: 1;
        transform: translateY(0);
    }


    .circle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        text-align: center;
        line-height: 34px;
        background: #e8ded000;
        z-index: 1;
        border: 2px solid #888585;
        color: #888585;
        flex-shrink: 0;
        font-weight: 500;
    }

    .circle-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 34px;
        flex-shrink: 0;
    }

    .line {
        width: 2px;
        flex-grow: 1;
        background: #888585;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.8s ease;
        height: 11vw;
    }

    .step.visible .line {
        transform: scaleY(1);
    }


}

.how-it-works-wrapper {
    background: #e8ded0b8;
    padding: 0;
    position: relative;

}

.how-it-works {
    background: #f2f2f200;
    padding: 4vw 3vw 4vw 4vw;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.how-it-works h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgb(85, 85, 85);
}

.how-it-works p {
    font-size: 28px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    color: rgb(85, 85, 85);
}

.steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* убрано лишнее пространство */
    padding-left: 40px;


}

.step p {
    line-height: 34px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    padding-top: 1vw;
}

.step {
    display: flex;
    /* align-items: center;*/
    /* 👈 центр по вертикали */
    gap: 20px;
    min-height: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(20vw);
    color: rgb(85, 85, 85);
    transition: opacity 0.5s ease, transform 0.5s ease;

}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}


.circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-align: center;
    line-height: 31px;
    background: #e8ded000;
    z-index: 1;
    border: 2px solid #888585;
    color: #888585;
    flex-shrink: 0;
    font-weight: 500;
}

.circle-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 34px;
    flex-shrink: 0;
}

.line {
    width: 2px;
    flex-grow: 1;
    background: #888585;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease;
    height: 2vw;
}

.step.visible .line {
    transform: scaleY(1);
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 16px;
    background: #fff;

    /* Центрирование контента */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}