/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Primary Palette */
    --primary: #667eea;
    --primary-dark: #5468d4;
    --primary-light: #8b9df0;
    --secondary: #764ba2;
    --secondary-dark: #5e3a82;
    --secondary-light: #9b6fc4;
    --accent: #f093fb;
    --accent-dark: #d87ae0;
    --accent-light: #f5b8fd;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9ff;
    --light-gray: #eef0f8;
    --mid-gray: #9ca3bf;
    --dark-gray: #4a5074;
    --dark: #1a1b3a;
    --darker: #0f1029;
    --darkest: #080916;

    /* Semantic */
    --success: #34d399;
    --error: #f87171;
    --warning: #fbbf24;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-mesh-1: linear-gradient(135deg, #667eea 0%, #764ba2 40%, #f093fb 100%);
    --gradient-mesh-2: linear-gradient(225deg, #f093fb 0%, #667eea 50%, #764ba2 100%);
    --gradient-mesh-3: radial-gradient(ellipse at 20% 50%, #667eea 0%, transparent 50%),
                       radial-gradient(ellipse at 80% 20%, #f093fb 0%, transparent 40%),
                       radial-gradient(ellipse at 50% 80%, #764ba2 0%, transparent 50%);
    --gradient-text: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #764ba2 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.92) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08);
    --shadow-md: 0 8px 32px rgba(102, 126, 234, 0.12);
    --shadow-lg: 0 16px 64px rgba(102, 126, 234, 0.16);
    --shadow-xl: 0 24px 80px rgba(102, 126, 234, 0.2);
    --shadow-glow: 0 0 40px rgba(240, 147, 251, 0.3);
    --shadow-card: 0 4px 24px rgba(102, 126, 234, 0.1), 0 1px 4px rgba(0,0,0,0.04);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Sora', sans-serif;
    --font-serif: 'Crimson Pro', serif;

    /* Sizing */
    --header-height: 80px;
    --container-max: 1240px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--darker);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fff 0%, #f093fb 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(1deg); }
    66% { transform: translateY(6px) rotate(-1deg); }
}

@keyframes meshMove {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 20px) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes meshMove2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-40px, 20px) scale(1.08) rotate(5deg); }
    50% { transform: translate(30px, -30px) scale(0.92) rotate(-3deg); }
    75% { transform: translate(-20px, -20px) scale(1.05) rotate(2deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(240, 147, 251, 0.3), 0 0 40px rgba(102, 126, 234, 0.2); }
    50% { box-shadow: 0 0 30px rgba(240, 147, 251, 0.5), 0 0 60px rgba(102, 126, 234, 0.3); }
}

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

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

@keyframes healthPulse {
    0%, 100% { width: 75%; }
    50% { width: 72%; }
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(var(--tx), var(--ty)) scale(1.3); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes liveDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterFill {
    from { width: 0%; }
    to { width: 85.6%; }
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-med);
    background: transparent;
}

.header.scrolled {
    background: rgba(15, 16, 41, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.nav-link.nav-cta:hover {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.5);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: var(--darkest);
}

.hero-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.mesh-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: meshMove 20s ease-in-out infinite;
}

.mesh-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    top: 20%;
    right: -5%;
    animation: meshMove2 25s ease-in-out infinite;
}

.mesh-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: meshMove 22s ease-in-out infinite reverse;
    opacity: 0.3;
}

.mesh-orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation: meshMove2 18s ease-in-out infinite;
    opacity: 0.25;
}

.mesh-orb-5 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    top: 40%;
    left: 15%;
    animation: meshMove 15s ease-in-out infinite;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    box-sizing: border-box;
}

