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

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --secondary-light: #a78bfa;
    --secondary-dark: #7c3aed;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --accent-dark: #db2777;

    /* Neutrals */
    --bg-dark: #0a0a1a;
    --bg-deep: #0d0d24;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-white: #f8fafc;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glass-strong: rgba(255, 255, 255, 0.22);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-blur: 16px;
    --glass-blur-strong: 24px;

    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow-primary: 0 0 40px rgba(99, 102, 241, 0.2);
    --shadow-glow-accent: 0 0 40px rgba(236, 72, 153, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1280px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--accent-light);
}

ul {
    list-style: none;
}

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

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: rgba(99, 102, 241, 0.4);
    color: var(--text-white);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.glass-card-small {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================================
   SECTION BACKGROUNDS & SHAPES
   ============================================================ */

.hero-bg-shapes,
.section-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape,
.section-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 100px;
    right: -150px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: floatShape 22s ease-in-out infinite;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation: floatShape 15s ease-in-out infinite;
}

.s-shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%); top: -150px; right: -100px; animation: floatShape 20s ease-in-out infinite; }
.s-shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%); bottom: -100px; left: -50px; animation: floatShape 25s ease-in-out infinite reverse; }
.s-shape-3 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%); top: -100px; left: -100px; animation: floatShape 22s ease-in-out infinite; }
.s-shape-4 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%); bottom: -50px; right: -50px; animation: floatShape 18s ease-in-out infinite reverse; }
.s-shape-5 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%); top: -100px; left: 20%; animation: floatShape 24s ease-in-out infinite; }
.s-shape-6 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%); bottom: -100px; right: 10%; animation: floatShape 20s ease-in-out infinite reverse; }
.s-shape-7 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: floatShape 30s ease-in-out infinite; }
.s-shape-8 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%); top: -50px; right: -50px; animation: floatShape 22s ease-in-out infinite; }
.s-shape-9 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%); bottom: 10%; left: 5%; animation: floatShape 18s ease-in-out infinite reverse; }
.s-shape-10 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%); top: -150px; left: -100px; animation: floatShape 25s ease-in-out infinite; }
.s-shape-11 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%); bottom: -100px; right: -50px; animation: floatShape 20s ease-in-out infinite reverse; }

@keyframes floatShape {
    0%, 100% { 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(15px, 15px) scale(1.02); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.hero-noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
}

.main-header.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    flex-shrink: 0;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--accent);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

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

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-pill);
    text-decoration: none;
    margin-left: 8px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    color: var(--text-white);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-glass);
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        z-index: 999;
    }

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

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .btn-nav-cta {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
        padding: 14px 24px;
    }
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-text-block {
    z-index: 2;
}

.hero-badge {
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.title-line-2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.title-line-3 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.title-stroke {
    -webkit-text-stroke: 2px var(--text-white);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.85s both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    text-decoration: none;
    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(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
    color: var(--text-white);
}

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

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

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass-strong);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
    text-decoration: none;
}

.btn-glass:hover {
    transform: translateY(-3px);
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-glass-strong);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary-outline:hover {
    color: var(--text-white);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass-strong);
}

/* Hero Visual */
.hero-visual-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-phone-mockup {
    position: relative;
}

.phone-frame {
    width: clamp(260px, 25vw, 320px);
    padding: 12px;
    padding-top: 40px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.phone-screen-img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.phone-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card .small-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================================
   TICKER SECTION
   ============================================================ */

.ticker-section {
    padding: 16px 0;
    background: rgba(99, 102, 241, 0.08);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    position: relative;
}

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

.ticker-content {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.section-tag {
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 16px;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

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

.about-card {
    padding: clamp(28px, 3vw, 40px);
    transition: transform var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium);
}

.about-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-glass-strong);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: background var(--transition-fast);
}

.about-card-icon.accent {
    background: rgba(236, 72, 153, 0.12);
    color: var(--accent);
}

.about-card-icon.secondary {
    background: rgba(139, 92, 246, 0.12);
    color: var(--secondary-light);
}

.about-card:hover .about-card-icon {
    background: rgba(99, 102, 241, 0.2);
}

.about-card:hover .about-card-icon.accent {
    background: rgba(236, 72, 153, 0.2);
}

.about-card:hover .about-card-icon.secondary {
    background: rgba(139, 92, 246, 0.2);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.about-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform var(--transition-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(99, 102, 241, 0.5);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}

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

.features-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

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

.feature-card {
    padding: clamp(28px, 3vw, 36px);
    transition: transform var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-glass-strong);
}

