/* ========== ROOT & RESET ========== */
:root {
    --lavender: #6B4F8E;
    --lavender-dark: #4A3066;
    --lavender-light: #9B72CF;
    --lilac: #C9B8E8;
    --lilac-soft: #E8E0F5;
    --cream: #FDF6EC;
    --cream-dark: #F5ECD8;
    --sage: #7A9E7E;
    --sage-dark: #5C7D60;
    --text: #2D1B4E;
    --text-muted: #7B6898;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(107,79,142,0.12);
    --shadow-lg: 0 12px 48px rgba(107,79,142,0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.2; }

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

img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.section-pad { padding: 40px 0; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--lavender);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107,79,142,0.35);
}
.btn-primary:hover { background: var(--lavender-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,79,142,0.45); }

.btn-outline {
    background: transparent;
    color: var(--lavender);
    border-color: var(--lavender);
}
.btn-outline:hover { background: var(--lavender); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 24px; }
.section-badge {
    display: inline-block;
    background: var(--lilac-soft);
    color: var(--lavender);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-inline: auto;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: var(--cream);
}
.navbar.scrolled {
    background: rgba(253,246,236,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(107,79,142,0.12);
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lavender);
    margin-right: auto;
}
.logo-icon { font-size: 1.5rem; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}
.nav-links a:hover { background: var(--lilac-soft); color: var(--lavender); }
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--lavender);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-phone:hover { background: var(--lavender-dark); }
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--lavender); border-radius: 2px; transition: var(--transition); }

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--lilac-soft);
    padding: 3px;
    border-radius: 50px;
    flex-shrink: 0;
}
.lang-btn {
    padding: 5px 11px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.lang-btn.active {
    background: var(--lavender);
    color: #fff;
    box-shadow: 0 2px 8px rgba(107,79,142,0.3);
}

/* Mobile: hide phone button */
@media (max-width: 640px) {
    .nav-phone { display: none !important; }
}

/* ========== HERO ========== */
.hero {
    display: none; /* old hero replaced by hero-v2 */
}

/* ========== HERO V2 (mobile-first) ========== */
.hero-v2 {
    background: var(--cream);
    padding-top: 58px; /* offset fixed navbar */
    border-bottom: 1px solid var(--lilac-soft);
}

/* Mobile: single column — slideshow on top, details below */
.hero-v2-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Image column */
.hero-img-col {
    width: 100%;
    flex-shrink: 0;
    padding: 0 16px;
}
.hero-v2-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(107,79,142,0.18);
    object-fit: cover;
    display: block;
}
.hero-v2-img-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    background: var(--lilac-soft);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border: 2px dashed var(--lilac);
}
/* Video button — flush below slideshow */
@keyframes videoBtnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(155, 114, 207, 0.7), 0 0 0 0 rgba(155, 114, 207, 0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(155, 114, 207, 0.2), 0 0 0 16px rgba(155, 114, 207, 0); }
}
@keyframes videoBtnGlow {
    0%, 100% { background: #1A1A2E; }
    50%       { background: #2d1a4e; }
}
.hero-video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #1A1A2E;
    color: var(--white);
    padding: 14px 24px;
    border: 1.5px solid rgba(107, 79, 142, 0.18);
    border-top: none;
    border-radius: 0 0 18px 18px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
    letter-spacing: 0.02em;
    animation: videoBtnPulse 2s ease-in-out infinite, videoBtnGlow 2s ease-in-out infinite;
}
.hero-video-btn:hover {
    background: var(--lavender);
    animation: none;
}
.hero-video-play {
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Video modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
}
.video-modal-inner {
    position: relative;
    z-index: 1;
    width: min(92vw, 820px);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
/* Shorts — portret rejim */
.video-modal.shorts-mode {
    padding: 8px;
}
.video-modal.shorts-mode .video-modal-inner {
    width: min(92vw, 400px);
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}
.video-modal.shorts-mode .video-modal-frame {
    aspect-ratio: 9 / 16;
    max-height: calc(95vh - 10px);
    border-radius: 20px;
}
.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50px;
    line-height: 1;
    transition: background 0.2s;
    z-index: 2;
}
.video-modal-close:hover { background: rgba(255,255,255,0.3); }
.video-modal-frame {
    aspect-ratio: 16 / 9;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #000;
}
.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.video-modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #3D1F00;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: 0 0 16px 16px;
    text-decoration: none;
    transition: var(--transition);
}
.video-modal-cta:hover { filter: brightness(1.07); transform: none; }

/* Hero slideshow — framed card on mobile */
.hero-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--lilac-soft);
    border-radius: 18px 18px 0 0;
    border: 1.5px solid rgba(107, 79, 142, 0.18);
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(107, 79, 142, 0.13);
}
.hero-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}
.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--lavender);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 2;
    line-height: 1;
}
.hero-slide-btn:hover { background: var(--lavender); color: #fff; }
.hero-slide-btn.prev { left: 10px; }
.hero-slide-btn.next { right: 10px; }
.hero-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* Details column — below image on mobile */
.hero-details-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Sales badge */
.hero-sales-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF3CD;
    border: 1px solid #FBBF24;
    color: #92400E;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    width: fit-content;
}

