/* ============================================================
   COCOBI GOOD HABITS - KID TOILET
   Frutiger Aero Design System
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    /* Primary Palette */
    --color-primary: #0078d4;
    --color-primary-dark: #005a9e;
    --color-primary-light: #4da3e8;
    --color-primary-ultralight: #e8f4f8;
    
    /* Secondary Palette */
    --color-secondary: #e8f4f8;
    --color-secondary-dark: #c8e4ee;
    
    /* Accent */
    --color-accent: #7fba00;
    --color-accent-dark: #5e8c00;
    --color-accent-light: #a4d634;
    
    /* Semantic */
    --color-pink: #e8437a;
    --color-pink-light: #fce4ec;
    --color-orange: #f5a623;
    --color-orange-light: #fff3e0;
    --color-purple: #8764b8;
    --color-purple-light: #ede7f6;
    --color-teal: #00b7c3;
    --color-teal-light: #e0f7fa;
    --color-red: #d13438;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #f8fbfd;
    --color-gray-50: #f5f7fa;
    --color-gray-100: #edf1f5;
    --color-gray-200: #dde3ea;
    --color-gray-300: #c4cdd6;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Footer */
    --color-footer-bg: #1a2940;
    --color-footer-text: #c4d5e8;
    
    /* Typography */
    --font-display: 'Fredoka', 'Segoe UI', 'Calibri', sans-serif;
    --font-body: 'Nunito', 'Segoe UI', 'Calibri', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Shadows - Frutiger Aero style */
    --shadow-sm: 0 1px 3px rgba(0, 120, 212, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 120, 212, 0.1), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 30px rgba(0, 120, 212, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 16px 50px rgba(0, 120, 212, 0.15), 0 8px 16px rgba(0, 0, 0, 0.05);
    --shadow-glow-blue: 0 0 20px rgba(0, 120, 212, 0.3);
    --shadow-glow-green: 0 0 20px rgba(127, 186, 0, 0.3);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
    --duration-slower: 600ms;
    
    /* Z-index scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-cookie: 600;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

a:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

button:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

::selection {
    background: var(--color-primary-light);
    color: var(--color-white);
}

/* ---- Skip Link ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    z-index: var(--z-toast);
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 700;
    font-size: var(--text-sm);
    transition: top var(--duration-fast);
}

.skip-link:focus {
    top: 0;
    color: var(--color-white);
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    pointer-events: none;
}

.cookie-consent.visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-5);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(232,244,248,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 120, 212, 0.15);
    box-shadow: 0 -4px 30px rgba(0, 120, 212, 0.1);
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(0, 120, 212, 0.3);
    text-underline-offset: 2px;
}

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

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-4);
        text-align: center;
    }
    .cookie-icon-wrap {
        display: none;
    }
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================================
   BUTTONS - Frutiger Aero Aqua Style
   ============================================================ */
.btn-aero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-aero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Primary */
.btn-aero-primary {
    background: linear-gradient(180deg, #2e9af0 0%, #0078d4 40%, #005a9e 100%);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-aero-primary:hover {
    background: linear-gradient(180deg, #4da3e8 0%, #0088ee 40%, #0068bb 100%);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(-1px);
    color: var(--color-white);
}

.btn-aero-primary:active {
    transform: translateY(0);
    background: linear-gradient(180deg, #0078d4 0%, #005a9e 40%, #004a82 100%);
    box-shadow: 0 1px 4px rgba(0, 120, 212, 0.3), inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Secondary */
.btn-aero-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #e8f4f8 40%, #d0e8f0 100%);
    color: var(--color-primary);
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.btn-aero-secondary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #dceef5 40%, #c4e0ec 100%);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.18);
    transform: translateY(-1px);
    color: var(--color-primary);
}

/* Ghost */
.btn-aero-ghost {
    background: transparent;
    color: var(--color-gray-500);
    border: 1px solid var(--color-gray-200);
}

.btn-aero-ghost::before {
    display: none;
}

.btn-aero-ghost:hover {
    background: var(--color-gray-50);
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

/* Glass */
.btn-aero-glass {
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.1) 100%);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-aero-glass:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    color: var(--color-white);
}

/* Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: var(--z-sticky);
    transition: background var(--duration-base), box-shadow var(--duration-base);
}

.header-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(232,244,248,0.88) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
}

.site-header.scrolled .header-glass {
    opacity: 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.logo-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-800);
    line-height: 1.2;
}

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

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-600);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(0, 120, 212, 0.06);
}

.nav-link.active {
    color: var(--color-primary);
    background: rgba(0, 120, 212, 0.08);
}

.nav-cta {
    background: linear-gradient(180deg, #2e9af0 0%, #0078d4 40%, #005a9e 100%);
    color: var(--color-white) !important;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-5);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    pointer-events: none;
}

.nav-cta:hover {
    background: linear-gradient(180deg, #4da3e8 0%, #0088ee 40%, #0068bb 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 120, 212, 0.4);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 2px;
    transition: all var(--duration-base) var(--ease-out);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base) var(--ease-out);
}

.mobile-nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7fb 100%);
    padding: calc(var(--header-height) + var(--space-8)) var(--space-6) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.visible .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-out);
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: rgba(0, 120, 212, 0.06);
    color: var(--color-primary);
}

.mobile-nav-cta {
    background: linear-gradient(180deg, #2e9af0 0%, #0078d4 100%);
    color: var(--color-white) !important;
    text-align: center;
    margin-top: var(--space-4);
    box-shadow: 0 2px 12px rgba(0, 120, 212, 0.3);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-32);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 120, 212, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(127, 186, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #e8f4f8 0%, #f0f8ff 30%, #ffffff 70%);
}

.hero-bg-shine {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    pointer-events: none;
}

/* Bubbles */
.hero-bg-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08) 0%, rgba(127, 186, 0, 0.04) 100%);
    border: 1px solid rgba(0, 120, 212, 0.06);
    animation: bubbleFloat 20s infinite ease-in-out;
}

