/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Primary Palette */
    --primary: #0c1445;
    --primary-deep: #060a2e;
    --primary-mid: #101b5c;
    --secondary: #ffffff;
    --accent: #7dd3fc;
    --accent-purple: #a78bfa;
    --accent-pink: #f472b6;
    --accent-green: #34d399;
    --accent-yellow: #fbbf24;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(125, 211, 252, 0.25);
    --glass-blur: 24px;
    --glass-blur-heavy: 40px;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-dark: #1a1a2e;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(125, 211, 252, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(125, 211, 252, 0.25);
    --shadow-chromatic: 
        -2px -2px 8px rgba(125, 211, 252, 0.15),
        2px 2px 8px rgba(167, 139, 250, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-chromatic-hover:
        -3px -3px 12px rgba(125, 211, 252, 0.25),
        3px 3px 12px rgba(167, 139, 250, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-levitate: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-levitate-high:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25);

    /* Fonts */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'DM Sans', sans-serif;

    /* Z-Index */
    --z-behind: -1;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* 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);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-deep);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(12, 20, 69, 1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(88, 28, 135, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 60%, rgba(15, 23, 42, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(6, 78, 59, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(30, 27, 75, 0.6) 0%, transparent 40%),
        linear-gradient(180deg, #060a2e 0%, #0c1445 20%, #1e1b4b 40%, #134e4a 70%, #0c1445 100%);
    z-index: var(--z-behind);
    pointer-events: none;
}

/* Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: var(--z-behind);
    pointer-events: none;
    opacity: 0.5;
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Selection */
::selection {
    background: rgba(125, 211, 252, 0.3);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(125, 211, 252, 0.2);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 211, 252, 0.4);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 50%, var(--accent-purple) 100%);
    color: var(--primary-deep);
    box-shadow: 
        0 4px 20px rgba(125, 211, 252, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(125, 211, 252, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--primary-deep);
}

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

/* Shimmer effect on primary button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 4s infinite;
}

@keyframes btnShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-chromatic);
    color: var(--text-primary);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-3xl));
    max-width: 860px;
    background: rgba(12, 20, 69, 0.92);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    z-index: var(--z-toast);
    box-shadow: 
        var(--shadow-chromatic),
        0 0 80px rgba(125, 211, 252, 0.08);
    animation: slideUp 0.6s var(--transition-spring) forwards;
}

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

.cookie-inner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.cookie-icon {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    color: var(--primary-deep);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

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

.btn-cookie-necessary {
    padding: 0.6rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-base);
}

.btn-cookie-necessary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.btn-cookie-settings {
    padding: 0.6rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

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

.cookie-settings-panel {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

.cookie-setting-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.cookie-setting-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 1.75rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    padding: var(--space-md) 0;
}

.main-header.scrolled {
    background: rgba(6, 10, 46, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    color: var(--primary-deep);
    font-weight: 600;
    padding: 0.55rem 1.25rem;
}

.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
    color: var(--primary-deep);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: var(--z-overlay);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(6, 10, 46, 0.97);
        backdrop-filter: blur(var(--glass-blur-heavy));
        -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem var(--space-2xl) var(--space-2xl);
        gap: var(--space-sm);
        transition: right var(--transition-slow);
        border-left: 1px solid var(--glass-border);
        z-index: var(--z-overlay);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-link.nav-cta {
        margin-top: var(--space-md);
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 7rem var(--space-xl) var(--space-3xl);
    overflow: hidden;
}

/* Animated Blobs */
.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 42% 58% 60% 40% / 45% 55% 45% 55%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, transparent 70%);
    top: 20%;
    right: -8%;
    animation-delay: -5s;
    border-radius: 55% 45% 50% 50% / 40% 60% 40% 60%;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 15%;
    animation-delay: -10s;
    border-radius: 48% 52% 55% 45% / 50% 42% 58% 50%;
}