.feature-highlight {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-highlight:hover {
    background: rgba(99, 102, 241, 0.12);
}

.feature-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    color: rgba(99, 102, 241, 0.2);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.feature-highlight .feature-number {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 0;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-visual {
    color: rgba(99, 102, 241, 0.15);
}

.feature-icon-large {
    opacity: 0.4;
}

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

.testimonials-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

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

.testimonial-card {
    padding: clamp(28px, 3vw, 36px);
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.author-avatar.accent-bg {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.author-avatar.secondary-bg {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.testimonial-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.faq-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

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

.faq-item {
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.3);
}

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-medium);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

/* ============================================================
   SIGNUP SECTION
   ============================================================ */

.signup-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.signup-info .section-title {
    text-align: left;
    margin-top: 16px;
}

.signup-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 20px 0 28px;
    line-height: 1.8;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.signup-benefits li svg {
    flex-shrink: 0;
}

/* Form */
.signup-form-wrapper {
    padding: clamp(28px, 4vw, 44px);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input[type="text"].error,
.form-group input[type="email"].error,
.form-group input[type="tel"].error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error {
    font-size: 0.78rem;
    color: #ef4444;
    min-height: 0;
}

/* Checkbox */
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-glass-strong);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1px;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
#submit-btn {
    margin-top: 8px;
}

.btn-text, .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Success & Error messages */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

.form-error-message {
    text-align: center;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.form-error-message p {
    color: #fca5a5;
    font-size: 0.9rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

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

.contact-card {
    padding: clamp(28px, 3vw, 36px);
    text-align: center;
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-light);
    margin: 0 auto 20px;
}

.contact-icon.accent {
    background: rgba(236, 72, 153, 0.12);
    color: var(--accent);
}

.contact-icon.secondary {
    background: rgba(139, 92, 246, 0.12);
    color: var(--secondary-light);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--primary-light);
    font-size: 0.92rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.6;
}

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

.trust-section {
    padding: 0 0 var(--section-pad);
}

.trust-banner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: clamp(28px, 4vw, 44px);
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
}

.trust-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-light);
}

.trust-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.trust-text a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.main-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-glass);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
    color: var(--text-white);
    background: var(--glass-bg-strong);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

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

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links-col a:hover {
    color: var(--text-white);
}

.footer-links-col li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-age-notice {
    margin-top: 8px;
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.6);
}

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

.legal-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

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

.legal-hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.legal-section {
    padding: 0 0 var(--section-pad);
}

.legal-content {
    padding: clamp(32px, 5vw, 60px);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin: 24px 0 10px;
}

.legal-content p {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 8px 0 16px 20px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

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

.legal-content a:hover {
    color: var(--accent-dark);
}

.legal-footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #94a3b8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-glass);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

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

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

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

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

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

.btn-cookie-accept {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.btn-cookie-reject {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-glass-strong);
}

.btn-cookie-settings {
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px) 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
}

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

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

.age-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.age-modal-content {
    position: relative;
    max-width: 440px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
    z-index: 1;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.age-modal-icon {
    color: var(--primary-light);
    margin-bottom: 20px;
}

.denied-icon {
    color: #ef4444;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.age-modal-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.age-subtext {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 28px !important;
}

.age-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.age-buttons .btn-primary,
.age-buttons .btn-secondary-outline {
    flex: 1;
    justify-content: center;
}

/* ============================================================
   SOCIAL PROOF TOAST
   ============================================================ */

.social-proof-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9000;
    animation: toastIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-proof-toast.hiding {
    animation: toastOut 0.4s ease-in forwards;
}

@keyframes toastIn {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-120%); opacity: 0; }
}

.toast-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast-icon {
    flex-shrink: 0;
}

.toast-text {
    display: flex;
    flex-direction: column;
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.4;
}

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

.toast-time {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.toast-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: color var(--transition-fast), background var(--transition-fast);
    cursor: pointer;
}

.toast-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

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

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

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered delays */
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
[data-reveal]:nth-child(6) { transition-delay: 0.5s; }

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

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-block {
        order: 1;
    }

    .hero-visual-block {
        order: 0;
        margin-bottom: 20px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-floating-card.card-1 {
        right: 0;
    }

    .hero-floating-card.card-2 {
        left: 0;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item-large {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

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

    .feature-highlight {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-visual {
        display: none;
    }

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

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

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

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

    .trust-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .phone-frame {
        width: 240px;
    }

    .age-modal-content {
        padding: 36px 28px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions button {
        flex: 1;
    }

    .social-proof-toast {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .toast-inner {
        min-width: auto;
        width: 100%;
    }
}

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

    .ticker-content {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal,
    .social-proof-toast,
    .hero-bg-shapes,
    .section-bg-shapes,
    .hero-grid-overlay,
    .hero-noise-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