.bubble-1 { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble-2 { width: 80px; height: 80px; top: 60%; left: 15%; animation-delay: -3s; }
.bubble-3 { width: 60px; height: 60px; top: 30%; right: 10%; animation-delay: -6s; }
.bubble-4 { width: 100px; height: 100px; bottom: 20%; right: 20%; animation-delay: -9s; }
.bubble-5 { width: 40px; height: 40px; top: 50%; left: 40%; animation-delay: -2s; }
.bubble-6 { width: 70px; height: 70px; top: 15%; right: 30%; animation-delay: -5s; }
.bubble-7 { width: 50px; height: 50px; bottom: 30%; left: 30%; animation-delay: -8s; }
.bubble-8 { width: 90px; height: 90px; top: 70%; right: 5%; animation-delay: -11s; }
.bubble-9 { width: 35px; height: 35px; top: 5%; left: 50%; animation-delay: -4s; }
.bubble-10 { width: 55px; height: 55px; bottom: 10%; left: 60%; animation-delay: -7s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-20px) translateX(10px) scale(1.03); }
    50% { transform: translateY(-10px) translateX(-15px) scale(0.97); }
    75% { transform: translateY(-25px) translateX(5px) scale(1.02); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.12) 0%, rgba(127, 186, 0, 0.04) 100%);
    border: 1px solid rgba(127, 186, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-gray-900);
    margin-bottom: var(--space-6);
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-cta-main {
    flex-direction: row-reverse;
}