.blob-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    bottom: -5%;
    right: 20%;
    animation-delay: -15s;
    border-radius: 60% 40% 45% 55% / 55% 48% 52% 45%;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -40px) scale(1.05) rotate(5deg); }
    50% { transform: translate(-20px, 20px) scale(0.95) rotate(-3deg); }
    75% { transform: translate(15px, 35px) scale(1.02) rotate(7deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent-green);
    width: fit-content;
    animation: fadeSlideIn 0.8s ease forwards;
    opacity: 0;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    animation: fadeSlideIn 0.8s ease 0.15s forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 40%, var(--accent-pink) 80%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: fadeSlideIn 0.8s ease 0.15s forwards, gradientShift 6s ease-in-out infinite;
    opacity: 0;
}

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    animation: fadeSlideIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeSlideIn 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    animation: fadeSlideIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

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

/* Hero Visual / Phone Mockup */
.hero-visual-column {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeSlideIn 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-phone-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-chromatic-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneLevitate 6s ease-in-out infinite;
}

@keyframes phoneLevitate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.phone-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Floating Color Dots */
.floating-color-dot {
    position: absolute;
    border-radius: 50%;
    animation: dotFloat 8s ease-in-out infinite;
}

.dot-1 {
    width: 16px;
    height: 16px;
    background: var(--accent);
    top: 10%;
    right: -20px;
    animation-delay: 0s;
    box-shadow: 0 0 12px var(--accent);
}

.dot-2 {
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    top: 30%;
    left: -25px;
    animation-delay: -2s;
    box-shadow: 0 0 10px var(--accent-purple);
}

.dot-3 {
    width: 20px;
    height: 20px;
    background: var(--accent-pink);
    bottom: 25%;
    right: -30px;
    animation-delay: -4s;
    box-shadow: 0 0 14px var(--accent-pink);
}

.dot-4 {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    bottom: 15%;
    left: -15px;
    animation-delay: -6s;
    box-shadow: 0 0 8px var(--accent-green);
}

.dot-5 {
    width: 14px;
    height: 14px;
    background: var(--accent-yellow);
    top: 55%;
    right: -10px;
    animation-delay: -3s;
    box-shadow: 0 0 10px var(--accent-yellow);
}

@keyframes dotFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(8px, -15px); }
    50% { transform: translate(-5px, 10px); }
    75% { transform: translate(12px, 5px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: fadeSlideIn 1s ease 1s forwards;
    opacity: 0;
}

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

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-section {
    padding: var(--space-xl) 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
}

.ticker-container {
    overflow: hidden;
    position: relative;
}

.ticker-container::before,
.ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-deep), transparent);
}

.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-deep), transparent);
}

.ticker-track {
    display: flex;
    gap: var(--space-3xl);
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

/* Iridescent border shimmer */
.feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, 
        rgba(125, 211, 252, 0) 0%, 
        rgba(125, 211, 252, 0.15) 25%, 
        rgba(167, 139, 250, 0.15) 50%, 
        rgba(244, 114, 182, 0.15) 75%, 
        rgba(125, 211, 252, 0) 100%
    );
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-slow);
    animation: iridescent 8s ease-in-out infinite;
}

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

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

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card-wide {
    grid-column: span 2;
}

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

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

.feature-tag-row {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    background: rgba(125, 211, 252, 0.1);
    border: 1px solid rgba(125, 211, 252, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-card-large,
    .feature-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-large,
    .feature-card-wide {
        grid-column: span 1;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
}

.gallery-item-1 { grid-column: span 2; grid-row: span 2; }
.gallery-item-2 { grid-column: span 1; }
.gallery-item-3 { grid-column: span 1; }
.gallery-item-4 { grid-column: span 2; }

.gallery-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    height: 100%;
    min-height: 220px;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-levitate);
}

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

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-chromatic-hover);
    border-color: var(--glass-border-hover);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(6, 10, 46, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item-1 { grid-column: span 2; grid-row: span 1; }
    .gallery-item-4 { grid-column: span 2; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-1,
    .gallery-item-4 { grid-column: span 1; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-text .section-tag {
    margin-bottom: var(--space-lg);
}

.about-text .section-title {
    margin-bottom: var(--space-xl);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-stack {
    position: relative;
    width: 380px;
    height: 440px;
}

.about-img-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-chromatic);
    transition: all var(--transition-slow);
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    width: 280px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 240px;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-img-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-chromatic-hover);
    z-index: 3;
}

.about-floating-badge {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background: rgba(12, 20, 69, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 4;
    box-shadow: var(--shadow-chromatic);
    animation: badgeBounce 3s ease-in-out infinite;
}

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

.afb-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-yellow);
}

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