/* Heading */
.hero-v2-heading {
    font-size: clamp(1.6rem, 5vw, 3rem);
    color: #1A1A2E;
    line-height: 1.15;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}
.hero-v2-sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    overflow-wrap: break-word;
    margin: 0;
}

/* Uzum banner */
.hero-uzum-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #3D1F00;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255,165,0,0.3);
}
.hero-uzum-banner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,165,0,0.4); }
.uzum-banner-icon { font-size: 1.2rem; }

/* Price block */
.hero-price-block {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px solid var(--lilac-soft);
    border-bottom: 1px solid var(--lilac-soft);
}
.price-tag-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.hero-current-price {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1;
}
.hero-old-price-val {
    font-size: 1.1rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 600;
}

/* Countdown */
.hero-countdown {
    background: #F8F5FF;
    border: 1px solid var(--lilac-soft);
    border-radius: 14px;
    padding: 16px 20px;
}
.countdown-label-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.countdown-boxes {
    display: flex;
    gap: 10px;
}
.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--lilac-soft);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(107,79,142,0.07);
}
.cd-num {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1;
}
.cd-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: lowercase;
    margin-top: 4px;
    font-weight: 600;
}

/* Feature cards */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.hero-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--lilac-soft);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 0;
}
.hf-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.hero-feature-card > div { min-width: 0; flex: 1; }
.hero-feature-card strong {
    display: block;
    font-size: 0.9rem;
    color: #1A1A2E;
    margin-bottom: 3px;
    overflow-wrap: break-word;
}
.hero-feature-card p {
    font-size: 0.8rem;
    color: #666;
    overflow-wrap: break-word;
    line-height: 1.5;
    margin: 0;
}

/* Uzum main CTA */
.btn-uzum-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #6B4F8E 0%, #9B72CF 100%);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(107,79,142,0.4);
    letter-spacing: 0.01em;
}
.btn-uzum-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(107,79,142,0.5);
    background: linear-gradient(135deg, #4A3066 0%, #7B52AF 100%);
}

/* ========== GALLERY ========== */
.gallery-section { background: var(--lilac-soft); }
.gallery-slideshow {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    background: var(--lilac-soft);
}
.gallery-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--lavender);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 2;
}
.gallery-slide-btn:hover { background: var(--lavender); color: #fff; }
.gallery-slide-btn.prev { left: 10px; }
.gallery-slide-btn.next { right: 10px; }
.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.gallery-dot.active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* ========== BENEFITS ========== */
.benefits { background: var(--cream); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--lilac-soft);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.benefit-icon { font-size: 3rem; margin-bottom: 20px; }
.benefit-card h3 { font-size: 1.2rem; color: var(--lavender); margin-bottom: 12px; }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--lilac-soft); }
.how-it-works .section-header { margin-bottom: 12px; }
.steps-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: var(--shadow);
    position: relative;
}
.step-num {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--lilac);
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; color: var(--lavender); margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow { font-size: 2rem; color: var(--lavender); opacity: 0.4; }

/* ========== PRODUCTS ========== */
.products { background: var(--cream); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--lilac-soft);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--lilac-soft); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lavender);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.product-body { padding: 24px; }
.product-name { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.product-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.product-prices { display: flex; flex-direction: column; gap: 2px; }
.price-current { font-size: 1.3rem; font-weight: 700; color: var(--lavender); }
.price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount {
    background: #FEE2E2;
    color: #DC2626;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.empty-state { text-align: center; padding: 60px; color: var(--text-muted); font-size: 1.1rem; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: #F0EBF8; }
.testimonials .section-header h2 { color: var(--lavender-dark); }
.testimonials .section-sub { color: var(--text-muted); }

.slider-wrapper { position: relative; overflow: hidden; }
.slider { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide { flex: 0 0 100%; padding: 0 16px; }

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 22px 18px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 20px rgba(107,79,142,0.12);
}
.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.review-card-author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.review-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lavender-dark);
}
.review-badge {
    display: inline-block;
    background: #FFF0F0;
    color: #E85D5D;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    width: fit-content;
}
.review-stars { font-size: 1rem; color: #FCD34D; letter-spacing: 2px; flex-shrink: 0; padding-top: 3px; }
.review-text { font-size: 0.9rem; color: #444; line-height: 1.65; margin-bottom: 14px; font-style: normal; }
.review-card-footer { display: flex; justify-content: flex-end; }
.review-card-img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #F1E8FF;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}
.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--lavender);
    background: #fff;
    color: var(--lavender);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: var(--lavender); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lilac);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--lavender); transform: scale(1.3); }