/* Social proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.social-proof-avatars {
    display: flex;
}

.sp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
}

.sp-avatar:first-child {
    margin-left: 0;
}

.sp-avatar-1 { background: linear-gradient(135deg, #e8437a, #f06292); }
.sp-avatar-2 { background: linear-gradient(135deg, #0078d4, #4da3e8); }
.sp-avatar-3 { background: linear-gradient(135deg, #7fba00, #a4d634); }
.sp-avatar-4 { background: linear-gradient(135deg, #f5a623, #ffcc02); }
.sp-avatar-5 { background: linear-gradient(135deg, #8764b8, #b39ddb); }

.social-proof-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-stars {
    display: flex;
    gap: 1px;
}

.sp-count {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 120, 212, 0.08);
    background: linear-gradient(145deg, #f0f8ff 0%, #e8f4f8 100%);
    padding: 8px;
}

.hero-device-screen {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.hero-device-screen img {
    width: 100%;
    display: block;
}

.hero-device-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    pointer-events: none;
    border-radius: var(--radius-2xl);
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,251,253,0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-700);
    white-space: nowrap;
    z-index: 2;
}

.hero-fc-1 { top: 10%; left: -10%; }
.hero-fc-2 { bottom: 25%; left: -5%; }
.hero-fc-3 { top: 20%; right: -8%; }

/* Float animations */
.anim-float {
    animation: floatY 6s ease-in-out infinite;
}

.anim-float-delayed {
    animation: floatY 6s ease-in-out infinite;
    animation-delay: -3s;
}

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

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ---- Fade-in Animations ---- */
.anim-fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.7s var(--ease-out) forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.35s; }
.anim-delay-4 { animation-delay: 0.5s; }

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

/* Scroll-triggered animations */
[data-anim="slide-up"] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-anim="slide-up"].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    padding: var(--space-12) 0;
    background: var(--color-white);
    position: relative;
    z-index: 3;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(0, 120, 212, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--duration-base);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: var(--radius-md);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.2;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-16);
}

.section-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08) 0%, rgba(127, 186, 0, 0.06) 100%);
    border: 1px solid rgba(0, 120, 212, 0.12);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

.section-tag-light {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

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

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-500);
    line-height: 1.7;
}

.section-subtitle-light {
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    padding: var(--space-24) 0;
    background: var(--color-off-white);
    position: relative;
}

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

.feature-card {
    position: relative;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(0, 120, 212, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 120, 212, 0.12);
}

.feature-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    pointer-events: none;
}

.feature-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 var(--space-6);
    padding: var(--space-10) var(--space-8);
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 50%, #ffffff 100%);
}

.feature-card-large .feature-icon-wrap {
    grid-row: 1 / 3;
    align-self: start;
}

.feature-card-large .feature-title {
    font-size: var(--text-xl);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    position: relative;
}

.feature-icon-blue {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.12) 0%, rgba(0, 120, 212, 0.04) 100%);
    color: var(--color-primary);
}

.feature-icon-green {
    background: linear-gradient(135deg, rgba(127, 186, 0, 0.15) 0%, rgba(127, 186, 0, 0.04) 100%);
    color: var(--color-accent);
}

.feature-icon-pink {
    background: linear-gradient(135deg, rgba(232, 67, 122, 0.12) 0%, rgba(232, 67, 122, 0.04) 100%);
    color: var(--color-pink);
}

.feature-icon-orange {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.04) 100%);
    color: var(--color-orange);
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(135, 100, 184, 0.12) 0%, rgba(135, 100, 184, 0.04) 100%);
    color: var(--color-purple);
}

.feature-icon-teal {
    background: linear-gradient(135deg, rgba(0, 183, 195, 0.12) 0%, rgba(0, 183, 195, 0.04) 100%);
    color: var(--color-teal);
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-3);
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-large {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .feature-card-large .feature-icon-wrap {
        grid-row: auto;
    }
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots-section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.screenshots-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0a2540 0%, #0f3460 40%, #0a2540 100%);
    z-index: 0;
}

.screenshots-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 40% at 30% 30%, rgba(0, 120, 212, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 70% 70%, rgba(127, 186, 0, 0.1) 0%, transparent 70%);
}

.screenshots-section .container {
    position: relative;
    z-index: 1;
}

.screenshots-section .section-header-light {
    text-align: center;
}

/* Carousel */
.screenshots-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
}

.carousel-slide {
    display: none;
    animation: carouselFadeIn 0.5s var(--ease-out);
}

.carousel-slide.active {
    display: block;
}

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