.hero-content > * {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(240, 147, 251, 0.12);
    border: 1px solid rgba(240, 147, 251, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: slideDown 0.8s var(--ease-out) 0.2s both;
    grid-column: 1 / -1;
    justify-self: start;
    width: fit-content;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    grid-column: 1;
    justify-self: start;
    animation: slideUp 0.8s var(--ease-out) 0.3s both;
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 40%, #764ba2 80%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
    grid-column: 1;
    justify-self: start;
    animation: slideUp 0.8s var(--ease-out) 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    grid-column: 1;
    justify-self: start;
    animation: slideUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    grid-column: 1;
    justify-self: start;
    animation: slideUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
    grid-column: 2;
    grid-row: 2 / 6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: scaleIn 1s var(--ease-out) 0.5s both;
    min-width: 0;
    overflow: hidden;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: clamp(200px, 100%, 260px);
    aspect-ratio: 1 / 2;
    height: auto;
    background: linear-gradient(160deg, #1a1b3a 0%, #0f1029 100%);
    border-radius: 36px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    padding: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: var(--darkest);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 12px;
    position: relative;
}

.phone-notch::after {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 20px;
}

.phone-screen {
    width: 100%;
    height: calc(100% - 40px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screen-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(118, 75, 162, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 147, 251, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, #0f1029 0%, #1a1b3a 100%);
}

.screen-ui {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 12px;
}

.screen-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.screen-level {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-light);
    background: rgba(240, 147, 251, 0.15);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.screen-health-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.screen-health-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--success), #6ee7b7);
    border-radius: 3px;
    animation: healthPulse 3s ease-in-out infinite;
}

.screen-score {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
}

.screen-character {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-char-icon {
    font-size: 4rem;
    color: var(--accent-light);
    filter: drop-shadow(0 0 20px rgba(240, 147, 251, 0.5));
    animation: float 4s ease-in-out infinite;
}

.screen-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.s-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.s-p1 { top: 30%; left: 20%; --tx: 15px; --ty: -20px; animation: particleFloat 3s ease-in-out infinite; }
.s-p2 { top: 50%; left: 75%; --tx: -10px; --ty: 15px; animation: particleFloat 4s ease-in-out infinite 0.5s; background: var(--primary-light); }
.s-p3 { top: 65%; left: 30%; --tx: 20px; --ty: 10px; animation: particleFloat 3.5s ease-in-out infinite 1s; }
.s-p4 { top: 25%; left: 60%; --tx: -15px; --ty: -10px; animation: particleFloat 4.5s ease-in-out infinite 0.3s; background: var(--primary); }
.s-p5 { top: 70%; left: 65%; --tx: 10px; --ty: -15px; animation: particleFloat 3s ease-in-out infinite 1.5s; width: 4px; height: 4px; }
.s-p6 { top: 40%; left: 45%; --tx: -8px; --ty: 12px; animation: particleFloat 5s ease-in-out infinite 0.8s; background: var(--secondary-light); width: 5px; height: 5px; }

.screen-bottom-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 12px;
}

.screen-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.screen-btn-main {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    font-size: 1rem;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
    border-radius: 50%;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    animation: fadeIn 1s var(--ease-out) 1.5s both;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */

.social-proof-ticker {
    background: rgba(15, 16, 41, 0.9);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 500;
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--accent);
    font-size: 0.75rem;
}

.ticker-item strong {
    color: var(--white);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-tag-light i {
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--mid-gray);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.mesh-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.mesh-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -20%;
    right: -10%;
    animation: meshMove 25s ease-in-out infinite;
}

.mesh-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -15%;
    left: -5%;
    animation: meshMove2 20s ease-in-out infinite;
}

.mesh-shape-3 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    top: -10%;
    left: -8%;
    animation: meshMove 22s ease-in-out infinite;
}

.mesh-shape-4 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    bottom: -10%;
    right: -5%;
    animation: meshMove2 18s ease-in-out infinite;
}

.mesh-shape-5 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -15%;
    left: 20%;
    animation: meshMove 20s ease-in-out infinite;
    opacity: 0.1;
}

.mesh-shape-6 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -10%;
    right: 10%;
    animation: meshMove2 24s ease-in-out infinite;
    opacity: 0.12;
}

.features .section-title,
.features .section-desc {
    color: var(--dark);
}

.features .section-desc {
    color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.08);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.15);
}

.feature-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.04) 0%, transparent 50%);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.feature-card:hover .feature-card-bg {
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
}

.feature-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 40px 36px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(240, 147, 251, 0.04) 100%);
    border-color: rgba(102, 126, 234, 0.12);
}

.feature-card-large h3 {
    grid-column: 2;
    grid-row: 1;
}

.feature-card-large p {
    grid-column: 2;
    grid-row: 2;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-card-large .feature-icon-wrap {
    margin-bottom: 0;
    grid-row: 1 / 3;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
    transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.65;
}

.feature-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card-large .feature-tag {
    grid-column: 3;
    grid-row: 1;
    position: static;
    align-self: start;
    justify-self: end;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 120px 0;
    background: var(--darker);
    position: relative;
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.how-it-works .section-tag {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
    color: var(--primary-light);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step-line {
    position: absolute;
    left: 44px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--secondary));
    opacity: 0.3;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-med);
    position: relative;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(8px);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
}

.step-number span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.step-card:hover .step-icon {
    background: rgba(102, 126, 234, 0.2);
    color: var(--accent-light);
}

/* ============================================
   COMMUNITY / TESTIMONIALS SECTION
   ============================================ */

.community {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.community .section-title,
.community .section-desc {
    color: var(--dark);
}

.community .section-desc {
    color: var(--dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(102, 126, 234, 0.06);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-med);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-featured {
    border-color: rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(240, 147, 251, 0.04) 100%);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--warning);
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.author-role {
    display: block;
    font-size: 0.78rem;
    color: var(--mid-gray);
}

/* Live Feed */
.live-feed {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin: 0 auto;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: liveDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow: hidden;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--dark-gray);
    animation: slideDown 0.5s var(--ease-out);
}

.live-feed-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

.live-feed-item .feed-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--mid-gray);
    white-space: nowrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 120px 0;
    background: var(--darker);
}

.faq .section-title {
    color: var(--white);
}

.faq .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.faq .section-tag {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
    color: var(--primary-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.15);
}