/* ========== VIDEO ========== */
.video-section { background: var(--cream-dark); }

/* 1 yoki 2 video uchun grid */
.video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.video-grid-shorts {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

/* Ovozsiz preview + overlay */
.video-preview-wrap {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-preview-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}
.video-preview-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.22);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}
.video-preview-overlay:hover { background: rgba(0, 0, 0, 0.38); }
.video-preview-play-circle {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding-left: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}
.video-preview-overlay:hover .video-preview-play-circle {
    transform: scale(1.12);
    background: #fff;
}
.video-preview-play-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
}
/* Shorts (9:16) — mobilda keng, desktopda cheklangan */
.video-preview-shorts {
    aspect-ratio: 9 / 16;
    max-width: 400px;
    width: min(85vw, 400px);
    margin: 0;
}
/* 2 ta shorts yonma-yon (desktop) */
.video-grid-shorts .video-preview-shorts {
    flex: 0 0 calc(50% - 8px);
    max-width: 400px;
    width: 100%;
}
@media (max-width: 700px) {
    .video-grid-shorts {
        flex-direction: column;
        align-items: center;
    }
    .video-preview-shorts,
    .video-grid-shorts .video-preview-shorts {
        width: min(90vw, 400px);
        flex: none;
    }
}

/* ========== HESITATION ========== */
.hesitation { background: #fff; }
.hesitation-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 14px auto 0;
}
.hesitation-item {
    background: #fff;
    border: 1px solid #F1E8FF;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 1px 8px rgba(107,79,142,0.08);
}
.hesitation-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lavender-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.hesitation-item p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 640px) {
    .hesitation-item { padding: 16px 18px; }
}

/* ========== FAQ ========== */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--lilac-soft);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { background: var(--lilac-soft); }
.faq-icon {
    font-size: 1.5rem;
    color: var(--lavender);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }

/* ========== CONTACT ========== */
.contact { background: var(--lilac-soft); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.contact-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-value { font-weight: 600; color: var(--text); font-size: 1rem; }
.contact-value:hover { color: var(--lavender); }

.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.social-btn.telegram { background: #0088CC; color: var(--white); }
.social-btn.telegram:hover { background: #006fa0; transform: translateY(-2px); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.social-btn.instagram:hover { transform: translateY(-2px); opacity: 0.9; }

.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-map iframe { display: block; }

/* ========== SECTION UZUM CTA BAR ========== */
/* Per-section CTA button */
.section-cta-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 16px 4px;
}
.section-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8304c8;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.section-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.section-uzum-bar {
    background: #F5EEFF;
    border-top: 1px solid rgba(131,4,200,0.12);
    border-bottom: 1px solid rgba(131,4,200,0.12);
    padding: 14px 16px;
    display: flex;
    justify-content: center;
}
.section-uzum-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8304c8;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(131,4,200,0.28);
    letter-spacing: 0.01em;
}
.section-uzum-btn:hover {
    background: #6a02a3;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(131,4,200,0.38);
}
.uzum-logo-icon {
    flex-shrink: 0;
    border-radius: 6px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-social-link:hover { background: var(--lavender); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 20px; font-size: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact p, .footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--lilac); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */

/* Desktop: side-by-side layout */
@media (min-width: 900px) {
    .hero-v2 { padding: 100px 0 60px; }
    .hero-v2-inner {
        flex-direction: row;
        align-items: start;
        gap: 48px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .hero-img-col { flex: 0 0 420px; position: sticky; top: 90px; padding: 0; }
    .hero-details-col { flex: 1; padding: 0; }
    .hero-slideshow {
        border-radius: 20px 20px 0 0;
        border: none;
        box-shadow: 0 24px 64px rgba(107,79,142,0.18);
    }
    .hero-video-btn { border: none; border-radius: 0 0 20px 20px; }
}

@media (max-width: 900px) {
    .countdown-boxes { gap: 8px; }
    .countdown-box { min-width: 52px; padding: 8px 12px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
    .section-pad { padding: 28px 0; }
    .nav-container { padding: 10px 16px; gap: 12px; }
    .nav-logo { font-size: 1rem; gap: 5px; white-space: nowrap; }
    .logo-icon { font-size: 1.1rem; }
    .hero-v2 { padding-top: 52px; }
    .nav-links { display: none; position: fixed; top: 52px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); z-index: 999; border-top: 1px solid var(--lilac-soft); }
    .nav-links.open { display: flex; }
    .nav-burger { display: flex; }
    .footer-content { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .review-card { padding: 18px 16px 14px; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .hero-price-block { gap: 20px; }
    .countdown-boxes { gap: 6px; }
    .countdown-box { min-width: 46px; padding: 8px 10px; }
    .cd-num { font-size: 1.3rem; }
    .hero-v2-heading { font-size: 1.55rem; }
    .hero-details-col { padding: 20px 20px 36px; }
    .hero-img-col { padding: 0 16px; }
}
