/* =========================================
   IMPORT FONTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =========================================
   CSS VARIABLES & THEMES
   ========================================= */
:root {
    /* Light Mode Colors */
    --bg-color: #f0f4ff;
    --bg-surface: #ffffff;
    --bg-secondary: #e8eeff;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.9);

    --text-primary: #0a0f2e;
    --text-secondary: #3d4a7a;
    --text-muted: #7b88c0;

    --accent-primary: #5b4fff;
    --accent-secondary: #a78bfa;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-gold: #f59e0b;
    --accent-hover: #4338ca;
    --accent-glow: rgba(91, 79, 255, 0.4);
    --accent-gradient: linear-gradient(135deg, #5b4fff 0%, #a78bfa 50%, #ec4899 100%);
    --accent-gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #5b4fff 100%);
    --accent-gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    --border-color: rgba(91, 79, 255, 0.15);
    --border-light: rgba(91, 79, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.6);

    --shadow-sm: 0 2px 8px rgba(91, 79, 255, 0.08);
    --shadow-md: 0 8px 24px rgba(91, 79, 255, 0.12), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 48px rgba(91, 79, 255, 0.16), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl: 0 32px 64px rgba(91, 79, 255, 0.2), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-neon: 0 0 30px rgba(91, 79, 255, 0.5), 0 0 60px rgba(91, 79, 255, 0.2);
    --shadow-accent: 0 8px 32px rgba(91, 79, 255, 0.35);

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html.dark {
    --bg-color: #050814;
    --bg-surface: #0c1128;
    --bg-secondary: #080e20;
    --bg-card: #0f1530;
    --bg-glass: rgba(12, 17, 40, 0.75);
    --bg-glass-hover: rgba(12, 17, 40, 0.9);

    --text-primary: #e8edff;
    --text-secondary: #8b9bda;
    --text-muted: #4a5580;

    --accent-primary: #7c6dff;
    --accent-secondary: #a78bfa;
    --accent-cyan: #22d3ee;
    --accent-pink: #f472b6;
    --accent-gold: #fbbf24;
    --accent-hover: #6366f1;
    --accent-glow: rgba(124, 109, 255, 0.5);
    --accent-gradient: linear-gradient(135deg, #7c6dff 0%, #a78bfa 50%, #f472b6 100%);
    --accent-gradient-cyan: linear-gradient(135deg, #22d3ee 0%, #7c6dff 100%);

    --border-color: rgba(124, 109, 255, 0.2);
    --border-light: rgba(124, 109, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.06);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(124, 109, 255, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(124, 109, 255, 0.15);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(124, 109, 255, 0.2);
    --shadow-neon: 0 0 30px rgba(124, 109, 255, 0.6), 0 0 80px rgba(124, 109, 255, 0.25);
    --shadow-accent: 0 8px 32px rgba(124, 109, 255, 0.45);

    --glass-bg: rgba(12, 17, 40, 0.8);
    --glass-border: rgba(255, 255, 255, 0.06);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; }

/* =========================================
   COSMIC BACKGROUND GRID (DARK MODE)
   ========================================= */
#stars-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

html.dark #stars-container { opacity: 1; }

/* Cyber grid overlay */
#stars-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 109, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 109, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.meteor {
    position: absolute;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(124, 109, 255, 0), #a78bfa, rgba(255,255,255,0.95));
    transform-origin: top;
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 1));
    border-radius: 50%;
    animation: meteor-fall linear infinite;
    opacity: 0;
}

@keyframes meteor-fall {
    0% { transform: translateY(-150px) translateX(150px) rotate(45deg); opacity: 1; }
    80% { opacity: 0.6; }
    100% { transform: translateY(100vh) translateX(-100vh) rotate(45deg); opacity: 0; }
}

/* Static stars */
.star-dot {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
}

@keyframes twinkle {
    0%, 100% { opacity: var(--min-op, 0.1); transform: scale(1); }
    50% { opacity: var(--max-op, 0.8); transform: scale(1.3); }
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    padding: 0 1.5rem;
    height: 66px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
    transition: all 0.4s ease;
}

html.dark header {
    background: rgba(5, 8, 20, 0.85);
    border-bottom: 1px solid rgba(124, 109, 255, 0.12);
    box-shadow: 0 1px 0 rgba(124, 109, 255, 0.08), 0 4px 20px rgba(0,0,0,0.4);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all var(--transition-base);
}

.brand:hover::after { opacity: 1; transform: scaleX(1); }
.brand span { 
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

header nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

header nav a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

header nav a:hover {
    color: var(--accent-primary);
    background: rgba(91, 79, 255, 0.08);
}

html.dark header nav a:hover {
    background: rgba(124, 109, 255, 0.12);
}

header nav a.nav-cta {
    background: var(--accent-gradient);
    color: #fff !important;
    box-shadow: var(--shadow-accent);
    padding: 0.45rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

header nav a.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

header nav a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    color: #fff;
}

header nav a.nav-cta:hover::before { opacity: 1; }

/* Theme Toggle */
.theme-toggle {
    background: rgba(91, 79, 255, 0.08);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

html.dark .theme-toggle {
    background: rgba(124, 109, 255, 0.1);
    border-color: rgba(124, 109, 255, 0.2);
}

.theme-toggle:hover {
    background: rgba(91, 79, 255, 0.15);
    border-color: var(--accent-primary);
    transform: scale(1.08) rotate(20deg);
    box-shadow: 0 0 16px rgba(91, 79, 255, 0.3);
}

html.dark .icon-sun { display: block; }
html.dark .icon-moon { display: none; }
html:not(.dark) .icon-sun { display: none; }
html:not(.dark) .icon-moon { display: block; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 4px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.menu-toggle:hover { background: var(--bg-secondary); }

@media (max-width: 768px) {
    header nav {
        position: absolute;
        top: 70px;
        right: 1rem;
        background: var(--glass-bg);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--glass-border);
        display: none;
        min-width: 210px;
    }

    html.dark header nav {
        background: rgba(12, 17, 40, 0.95);
        border-color: rgba(124, 109, 255, 0.15);
    }

    header nav a {
        width: 100%;
        padding: 0.65rem 1rem;
        border-radius: var(--radius-sm);
        text-align: left;
    }

    header nav.show {
        display: flex;
        animation: slideDown 0.25s ease forwards;
    }

    .menu-toggle { display: flex; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================
   HERO LANDING SECTION
   ========================================= */
.hero-landing {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 1.5rem 4.5rem;
    text-align: center;
    background: var(--bg-color);
    z-index: 1;
}

/* Radial glow orbs */
.hero-landing::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background:
        radial-gradient(ellipse at 40% 40%, rgba(91, 79, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(167, 139, 250, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-landing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.4;
}

html.dark .hero-landing::before {
    background:
        radial-gradient(ellipse at 40% 40%, rgba(124, 109, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(167, 139, 250, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(34, 211, 238, 0.12) 0%, transparent 50%);
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-landing > * { position: relative; z-index: 1; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1.1rem 0.4rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.6s ease both;
    backdrop-filter: blur(10px);
}

html.dark .hero-badge {
    background: rgba(12, 17, 40, 0.8);
    border-color: rgba(124, 109, 255, 0.25);
    box-shadow: 0 0 20px rgba(124, 109, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gradient);
    animation: pulseDot 2.5s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(91, 79, 255, 0.8);
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(91, 79, 255, 0.8); }
    50% { transform: scale(1.4); box-shadow: 0 0 16px rgba(91, 79, 255, 1); }
}

.hero-landing h1 {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    max-width: 820px;
    margin: 0 auto 1.35rem;
    animation: fadeUp 0.6s ease 0.1s both;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-landing h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-landing .hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    animation: fadeUp 0.6s ease 0.2s both;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before { left: 100%; }

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-neon);
    color: #fff;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--bg-glass);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.85rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(91, 79, 255, 0.06);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.4s both;
    padding: 1.5rem 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 620px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

html.dark .hero-stats {
    background: rgba(12, 17, 40, 0.7);
    border-color: rgba(124, 109, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(124, 109, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   FEATURES STRIP
   ========================================= */
.features-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.25rem 1.5rem;
    margin: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

html.dark .features-strip {
    background: rgba(12, 17, 40, 0.8);
    border-color: rgba(124, 109, 255, 0.12);
}

.features-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(91, 79, 255, 0.03) 50%, transparent 100%);
}

.features-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 640px) {
    .features-strip-inner { grid-template-columns: repeat(4, 1fr); }
}

.feature-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-strip-item:hover {
    background: rgba(91, 79, 255, 0.05);
}

.feature-strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(91, 79, 255, 0.12), rgba(167, 139, 250, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 79, 255, 0.18);
    transition: all var(--transition-bounce);
    color: var(--accent-primary);
    position: relative;
    overflow: hidden;
}

.feature-strip-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: inherit;
}

.feature-strip-item:hover .feature-strip-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(91, 79, 255, 0.25);
    border-color: var(--accent-primary);
    color: #fff;
}

.feature-strip-item:hover .feature-strip-icon::before { opacity: 1; }
.feature-strip-item:hover .feature-strip-icon svg { position: relative; z-index: 1; stroke: #fff; }

.feature-strip-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-strip-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =========================================
   SECTION HEADING
   ========================================= */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.85rem;
    background: rgba(91, 79, 255, 0.08);
    border: 1px solid rgba(91, 79, 255, 0.15);
    border-radius: var(--radius-full);
}

html.dark .section-eyebrow {
    background: rgba(124, 109, 255, 0.12);
    border-color: rgba(124, 109, 255, 0.2);
}

.section-heading h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-heading p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* =========================================
   MAIN WRAPPER
   ========================================= */
main { padding: 0; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.catalog-section {
    padding: 5rem 1.5rem;
    max-width: 1260px;
    margin: 0 auto;
}

/* =========================================
   PRODUCT GRID & CARDS
   ========================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 576px) { .grid { gap: 1rem; } }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (min-width: 1280px) { .grid { grid-template-columns: repeat(5, 1fr); } }

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.97);
}

html.dark .card {
    background: var(--bg-card);
    border-color: rgba(124, 109, 255, 0.12);
}

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

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(91, 79, 255, 0.3), rgba(167, 139, 250, 0.2), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 48px rgba(91, 79, 255, 0.18), 0 8px 16px rgba(0,0,0,0.08);
    border-color: rgba(91, 79, 255, 0.35);
}

html.dark .card:hover {
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(124, 109, 255, 0.3), 0 0 40px rgba(124, 109, 255, 0.1);
}

.card:hover::after { opacity: 1; }

/* Card Badge */
.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--accent-gradient-warm);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.28rem 0.65rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245,158,11,0.5);
}

/* Card Image */
.card .thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-secondary);
}

html.dark .card .thumb { background: var(--bg-secondary); }

.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, filter 0.5s ease;
    opacity: 0;
    filter: blur(6px) saturate(0.8);
}

.card .thumb img.loaded { opacity: 1; filter: blur(0) saturate(1); }
.card:hover .thumb img.loaded { transform: scale(1.08); }

/* Card Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 20, 0.75) 0%, rgba(5, 8, 20, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.card:hover .card-overlay { opacity: 1; }

/* Skeleton Loading */
.skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        var(--bg-secondary) 25%,
        rgba(91, 79, 255, 0.08) 50%,
        var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Card Content */
.card-content {
    padding: 0.7rem 0.7rem 0.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

@media (min-width: 576px) { .card-content { padding: 1rem 1.1rem 1.2rem; gap: 0.6rem; } }

.card .title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

@media (min-width: 576px) { .card .title { font-size: 0.95rem; } }
@media (min-width: 768px) { .card .title { font-size: 1rem; } }

.card .meta { display: flex; align-items: flex-end; justify-content: space-between; }
.card .price { display: flex; flex-direction: column; gap: 1px; }

.old-price {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-decoration: line-through;
    line-height: 1;
}

@media (min-width: 576px) { .old-price { font-size: 0.72rem; } }

.new-price {
    font-size: 0.88rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

@media (min-width: 576px) { .new-price { font-size: 1.05rem; } }
@media (min-width: 768px) { .new-price { font-size: 1.1rem; } }

/* Card Buttons */
.btn-row {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.btn {
    flex: 1;
    padding: 0.42rem 0.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
    transition: all var(--transition-bounce);
    white-space: nowrap;
    border: none;
    letter-spacing: 0.01em;
}

@media (min-width: 576px) { .btn { padding: 0.55rem 0.5rem; font-size: 0.8rem; } }
@media (min-width: 768px) { .btn { padding: 0.6rem; font-size: 0.85rem; border-radius: 12px; } }

.btn.primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn.primary:hover::before { opacity: 1; }

.btn.ghost {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn.ghost:hover {
    background: rgba(91, 79, 255, 0.06);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

/* =========================================
   STATS / COUNTER SECTION
   ========================================= */
.counter-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
    margin: 0;
}

/* Multi-layer futuristic background */
.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    z-index: 0;
}

.counter-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(255,255,255,0.08) 0%, transparent 45%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, auto, 40px 40px, 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.counter-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .counter-inner { grid-template-columns: repeat(4, 1fr); }
}

.counter-box {
    text-align: center;
    color: #fff;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all var(--transition-bounce);
}

.counter-box:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.counter-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.3rem;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.2);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.counter-box p {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-section {
    padding: 5.5rem 1.5rem;
    position: relative;
}

html.dark .why-section {
    background: var(--bg-color);
}

.why-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

html.dark .why-card {
    background: rgba(12, 17, 40, 0.8);
    border-color: rgba(124, 109, 255, 0.12);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91, 79, 255, 0.3);
}

html.dark .why-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(124, 109, 255, 0.25);
}

.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(91, 79, 255, 0.12), rgba(167, 139, 250, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(91, 79, 255, 0.18);
    flex-shrink: 0;
    transition: all var(--transition-bounce);
    color: var(--accent-primary);
}

.why-card:hover .why-icon-wrap {
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(91, 79, 255, 0.35);
    transform: scale(1.08) rotate(-3deg);
}

.why-card:hover .why-icon-wrap svg { stroke: #fff; }

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 5.5rem 1.5rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

html.dark .testimonials-section {
    background: rgba(8, 14, 32, 0.9);
    border-color: rgba(124, 109, 255, 0.1);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(91, 79, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testi-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

html.dark .testi-card {
    background: rgba(12, 17, 40, 0.7);
    border-color: rgba(124, 109, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(91, 79, 255, 0.25);
}

.testi-stars {
    display: flex;
    gap: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(91, 79, 255, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.testi-name {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =========================================
   ORDER STEPS SECTION
   ========================================= */
.steps-section {
    padding: 5.5rem 1.5rem;
    position: relative;
}

.steps-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

@media (min-width: 640px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem 2rem;
    position: relative;
}

@media (min-width: 640px) {
    .step-item::after {
        content: '';
        position: absolute;
        top: 23px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
        z-index: 0;
        opacity: 0.4;
    }
    .step-item:last-child::after { display: none; }
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: var(--shadow-accent);
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    transition: all var(--transition-bounce);
    font-family: 'Space Grotesk', sans-serif;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
}

.step-item:hover .step-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-neon);
}

.step-item:hover .step-number::before {
    opacity: 0.4;
    transform: scale(1);
}

.step-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =========================================
   SEO CONTENT / ABOUT SECTION
   ========================================= */
.about-section {
    padding: 4.5rem 1.5rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

html.dark .about-section {
    background: rgba(12, 17, 40, 0.6);
    border-color: rgba(124, 109, 255, 0.1);
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-inner h2 {
    font-size: clamp(1.2rem, 3vw, 1.85rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    font-family: 'Space Grotesk', sans-serif;
}

.about-inner p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 1.5rem 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

html.dark footer {
    background: rgba(5, 8, 20, 0.95);
    border-top: 1px solid rgba(124, 109, 255, 0.12);
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-container { grid-template-columns: 1.8fr 1fr 1fr; }
}

.footer-brand .brand {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    display: inline-flex;
}

.footer-about p,
.footer-contact p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
}

.footer-contact p strong { color: var(--text-primary); }

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-links a::before {
    content: '›';
    color: var(--accent-primary);
    font-size: 1.1em;
    opacity: 0;
    transform: translateX(-4px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact a {
    color: var(--accent-primary);
    transition: all var(--transition-fast);
}

.footer-contact a:hover { text-decoration: underline; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-bounce);
    color: var(--text-secondary);
}

html.dark .footer-social a {
    background: rgba(12, 17, 40, 0.8);
    border-color: rgba(124, 109, 255, 0.15);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 36px;
    z-index: 99;
}

.wa-float a {
    display: flex;
    align-items: center;
    background: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float a:hover { transform: translateY(-5px) scale(1.1); }

.wa-float .wa-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: var(--accent-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn.launching {
    opacity: 0 !important;
    transform: translateY(-600px) scale(0.8) !important;
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), opacity 0.4s ease-in 0.2s !important;
    pointer-events: none;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--accent-hover);
}

/* =========================================
   FAQ PAGE
   ========================================= */
.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    padding-top: 80px;
}

.faq h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    color: var(--accent-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover { background: var(--bg-secondary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    margin: 14px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 16px; }
.faq-item.active .faq-question::after { content: "–"; color: var(--accent-primary); }
.faq-question::after { content: "+"; font-size: 24px; font-weight: normal; color: var(--text-muted); transition: color 0.3s ease; }
.faq-item.active .faq-question { border-bottom: 1px solid var(--border-color); }

/* =========================================
   TOS PAGE
   ========================================= */
.tos {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    padding-top: 80px;
}

.tos h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    color: var(--accent-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.tos-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tos-section:hover { box-shadow: var(--shadow-md); border-color: var(--text-muted); }

.tos-section h2 {
    margin-top: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.tos-section p { font-size: 1rem; line-height: 1.7; margin: 0; }

/* =========================================
   PRIVACY POLICY PAGE
   ========================================= */
.policy {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    padding-top: 80px;
}

.policy h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    color: var(--accent-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.policy-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.policy-section:hover { box-shadow: var(--shadow-md); border-color: var(--text-muted); }

.policy-section h2 {
    margin-top: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.policy-section p { font-size: 1rem; line-height: 1.7; margin: 0; }

/* =========================================
   PROMO POPUP
   ========================================= */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.promo-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.promo-popup-content {
    background: transparent;
    border: none;
    border-radius: 0;
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: visible;
    box-shadow: none;
    transform: scale(0.88) translateY(24px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-popup-overlay.show .promo-popup-content {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.promo-popup-close:hover {
    background: var(--bg-secondary);
    transform: scale(1.12) rotate(90deg);
}

.promo-popup-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-accent { color: var(--accent-primary); }
.text-center { text-align: center; }

.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: var(--border-color);
}

/* =========================================
   RESPONSIVE TWEAKS
   ========================================= */
@media (max-width: 640px) {
    .hero-landing { padding: 3.75rem 1.25rem 3.25rem; }
    .hero-stats { gap: 1.25rem; padding: 1.25rem; }
    .hero-stat-divider { display: none; }
    .counter-inner { gap: 1.25rem; }
    .why-section { padding: 3.5rem 1.25rem; }
    .testimonials-section { padding: 3.5rem 1.25rem; }
    .steps-section { padding: 3.5rem 1.25rem; }
    .catalog-section { padding: 3rem 1.25rem; }
    .section-heading h2 { font-size: 1.4rem; }
    .hero-landing h1 { font-size: 1.9rem; letter-spacing: -0.04em; }
    .hero-subtitle { font-size: 0.95rem; }
    .btn-hero-primary, .btn-hero-ghost { font-size: 0.875rem; padding: 0.75rem 1.4rem; }
    .footer-container { gap: 2rem; }
    nav a { font-size: 0.875rem; }
}

@media (max-width: 380px) {
    .hero-cta-row { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
}

/* =========================================
   PERFORMANCE: content-visibility
   ========================================= */
.why-section,
.testimonials-section,
.steps-section,
.about-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* =========================================
   PERFORMANCE: will-change
   ========================================= */
.card { will-change: transform; }
.slides { will-change: transform; }

/* =========================================
   ACCESSIBILITY: prefers-reduced-motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .meteor { display: none !important; }
    .star-dot { display: none !important; }

    .card {
        opacity: 1 !important;
        transform: none !important;
    }

    @keyframes fadeUp {
        from { opacity: 1; transform: none; }
        to { opacity: 1; transform: none; }
    }
}

/* =========================================
   FOCUS STYLES (accessibility)
   ========================================= */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* =========================================
   IMAGE OPTIMIZATION
   ========================================= */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* =========================================
   NEON GLOW ANIMATIONS (dark mode only)
   ========================================= */
html.dark .hero-landing h1 .gradient-text {
    filter: drop-shadow(0 0 30px rgba(124, 109, 255, 0.4));
}

html.dark .step-number {
    box-shadow: var(--shadow-accent), 0 0 24px rgba(124, 109, 255, 0.3);
}

html.dark .counter-box {
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* =========================================
   SCAN LINE EFFECT (subtle, dark only)
   ========================================= */
html.dark body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.015) 2px,
        rgba(0, 0, 0, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
}