.screenshot-frame {
    position: relative;
    background: linear-gradient(180deg, #3a4a5c 0%, #2a3a4c 100%);
    border-radius: var(--radius-xl);
    padding: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06);
    overflow: hidden;
}

.screenshot-frame-top {
    display: flex;
    gap: 6px;
    padding: 10px 14px 6px;
}

.frame-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.frame-dot:nth-child(1) { background: #ff5f56; }
.frame-dot:nth-child(2) { background: #ffbd2e; }
.frame-dot:nth-child(3) { background: #27c93f; }

.screenshot-img {
    border-radius: 0 0 calc(var(--radius-xl) - 4px) calc(var(--radius-xl) - 4px);
    width: 100%;
    display: block;
}

.screenshot-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    pointer-events: none;
}

.screenshot-caption {
    text-align: center;
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    transition: all var(--duration-fast) var(--ease-out);
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: var(--space-2);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    transition: all var(--duration-base) var(--ease-out);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--color-primary-light);
    box-shadow: 0 0 8px rgba(0, 120, 212, 0.5);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

.step-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    position: relative;
}

.step-number-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-6);
}

.step-number {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #4da3e8 0%, #0078d4 40%, #005a9e 100%);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.step-number-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.15) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.step-connector {
    position: absolute;
    top: 48px;
    right: -40px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-light), rgba(0, 120, 212, 0.1));
}

.step-card:last-child .step-connector {
    display: none;
}

.step-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-3);
}

.step-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .step-connector {
        display: none;
    }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: var(--space-24) 0;
    background: var(--color-off-white);
}

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

.testimonial-card {
    position: relative;
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(0, 120, 212, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}

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

.testimonial-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
    position: relative;
}

.testimonial-quote {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    position: relative;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    position: relative;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.ta-1 { background: linear-gradient(135deg, #e8437a, #f06292); }
.ta-2 { background: linear-gradient(135deg, #0078d4, #4da3e8); }
.ta-3 { background: linear-gradient(135deg, #7fba00, #a4d634); }

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gray-800);
}

.testimonial-location {
    font-size: var(--text-xs);
    color: var(--color-gray-400);
}

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

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

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

.faq-item {
    border: 1px solid rgba(0, 120, 212, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
    transition: all var(--duration-base) var(--ease-out);
}

.faq-item.active {
    border-color: rgba(0, 120, 212, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gray-800);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    gap: var(--space-4);
    transition: color var(--duration-fast);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--duration-base) var(--ease-out);
    color: var(--color-gray-400);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: 1.8;
}

/* ============================================================
   SIGNUP / LEAD FORM SECTION
   ============================================================ */
.signup-section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.signup-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.signup-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a2540 0%, #0f3460 40%, #0a2540 100%);
}

.signup-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 120, 212, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
}

.signup-section .container {
    position: relative;
    z-index: 1;
}

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

.signup-content {
    color: var(--color-white);
}

.signup-content .section-header {
    text-align: left;
    margin-bottom: var(--space-8);
    max-width: none;
}

.signup-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Form card */
.signup-form-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.signup-form-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.signup-form-inner {
    position: relative;
    z-index: 1;
}

.form-heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

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

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-2);
}

.required-star {
    color: var(--color-pink);
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4) var(--space-3) calc(var(--space-4) + 28px);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
}

.form-input.error {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(209, 52, 56, 0.2);
}

.form-error {
    display: block;
    font-size: var(--text-xs);
    color: #ff6b6b;
    margin-top: var(--space-1);
    min-height: 16px;
}

/* Checkbox */
.form-consent {
    margin-top: var(--space-4);
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
}

.checkbox-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 2px;
    position: relative;
}

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

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-wrap input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.3);
}

.checkbox-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

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

/* Submit button loader */
.btn-loader {
    display: none;
}

.btn-aero.loading .btn-text {
    opacity: 0;
}

.btn-aero.loading .btn-loader {
    display: flex;
    position: absolute;
}

/* Success state */
.signup-success {
    display: none;
    text-align: center;
    padding: var(--space-8) 0;
    position: relative;
    z-index: 1;
}