.faq-item.active {
    border-color: rgba(102, 126, 234, 0.25);
    background: rgba(102, 126, 234, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary-light);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */

.registration {
    padding: 120px 0;
    background: var(--darkest);
    position: relative;
    overflow: hidden;
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.registration-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.registration-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 32px;
}

.registration-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.perk i {
    color: var(--success);
    font-size: 1rem;
}

.registration-counter {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.counter-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.counter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 2s var(--ease-out);
}

.counter-fill.animated {
    animation: counterFill 2s var(--ease-out) forwards;
}

.registration-counter p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.registration-counter strong {
    color: var(--accent-light);
}

/* Signup Form */
.registration-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.optional {
    color: var(--mid-gray);
    font-weight: 400;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--mid-gray);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.input-wrap input::placeholder {
    color: var(--mid-gray);
}

.input-wrap input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-wrap input:focus + .input-icon,
.input-wrap input:focus ~ .input-icon {
    color: var(--primary);
}

/* Fix: icon is before input in DOM, use has() or sibling */
.input-wrap:focus-within .input-icon {
    color: var(--primary);
}

.input-wrap input.error {
    border-color: var(--error);
}

.input-wrap input.error:focus {
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.1);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--error);
    margin-top: 4px;
    min-height: 1em;
}

/* Checkbox */
.form-checkbox {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--mid-gray);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity var(--transition-fast);
    position: absolute;
    top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--success);
    margin-bottom: 20px;
    animation: scaleIn 0.5s var(--ease-spring);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius-md);
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.trust-section .section-title {
    color: var(--dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102, 126, 234, 0.06);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--darkest);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.mesh-orb-footer-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: meshMove 20s ease-in-out infinite;
}

.mesh-orb-footer-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
    bottom: -20%;
    right: -5%;
    animation: meshMove2 22s ease-in-out infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

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

.footer-links-col a i {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.footer-address {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.88rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address i {
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-age-notice {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-age-notice i {
    color: var(--warning);
}

.footer-bottom-right {
    display: flex;
    gap: 12px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-badge i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 680px;
    z-index: 10000;
    background: rgba(15, 16, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.5s var(--ease-out);
}

.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--white);
}

.cookie-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-cookie-reject {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-settings {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-cookie-settings:hover {
    color: var(--white);
}

.cookie-settings-panel {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-setting-item {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.cookie-setting-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    margin-left: 26px;
}

.cookie-setting-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* ============================================
   AGE GATE MODAL
   ============================================ */

.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 9, 22, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-gate-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.4s var(--ease-spring);
}

.age-gate-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.age-gate-modal h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.age-gate-modal p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-age-confirm {
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-age-deny {
    padding: 14px 32px;
    background: var(--off-white);
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-age-deny:hover {
    background: var(--light-gray);
}

.age-gate-note {
    font-size: 0.78rem !important;
    color: var(--mid-gray) !important;
    margin-top: 16px;
    margin-bottom: 0 !important;
}

.age-gate-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--darkest);
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.legal-hero-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: block;
}

.legal-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.legal-hero-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-section {
    padding: 80px 0;
    background: var(--off-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(102, 126, 234, 0.06);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content li ul {
    margin-top: 8px;
}

.legal-content li li {
    list-style: circle;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--dark);
}

.legal-footer-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.legal-footer-info p {
    font-size: 0.88rem;
    color: var(--mid-gray);
    margin-bottom: 6px;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.gdpr-right {
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(102, 126, 234, 0.06);
    transition: all var(--transition-med);
}

.gdpr-right:hover {
    border-color: rgba(102, 126, 234, 0.15);
    box-shadow: var(--shadow-sm);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 14px;
}

.gdpr-right h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.gdpr-right p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 0 20px;
        justify-items: center;
    }

    .hero-badge {
        margin: 0 auto 24px;
        justify-self: center;
    }

    .hero-title {
        grid-column: 1;
        justify-self: center;
    }

    .hero-subtitle {
        grid-column: 1;
        justify-self: center;
        margin: 0 auto 36px;
    }

    .hero-actions {
        grid-column: 1;
        justify-self: center;
        justify-content: center;
    }

    .hero-stats {
        grid-column: 1;
        justify-self: center;
        justify-content: center;
    }

    .hero-visual {
        grid-column: 1;
        grid-row: auto;
        margin-top: 40px;
        overflow: hidden;
        max-width: 100%;
    }

    .registration-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-column: 1 / -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 16, 41, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition-med);
        z-index: 1000;
    }

    .nav-links.active {
        min-height: 100vh;
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 14px 32px;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 24px) 0 60px;
    }

    .hero-content {
        padding: 0 16px;
        gap: 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }

    .phone-frame {
        width: clamp(180px, 60vw, 220px);
        height: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-template-columns: auto 1fr;
    }

    .feature-card-large .feature-tag {
        grid-column: 2;
        grid-row: 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .step-line {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .registration-form-wrap {
        padding: 28px 20px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .age-gate-modal {
        padding: 32px 24px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