.afb-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

    .about-visual {
        order: -1;
    }

    .about-image-stack {
        width: 320px;
        height: 380px;
    }

    .about-img-1 {
        width: 240px;
        height: 280px;
    }

    .about-img-2 {
        width: 200px;
        height: 240px;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-5xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-chromatic);
    border-color: var(--glass-border-hover);
}

.trust-icon {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-card a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-5xl) 0;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-item.active {
    border-color: rgba(125, 211, 252, 0.3);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
    background: none;
    cursor: pointer;
}

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

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

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

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

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.signup-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.signup-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.signup-perks {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.signup-counter {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.counter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-purple), var(--accent-pink));
    border-radius: var(--radius-full);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.counter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    animation: fillGlow 2s ease-in-out infinite;
}

@keyframes fillGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.signup-counter p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.signup-counter strong {
    color: var(--accent);
    font-weight: 700;
}

/* Form */
.signup-form-wrap {
    position: relative;
}

.signup-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-2xl);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-chromatic);
    position: relative;
    overflow: hidden;
}

/* Holographic border shimmer on form */
.signup-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, 
        rgba(125, 211, 252, 0.2) 0%,
        rgba(167, 139, 250, 0.2) 25%,
        rgba(244, 114, 182, 0.2) 50%,
        rgba(52, 211, 153, 0.2) 75%,
        rgba(125, 211, 252, 0.2) 100%
    );
    background-size: 300% 300%;
    z-index: -1;
    animation: iridescent 6s ease-in-out infinite;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0 var(--space-md);
    transition: all var(--transition-fast);
}

.input-wrap svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.input-wrap:focus-within svg {
    color: var(--accent);
}

.input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 0.85rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.input-wrap input::placeholder {
    color: var(--text-muted);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #f87171;
    margin-top: 4px;
    min-height: 1.2em;
}

/* Consent Checkbox */
.form-consent {
    margin-bottom: var(--space-xl);
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    background: rgba(255, 255, 255, 0.03);
}

.checkmark svg {
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
    color: var(--primary-deep);
}

.checkbox-wrap input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-wrap input[type="checkbox"]:checked + .checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.consent-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

.btn-loader {
    display: flex;
    align-items: center;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* Success Message */
.signup-success {
    background: var(--glass-bg);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.1);
    animation: fadeSlideIn 0.6s ease forwards;
}

.success-icon {
    margin-bottom: var(--space-xl);
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
    opacity: 0;
    transform: scale(0);
}

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

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--accent-green);
}

.signup-success p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    border-top: 1px solid var(--glass-border);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo .logo-text {
    font-size: 1.15rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 260px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-address p,
.footer-copy p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

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

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: 7rem;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-levitate);
    color: var(--text-dark);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.legal-content .legal-updated {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid #e5e7eb;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-mid);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

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

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

.legal-content strong {
    font-weight: 600;
    color: #1f2937;
}

.legal-content .contact-box {
    background: #f3f4f6;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--primary);
}

.legal-content .contact-box p {
    margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
    .legal-content {
        margin: 0 var(--space-md);
        padding: var(--space-xl);
    }

    .legal-content h1 {
        font-size: 1.7rem;
    }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE HERO
   ============================================ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-text-column {
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

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

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

    .hero-visual-column {
        order: -1;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-actions {
        width: 100%;
    }
}