.signup-success.visible {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.success-icon-wrap {
    margin-bottom: var(--space-5);
}

.success-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.success-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .signup-content .section-header {
        text-align: center;
    }
    .signup-trust-badges {
        align-items: center;
    }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    padding: var(--space-24) 0;
    background: var(--color-off-white);
}

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

.trust-card {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(0, 120, 212, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-base) var(--ease-out);
}

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

.trust-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
}

.trust-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: var(--space-3);
}

.trust-desc {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    line-height: 1.7;
}

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

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

/* ============================================================
   SOCIAL PROOF TICKER
   ============================================================ */
.social-proof-ticker {
    padding: var(--space-5) 0;
    background: linear-gradient(90deg, var(--color-secondary) 0%, #f0f8ff 50%, var(--color-secondary) 100%);
    border-top: 1px solid rgba(0, 120, 212, 0.06);
    border-bottom: 1px solid rgba(0, 120, 212, 0.06);
}

.ticker-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.ticker-icon {
    flex-shrink: 0;
    animation: tickerPulse 2s ease-in-out infinite;
}

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

.ticker-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-600);
    overflow: hidden;
    min-height: 20px;
}

.ticker-text span {
    display: block;
    animation: tickerSlide 0.4s var(--ease-out);
}

@keyframes tickerSlide {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
}

.footer-wave {
    position: relative;
    top: 1px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-main {
    padding: var(--space-16) 0 var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-10);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    text-decoration: none;
}

.footer-logo-icon {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo-text span {
    color: var(--color-primary-light);
}

.footer-brand-desc {
    font-size: var(--text-sm);
    color: var(--color-footer-text);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-footer-text);
    transition: color var(--duration-fast);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--color-primary-light);
}

.footer-support-hours {
    font-size: var(--text-xs);
    color: rgba(196, 213, 232, 0.6);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link-list a {
    font-size: var(--text-sm);
    color: var(--color-footer-text);
    transition: color var(--duration-fast);
    text-decoration: none;
}

.footer-link-list a:hover {
    color: var(--color-primary-light);
}

.footer-address {
    font-size: var(--text-sm);
    color: var(--color-footer-text);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-5) 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(196, 213, 232, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-5);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(196, 213, 232, 0.5);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #4da3e8 0%, #0078d4 40%, #005a9e 100%);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.35);
    z-index: var(--z-dropdown);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--duration-base) var(--ease-out);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.45);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-20);
    overflow: hidden;
    text-align: center;
}

.legal-hero .hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.legal-hero .hero-bg-gradient {
    background: 
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(0, 120, 212, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #e8f4f8 0%, #f0f8ff 50%, #ffffff 100%);
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
}

.legal-hero-date {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    font-weight: 500;
}

.legal-hero .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.legal-hero .hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Legal Content */
.legal-content-section {
    padding: var(--space-16) 0 var(--space-24);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-12) var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 120, 212, 0.06);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-800);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-secondary);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gray-700);
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}

.legal-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

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

.legal-content ul {
    list-style: disc;
}

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

.legal-content li {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 120, 212, 0.3);
    text-underline-offset: 2px;
}

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

.legal-content strong {
    color: var(--color-gray-700);
    font-weight: 700;
}

.legal-footer-note {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 2px solid var(--color-secondary);
}

.legal-footer-note p {
    font-size: var(--text-xs);
    color: var(--color-gray-400);
    text-align: center;
}

@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-6) var(--space-5);
    }
}

/* ============================================================
   RESPONSIVE - HERO
   ============================================================ */
@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
        padding-bottom: var(--space-24);
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }
    .hero-content {
        max-width: none;
    }
    .hero-subtitle {
        max-width: none;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-social-proof {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn-aero {
        justify-content: center;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-header,
    .cookie-consent,
    .mobile-nav-overlay,
    .back-to-top,
    .hero-bg-bubbles,
    .hero-wave,
    .footer-wave {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
```

Now the JavaScript:

```js