:root {
    --black: #000;
    --white: #fff;
    --blue: #1a3a5a;
    --gray-light: #f9f9f9;
}

/* --- MARQUEE (Бігуча лінія) --- */
.marquee {
    background-color: #000000; /* Чорний фон як в оригіналі */
    color: #ffffff;           /* Білий колір тексту */
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    user-select: none;
}

.marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite; /* 30 секунд для плавності */
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 40px;          /* Відстань між фразами */
    padding-right: 40px; /* Такий самий відступ в кінці групи */
}

.marquee span {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Крапка-розділювач */
.marquee .dot {
    color: #555555; /* Сірий колір для крапки */
    font-size: 20px;
}

/* Анімація: зсуваємо рівно на 50%, щоб цикл був непомітним */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.4; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.desktop-only { display: flex; }

/* 1. Promo & Header */
.top-bar { background: #000; color: #fff; text-align: center; padding: 10px; font-weight: 800; font-size: 13px; }
.sub-header { background: #fff; border-bottom: 1px solid #eee; padding: 12px 0; }
.sub-header__inner { display: flex; justify-content: space-between; align-items: center; }
.flag { width: 22px; margin-right: 8px; }

.header { padding: 15px 0; background: #fff; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #f0f0f0; }
.header__inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }

.nav-list { display: flex; gap: 30px; list-style: none; }
.nav-list a { text-decoration: none; color: #000; font-weight: 700; font-size: 14px; text-transform: uppercase; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.cart-icon img { width: 26px; }

/* BURGER TO X ANIMATION */
.burger-toggle {
    display: none; width: 30px; height: 22px; position: relative; background: none; border: none; cursor: pointer;
}
.line {
    display: block; width: 100%; height: 2px; background: #000; position: absolute; left: 0; transition: 0.3s;
}
.line:nth-child(1) { top: 0; }
.line:nth-child(2) { top: 10px; }
.line:nth-child(3) { top: 20px; }

/* Клас для стану "Закрити" (Х) */
.burger-toggle.open .line:nth-child(1) { transform: rotate(45deg); top: 10px; }
.burger-toggle.open .line:nth-child(2) { opacity: 0; }
.burger-toggle.open .line:nth-child(3) { transform: rotate(-45deg); top: 10px; }

/* 2. Hero PC */
.hero { padding: 50px 0; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.hero__title { font-size: 44px; font-weight: 900; line-height: 1.1; margin: 15px 0; }
.hero__title span { font-size: 32px; color: #666; font-weight: 400; }

.check-circle { 
    width: 22px; height: 22px; background: var(--blue); border-radius: 50%; position: relative; display: inline-block; margin-right: 12px; flex-shrink: 0;
}
.check-circle::after { content: '✓'; color: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 13px; }
.hero__checklist { list-style: none; margin: 25px 0; }
.hero__checklist li { display: flex; align-items: center; margin-bottom: 12px; font-weight: 600; }

.btn-cta { 
    display: block; width: 100%; max-width: 450px; background: #000; color: #fff; text-align: center;
    padding: 24px; font-weight: 900; font-size: 20px; border-radius: 8px; text-decoration: none; margin: 30px 0;
}

.trust-icons-row { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 30px; }
.trust-item { text-align: center; flex: 1; font-size: 10px; font-weight: 800; color: #444; }
.trust-item img { height: 35px; margin-bottom: 8px; }

/* 3. Slider PC */
.product-gallery { display: flex; gap: 15px; height: auto; align-items: flex-start; }
.gallery__main { flex: 1; position: relative; border-radius: 15px; overflow: hidden; background: transparent; border: 1px solid #eee; }
.gallery__viewport img, .gallery__viewport video { width: 100%; height: 100%; object-fit: cover; }
.gallery__sidebar { width: 85px; display: flex; flex-direction: column; gap: 10px; }
.thumb { width: 100%; height: 75px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; overflow: hidden; opacity: 0.6; }
.thumb.active { opacity: 1; border-color: #000; }

.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.7); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; font-size: 20px; }
.nav-arrow.prev { left: 15px; }
.nav-arrow.next { right: 15px; }

/* --- MOBILE STYLES --- */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    .burger-toggle { display: block; }

    /* Мобільне меню */
    .main-nav {
        position: fixed; top: 65px; left: 0; width: 100%; background: #fff;
        height: 0; overflow: hidden; transition: 0.4s ease-in-out; z-index: 999;
    }
    .main-nav.active { height: auto; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .nav-list { flex-direction: column; }
    .nav-list li { border-bottom: 1px solid #f0f0f0; width: 100%; text-align: center; }
    .nav-list li a { display: block; padding: 20px; font-size: 18px; font-weight: 800; }

    /* Порядок у Hero */
    .hero__grid { display: flex; flex-direction: column; }
    .hero__visual { order: 1; width: 100%; margin-bottom: 20px; }
    .product-gallery { height: auto; }
    .gallery__main { aspect-ratio: 1/1; }
    .hero__content { order: 2; }
    
    .social-proof-box { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 15px; margin: 20px 0; text-align: center; }
    .trust-icons-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
/*черта */


/* --- Problems Section --- */
.problems {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 5px;
    background: #444;
    margin: 25px auto 0;
    border-radius: 3px;
}

/* Grid System */
.problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Тютелька в тютельку 3 колонки */
    gap: 25px;
}

.problem-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    /* Легка тінь як на скріншоті */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.problem-card__image {
    width: 100%;
    /* Важливо: пропорція зображення, щоб всі були однакові */
    aspect-ratio: 4 / 3; 
    overflow: hidden;
}

.problem-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Фото заповнює блок без деформації */
    transition: transform 0.5s ease;
}

.problem-card:hover .problem-card__image img {
    transform: scale(1.05);
}

.problem-card__content {
    padding: 25px;
    flex-grow: 1;
}

.problem-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-icon {
    width: 28px;
    height: auto;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.problem-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Адаптивність для планшетів та мобілок */
@media (max-width: 992px) {
    .problems__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problems__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-title {
        font-size: 28px;
    }
}

/* --- Features Choice Section --- */
.features-choice {
    background-color: #f9f9f9; /* Той самий сірий фон */
    padding: 100px 0;
}

.features-choice__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Центральна колонка трохи ширша для дошки */
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.features-choice__col {
    display: flex;
    flex-direction: column;
    gap: 45px; /* Великі відступи між іконками як на макеті */
}

.feat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feat-card__icon {
    width: 44px; /* Оптимальний розмір іконок */
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Центральна дошка */
.features-choice__center {
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-board {
    max-width: 100%;
    height: auto;
    /* Тінь робимо м'якою, щоб дошка "парила" */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
    animation: floatBoard 6s ease-in-out infinite;
}

/* Анімація левітації */
@keyframes floatBoard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Адаптивність */
@media (max-width: 1024px) {
    .features-choice__grid {
        grid-template-columns: 1fr; /* На планшетах все в одну колонку */
        text-align: center;
    }
    .features-choice__center {
        order: -1; /* Дошка зверху на мобілках */
        margin-bottom: 40px;
    }
    .feat-card {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    .features-choice__col {
        gap: 40px;
    }
}
/* --- Craftsmanship Section --- */
.craftsmanship {
    padding: 100px 0;
    background-color: #ffffff;
}

.craft-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.craft-row:last-child {
    margin-bottom: 0;
}

.craft-row--reverse {
    flex-direction: row-reverse;
}

.craft-row__content {
    flex: 1;
}

.craft-row__visual {
    flex: 1;
    border-radius: 24px; /* Красиві великі радіуси як на фото */
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1); /* Глибока м'яка тінь */
}

.craft-media {
    width: 100%;
    display: block;
    object-fit: cover;
}

.craft-row__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.craft-row__accent-line {
    width: 50px;
    height: 5px;
    background-color: #666; /* Сіра лінія під заголовком */
    margin-bottom: 25px;
}

.craft-row__text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Benefits List in Row 3 */
.craft-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.craft-benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.craft-benefit__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.craft-benefit__info h4 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.craft-benefit__info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* Адаптивність */
@media (max-width: 992px) {
    .craft-row, .craft-row--reverse {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    .craft-row__visual {
        order: -1; /* Відео зверху на телефонах */
        width: 100%;
    }
    .craft-row__title {
        font-size: 26px;
    }
}
/* --- Invest Section --- */
.invest-lifetime {
    background-color: #f9f9f9; /* Світло-сірий фон */
    padding: 100px 0 80px;
}

.invest-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-top: 25px;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки на десктопі */
    gap: 20px;
    margin-top: 50px;
}

.invest-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.invest-card__icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0; /* Світло-сірий кружечок для іконки */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.invest-card__icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.invest-card h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #000;
    min-height: 48px; /* Щоб заголовки були в одну лінію */
}

.invest-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивність */
@media (max-width: 1100px) {
    .invest-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 на планшетах */
    }
}
@media (max-width: 600px) {
    .invest-grid {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }
    .invest-card h3 {
        min-height: auto;
    }
}
/* --- Global Section Style --- */
.comparison-clean {
    background-color: #f8f8f8;
    padding: 80px 0 100px;
    overflow: hidden;
}

.comp-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
}

/* --- GRID SYSTEM: 3 КОЛОНКИ (1.5 : 1 : 1) --- */
.comp-grid-header, .comp-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
}

/* --- ШАПКА --- */
.comp-grid-header {
    margin-bottom: 20px;
    align-items: flex-end; /* Вирівнювання по низу в шапці */
}

.comp-italic-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a3a5a;
    line-height: 1.2;
    font-style: italic;
    margin: 0;
}

/* Контейнер дошки */
.comp-product-img-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.img-titanium-fixed {
    max-width: 160px !important; /* Зменшили розмір (було 260) */
    transform: rotate(-8deg) translateY(0) !important; /* Вирівняли кут (було -12) */
    margin-left: 20px; /* Трохи відсунули від тексту вліво */
}

/* Картка конкурента */
.competitor-grey-box {
    background: #ececec;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: -1px; /* Щоб з'єднати з таблицею візуально */
}

.competitor-grey-box img {
    width: 45px;
    height: auto;
}

.competitor-grey-box span {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
}

/* --- ТАБЛИЦЯ --- */
.comp-table-body {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comp-table-row {
    padding: 20px 25px;
}

/* Зебра: Сірий фон для кожного другого рядка */
.comp-table-row:nth-child(even) {
    background-color: #f6f6f6;
}

.comp-row-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.comp-row-val {
    display: flex;
    justify-content: center;
}

.icon-s {
    width: 24px;
    height: 24px;
}

/* --- АДАПТИВНІСТЬ --- */
@media (max-width: 992px) {
    .comp-italic-title { font-size: 24px; }
    .img-titanium-fixed { max-width: 200px; }
}

@media (max-width: 768px) {
    .comp-grid-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .comp-product-img-wrap { order: 2; }
    .comp-grid-header__competitor { order: 3; }
    
    .img-titanium-fixed {
        max-width: 180px;
        transform: rotate(-8deg) translateY(0);
    }
    
    .comp-table-row {
        grid-template-columns: 1.2fr 0.5fr 0.5fr; /* Більше місця для тексту на мобілці */
        padding: 15px 10px;
    }
    
    .comp-row-label { font-size: 12px; }
}
/* --- REVIEWS SATISFACTION --- */
/* --- СЕКЦІЯ ВІДГУКІВ: ПОВНЕ ВИПРАВЛЕННЯ --- */
.reviews-satisfaction {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden; /* Щоб слайдер не розтягував екран */
}

.reviews-top-text {
    max-width: 850px;
    margin: 25px auto 50px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Контейнер, який дозволяє скрол на мобілці */
.reviews-display-area {
    width: 100%;
}

/* Оболонка карток: на ПК це ГРИД (3 колонки) */
.reviews-row-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
}

.review-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000;
}

.review-card__stars {
    margin-bottom: 15px;
}

.review-card__stars img {
    height: 18px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.review-card__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 0 10px;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ (СЛАЙДЕР) --- */
@media (max-width: 992px) {
    .reviews-display-area {
        overflow-x: auto; /* Вмикаємо горизонтальний скрол */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 30px;
        margin: 0 -20px; /* Вихід за межі контейнера для краси */
        padding-left: 20px;
    }

    .reviews-row-wrapper {
        display: flex; /* На мобілці ГРИД змінюємо на ФЛЕКС (в лінію) */
        grid-template-columns: none;
        width: max-content; /* Контейнер розтягується під картки */
        gap: 20px;
    }

    .review-card {
        width: 300px; /* Фіксована ширина картки на мобільці */
        scroll-snap-align: center;
        flex-shrink: 0; /* Не дає карткам стискатися */
    }

    /* Стиль скролбару (тоненька лінія внизу) */
    .reviews-display-area::-webkit-scrollbar {
        height: 4px;
    }
    .reviews-display-area::-webkit-scrollbar-thumb {
        background: #000;
        border-radius: 10px;
    }
}

/* --- USER REVIEWS SECTION --- */
.user-reviews {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Блок загального рейтингу */
.rating-summary {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.rating-summary__score {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #000;
}

.rating-summary__count {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

/* Смужки рейтингу */
.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating-bar__bg {
    flex-grow: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: #ffcc00; /* Золотий колір зірок */
    border-radius: 10px;
}

.rating-summary__recommends p {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Елемент списку відгуків */
.review-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    transition: opacity 0.4s ease;
}

.review-item__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-item__name {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
}

.review-item__verified {
    font-size: 12px;
    color: #27ae60;
    font-weight: 700;
    display: block;
}

.review-item__recommend {
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.review-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-item__date {
    font-size: 13px;
    color: #999;
}

.review-item__title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
}

.review-item__text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.review-item__photo {
    width: 140px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #eee;
}

/* Голосування за відгук */
.review-vote {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #777;
}

.vote-btns {
    display: flex;
    gap: 8px;
}

.vote-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.vote-btn:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

.vote-btn.active-up { background: #e8f5e9; border-color: #2e7d32; color: #2e7d32; }
.vote-btn.active-down { background: #ffebee; border-color: #c62828; color: #c62828; }

/* Кнопка "Завантажити ще" */
.reviews-actions {
    text-align: center;
    margin-top: 40px;
}

.btn--secondary {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 45px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.btn--secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Логіка приховування */
.review-item--hidden {
    display: none;
    opacity: 0;
}

.review-item--show {
    display: grid !important;
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптивність */
@media (max-width: 992px) {
    .rating-summary { grid-template-columns: 1fr; gap: 30px; text-align: center; padding: 30px 20px; }
    .review-item { grid-template-columns: 1fr; gap: 20px; text-align: left; }
    .review-item__side { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; }
    .review-item__avatar { margin-bottom: 0; }
}


/* --- AWARD BANNER --- */
.award-banner {
    padding: 60px 0;
    background-color: #fff;
}

.award-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fcfcfc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 60px;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.award-card__badge {
    flex: 0 0 120px;
}

.award-card__badge img {
    width: 100%;
    height: auto;
}

.award-card__content {
    flex: 1;
    text-align: center;
}

.review-card__stars--center {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.award-card__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.award-card__source {
    font-size: 18px;
    font-weight: 600;
    color: #718096;
}

.award-card__visual {
    flex: 0 0 180px;
}

.award-card__visual img {
    width: 100%;
    transform: rotate(5deg); /* Легкий нахил дошки для динаміки */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* --- EXPERT SECTION --- */
.expert {
    background-color: #f8f8f8; /* Світло-сірий фон */
    padding: 100px 0;
}

.expert__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.expert__title {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

.expert__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
}

.expert__line {
    width: 60px;
    height: 4px;
    background-color: #2d3748;
    margin: 25px 0;
    border-radius: 2px;
}

.expert__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 35px;
}

.expert__text p {
    margin-bottom: 20px;
}

.expert__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.expert__name {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.expert__signature {
    max-width: 200px;
}

.expert__img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* --- АДАПТИВНІСТЬ --- */
@media (max-width: 992px) {
    .award-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .award-card__visual {
        order: -1; /* Дошка зверху на мобільних */
        flex: 0 0 150px;
    }

    .expert__grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .expert__line {
        margin: 25px auto;
    }

    .expert__visual {
        order: -1; /* Фото експерта зверху на мобільних */
    }

    .expert__signature {
        margin: 0 auto;
    }
    
    .expert__title {
        font-size: 30px;
    }
}
/* --- СЕКЦІЯ FAQ --- */
.faq { padding: 80px 0; background: #fff; }
.faq__container { max-width: 800px; margin: 0 auto 60px; }

.faq__item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq__question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    color: #1a1a1a;
}

.faq__icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: transform 0.3s ease;
}

.faq__icon::before { width: 100%; height: 2px; top: 7px; left: 0; }
.faq__icon::after { width: 2px; height: 100%; top: 0; left: 7px; }

/* Активний стан FAQ */
.faq__item.active .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__item.active .faq__question { background-color: #fcfcfc; }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-content {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* --- TRUST BANNER (Гарантія) --- */
.trust-banner {
    display: flex;
    align-items: center;
    padding: 40px;
    background-color: #f9fafb;
    border: 1px solid #eee;
    border-radius: 20px;
    gap: 30px;
}

.trust-banner__badge { flex: 0 0 100px; }
.trust-banner__badge img {
    width: 100%;       /* Обмежує картинку шириною контейнера */
    height: auto;
    display: block;
}
.trust-banner__content { flex: 1; }
.trust-banner__content h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.trust-banner__visual { flex: 0 0 120px; }

/* --- CTA SECTION --- */
.cta-section { padding: 100px 0; background: #f8f8f8; }
.cta-card {
    background: #fff;
    border: 2px dashed #1a3a5a; /* Пунктирна синя рамка */
    border-radius: 24px;
    overflow: hidden;
}

.cta-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; }
.cta-visual img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 50px; text-align: center; }

.cta-top-tag { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 800; margin-bottom: 20px; }
.cta-flag { width: 20px; }
.cta-title { font-size: 32px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.cta-description { font-size: 15px; color: #555; margin-bottom: 30px; }

.cta-social-proof { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 25px; }
.cta-status { font-size: 13px; font-weight: 700; color: #27ae60; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; background: #27ae60; border-radius: 50%; }

.btn--cta {
    display: block; width: 100%; background: #000; color: #fff; padding: 22px;
    font-size: 20px; font-weight: 900; border-radius: 12px; text-decoration: none; transition: 0.3s;
}
.btn--cta:hover { background: #1a3a5a; transform: translateY(-3px); }

/* --- FOOTER --- */
/* --- FOOTER STYLES --- */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 40px;
    border-top: 1px solid #222;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Робимо дві колонки на ПК */
    gap: 50px;
}

.footer__logo {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}

.footer__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__text {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    max-width: 450px;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 15px;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.footer__links a:hover {
    color: #26bcc1; /* Бірюзовий акцент при наведенні */
}

.footer__bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* МОБІЛЬНА АДАПТАЦІЯ ФУТЕРА */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr; /* Все в одну колонку */
        text-align: center;
    }
    
    .footer__text {
        margin: 0 auto;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* --- STICKY BOTTOM BAR --- */
/* ФІКС НИЖНЬОЇ ПАНЕЛІ (КОМПАКТНІСТЬ) */
.sticky-bar {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: #000 !important;
    color: #fff !important;
    padding: 8px 0; /* Зменшено відступ */
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    height: 65px; /* Фіксована невелика висота */
    display: flex;
    align-items: center;
}

.sticky-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sticky-bar__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar__product {
    width: 40px; /* Компактний розмір */
    height: 40px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-bar__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.stars-gold {
    color: #ffcc00;
    font-size: 14px; /* Фіксований розмір зірок */
    white-space: nowrap;
}

.rating-text {
    font-size: 12px;
    color: #ccc;
    white-space: nowrap;
}

.sticky-bar__title {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.btn--sticky {
    background-color: #fff !important;
    color: #000 !important;
    padding: 8px 15px !important; /* Менша кнопка */
    font-size: 12px !important;
    font-weight: 900;
    border-radius: 4px;
    text-decoration: none;
}

/* МОБІЛЬНИЙ ФІКС ДЛЯ STICKY */
@media (max-width: 600px) {
    .sticky-bar { height: 60px; }
    .rating-text, .sticky-bar__title { display: none; } /* Ховаємо текст на мобілці, лишаємо тільки зірки і кнопку */
    .btn--sticky { padding: 10px 12px !important; font-size: 11px !important; }
}

/* --- TRUST BAR (ІКОНКИ ГОРИЗОНТАЛЬНО) --- */
.trust-bar {
    background-color: #f8f8f8;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.trust-bar__grid {
    display: flex; /* Тільки flex для горизонтального ряду */
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.trust-bar__item img {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
}

.trust-bar__item span {
    font-size: 11px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .trust-bar__grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2х2 на мобільці */
    }
}

/* --- СТІКІ БАР (ВИПРАВЛЕНО) --- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000 !important; /* Чорний колір */
    color: #fff !important;
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

.sticky-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-bar__product {
    width: 50px; /* Чіткий розмір для картинки */
    height: 50px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.sticky-bar__product img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn--sticky {
    background-color: #fff !important;
    color: #000 !important;
    padding: 12px 25px;
    font-weight: 900;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* ============================================================
   ФІНАЛЬНЕ ВИПРАВЛЕННЯ СЛАЙДЕРА ВІДГУКІВ (MOBILE)
   ============================================================ */

/* --- СЛАЙДЕР ДЛЯ СЕКЦІЇ PROBLEMS (MOBILE) --- */
@media (max-width: 992px) {
    /* 1. Перетворюємо сітку на гнучкий рядок */
    .problems__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Забороняємо перенос карток вниз */
        overflow-x: auto !important;    /* Вмикаємо горизонтальну прокрутку */
        scroll-snap-type: x mandatory;   /* Ефект "примагнічування" картки до центру */
        gap: 15px;
        padding: 10px 20px 30px 20px !important; /* Відступи всередині для краси */
        margin-left: -20px; /* Вихід за межі контейнера, щоб картки йшли від краю до краю */
        margin-right: -20px;
        -webkit-overflow-scrolling: touch; /* Плавність на iPhone */
    }

    /* 2. Налаштовуємо ширину кожної картки */
    .problem-card {
        flex: 0 0 85% !important; /* Картка займає 85% екрану, щоб було видно шматочок наступної */
        min-width: 280px;
        scroll-snap-align: center; /* Центрування картки при зупинці скролу */
        background: #fff;
    }

    /* 3. Стиль смуги прокрутки внизу (як на твоїх скріншотах) */
    .problems__grid::-webkit-scrollbar {
        height: 6px;
    }
    .problems__grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        margin: 0 40px; /* Смужка не на всю ширину */
        border-radius: 10px;
    }
    .problems__grid::-webkit-scrollbar-thumb {
        background: #888; /* Сірий колір повзунка */
        border-radius: 10px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* --- STICKY MOBILE BAR STYLES --- */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    padding: 10px 15px;
    z-index: 10001; /* Поверх всього */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(105%); /* Спочатку захована внизу */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none; /* Тільки для мобілок */
}

.sticky-mobile-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-mobile-bar__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-mobile-bar__product {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 6px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-mobile-bar__product img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sticky-mobile-bar__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.stars-gold {
    color: #ffcc00;
    font-size: 12px;
}

.rating-val {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.sticky-mobile-bar__brand {
    color: #fff; /* Блакитний колір як на скріншоті */
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 2px;
}

.btn-sticky-white {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
    transition: 0.2s;
}

/* Вмикаємо тільки на мобілках */
@media (max-width: 992px) {
    .sticky-mobile-bar {
        display: block;
    }
}

/* Клас, який додасть JS при скролі */
.sticky-mobile-bar.is-visible {
    transform: translateY(0);
}


/* --- РОЗПОДІЛ ЛИПКИХ ПАНЕЛЕЙ --- */

/* 1. На ПК версії (більше 992px) приховуємо МОБІЛЬНУ плашку */
@media (min-width: 993px) {
    .sticky-mobile-bar {
        display: none !important;
    }
}

/* 2. На МОБІЛЬНІЙ версії (менше 992px) приховуємо СТАРУ плашку */
@media (max-width: 992px) {
    .sticky-bar {
        display: none !important; /* Ховаємо стару кнопку, яка тобі не подобалась */
    }
    
    .sticky-mobile-bar {
        display: block; /* Гарантуємо, що нова плашка працює */
    }
}



/* 1. Обмін місцями: на ПК текст зліва, на мобільці слайдер зверху */
@media (min-width: 993px) {
    .hero__grid {
        grid-template-columns: 1.2fr 1fr; /* Текст трохи ширший за слайдер */
    }
}

@media (max-width: 992px) {
    .hero__visual {
        order: -1 !important; /* Слайдер завжди перший на мобільних */
    }
}

/* 2. Анімація кнопки (сірий колір при наведенні) */
.btn-cta:hover {
    background-color: #555555 !important;
    transform: translateY(-2px);
    transition: 0.3s ease;
}

/* 3. Вирівнювання іконок довіри (іконка рівно над текстом) */
.trust-icons-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column; /* Вертикальний стек */
    align-items: center;    /* Центрування по горизонталі */
    text-align: center;
    flex: 1;
}

.trust-item img {
    height: 35px;
    width: auto;
    margin-bottom: 10px; /* Відступ між іконкою та текстом */
}

.trust-item span {
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

/* 4. Фікс слайдера (прибираємо зайві рамки) */
.thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ==================================================
   ИСПРАВЛЕНИЕ БЛОКА СКИДКИ (CTA) ДЛЯ МОБИЛЬНЫХ
   Вставить в самый низ файла style.css
   ================================================== */

@media (max-width: 992px) {
    /* 1. Меняем сетку на колонку (элементы друг под другом) */
    .cta-grid {
        display: flex;
        flex-direction: column;
    }

    /* 2. Настраиваем картинку: делаем её большой и ставим наверх */
    .cta-visual {
        width: 100%;       /* Ширина на весь блок */
        height: 350px;     /* Фиксированная высота, чтобы картинка была КРУПНОЙ как в оригинале */
        order: -1;         /* Перемещаем картинку НАВЕРХ, перед текстом */
        border-bottom: 2px dashed #1a3a5a; /* (Опционально) Разделитель между фото и текстом, если нужно */
        margin-bottom: 0;
    }

    .cta-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Картинка заполняет область без искажений */
        object-position: center;
    }

    /* 3. Уменьшаем отступы внутри текста, чтобы влезло в экран */
    .cta-content {
        padding: 30px 20px;
        text-align: center;
    }

    /* 4. Адаптируем заголовок */
    .cta-title {
        font-size: 28px; /* Чуть меньше, чем на ПК, но все еще крупно */
        margin-bottom: 15px;
        line-height: 1.2;
    }

    /* 5. Кнопка на всю ширину */
    .btn--cta {
        width: 100%;
        padding: 20px;
        font-size: 18px;
    }
}

/* =========================================================
   ИСПРАВЛЕНИЕ БЛОКОВ "ГАРАНТИЯ" И "НАГРАДА" ДЛЯ МОБИЛЬНЫХ
   Вставить в самый низ style.css
   ========================================================= */

@media (max-width: 992px) {
    
    /* --- 1. ИСПРАВЛЕНИЕ БЛОКА ГАРАНТИИ (Trust Banner) --- */
    .trust-banner {
        flex-direction: column; /* Ставим элементы вертикально */
        text-align: center;     /* Весь текст по центру */
        padding: 40px 25px;     /* Удобные отступы */
        gap: 20px;
    }

    /* Скрываем картинку доски справа (в оригинале на телефоне её нет) */
    .trust-banner__visual {
        display: none;
    }

    /* Центрируем печать "100% Guarantee" */
    .trust-banner__badge {
        width: 110px;           /* Оптимальный размер печати */
        margin: 0 auto;         /* Выравнивание по центру */
        flex: none;             /* Запрещаем сжиматься */
    }

    /* Настройка заголовка */
    .trust-banner__content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    /* --- 2. ИСПРАВЛЕНИЕ БЛОКА НАГРАДЫ (Award Banner) --- */
    .award-card {
        flex-direction: column; /* Вертикальный стек */
        text-align: center;     /* Центрируем текст */
        padding: 40px 25px;
        gap: 10px;
    }

    /* Скрываем картинку доски (она мешает тексту на телефоне) */
    .award-card__visual {
        display: none;
    }

    /* Центрируем значок награды (Award Badge) */
    .award-card__badge {
        width: 120px;
        margin: 0 auto 15px;    /* Центр + отступ снизу */
        flex: none;
    }

    /* Убеждаемся, что звезды тоже по центру */
    .review-card__stars--center {
        justify-content: center;
    }
}