/* ========================================
   PLACEMENT HOUSE - LANDING PAGE STYLES
   Mobile-First Responsive Design
   ======================================== */

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   ======================================== */
:root {
    /* Colors - Cyber Dark Theme */
    --color-primary: #7F00FF;
        /* Electric Purple */
    --color-primary-dark: #6600CC;
    --color-secondary: #0096FF;
      /* Cyber Blue */
    --color-secondary-dark: #0077CC;
    --color-dark: #000000;
           /* True Black */
    --color-dark-light: #1B1B1B;
     /* Graphite */
    --color-dark-lighter: #2A2A2A;
   /* Card backgrounds */
    --color-text: #F5F5F5;
           /* Mist White */
    --color-text-muted: #A0A0A0;
    --color-text-dark: #666666;
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;
    /* iPhone Message Colors */
    --color-message-sent: #0096FF;
    /* Cyber Blue bubble */
    --color-message-received: #2A2A2A;
 /* Dark gray bubble */
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7F00FF 0%, #A855F7 100%);
    --gradient-secondary: linear-gradient(135deg, #0096FF 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1B1B1B 100%);
    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
      /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2rem;
      /* 32px */
    --spacing-xl: 3rem;
      /* 48px */
    --spacing-2xl: 4rem;
     /* 64px */
    --spacing-3xl: 6rem;
     /* 96px */
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    /* Font Sizes - Mobile First */
    --font-size-xs: 0.75rem;
     /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
      /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
     /* 20px */
    --font-size-2xl: 1.5rem;
     /* 24px */
    --font-size-3xl: 1.875rem;
   /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */
    --font-size-5xl: 3rem;
       /* 48px */
    /* Borders & Radius */
    --border-radius-sm: 0.375rem;
  /* 6px */
    --border-radius-md: 0.5rem;
    /* 8px */
    --border-radius-lg: 0.75rem;
   /* 12px */
    --border-radius-xl: 1rem;
      /* 16px */
    --border-radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    /* Z-index Scale */
    --z-negative: -1;
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Light Mode Theme */
.genie-landing-page[data-theme="light"] {
    --color-primary: #7F00FF;
        /* Electric Purple */
    --color-primary-dark: #6600CC;
    --color-secondary: #0096FF;
      /* Cyber Blue */
    --color-secondary-dark: #0077CC;
    --color-dark: #F5F5F5;
           /* Light background */
    --color-dark-light: #FFFFFF;
     /* Pure white */
    --color-dark-lighter: #E5E5E5;
   /* Light gray cards */
    --color-text: #000000;
           /* Black text */
    --color-text-muted: #666666;
    --color-text-dark: #333333;
    --color-message-sent: #0096FF;
    --color-message-received: #E5E5E5;
    --gradient-dark: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

/* Light Mode Hero Background */
.genie-landing-page[data-theme="light"] .hero {
    background: transparent;
 /* Using body gradient */
}

.genie-landing-page[data-theme="light"] .hero::before {
    background-image: radial-gradient(circle at 25% 40%, rgba(127, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(0, 150, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(127, 0, 255, 0.04) 0%, transparent 60%);
}

.genie-landing-page[data-theme="light"] .hero-bg-overlay {
    background: transparent;
 /* Using body gradient */
}

/* Light Mode Full-Page Gradient */
.genie-landing-page[data-theme="light"] {
    background: linear-gradient(to bottom,
        #e8d5ff 0%,      /* Light purple - top */
        #d4b3ff 15%,     /* Medium light purple */
        #e6dbff 30%,     /* Soft purple */
        #f0f0f0 55%,     /* Light gray middle */
        #f8f8f8 75%,     /* Very light gray */
        #ffffff 100%     /* Pure white - bottom */
    );
    background-attachment: scroll;
 /* Gradient scrolls with page content */
    background-size: 100% 100%;
 /* KEY FIX: Gradient spans full body height */
    background-repeat: no-repeat;
}

/* Light Mode Text Shadows - Minimal for clean appearance */
.genie-landing-page[data-theme="light"] h1,
.genie-landing-page[data-theme="light"] h2,
.genie-landing-page[data-theme="light"] h3,
.genie-landing-page[data-theme="light"] h4,
.genie-landing-page[data-theme="light"] h5,
.genie-landing-page[data-theme="light"] h6 {
    text-shadow: none;
 /* Removed excessive glow */
}

.genie-landing-page[data-theme="light"] p,
.genie-landing-page[data-theme="light"] li,
.genie-landing-page[data-theme="light"] span,
.genie-landing-page[data-theme="light"] label {
    text-shadow: none;
 /* Removed excessive glow */
}

/* Light Mode Card/Component Styles */
.genie-landing-page[data-theme="light"] .step,
.genie-landing-page[data-theme="light"] .message-bubble,
.genie-landing-page[data-theme="light"] .faq-item {
    border: 1px solid rgba(127, 0, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.genie-landing-page[data-theme="light"] .message-container.received .message-bubble {
    border-color: rgba(127, 0, 255, 0.25);
}

.genie-landing-page[data-theme="light"] .message-container.sent .message-bubble {
    border-color: rgba(0, 150, 255, 0.25);
}

/* Light Mode Form Styles */
.genie-landing-page[data-theme="light"] .email-input {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(127, 0, 255, 0.3);
    color: #000000;
}

.genie-landing-page[data-theme="light"] .email-input:focus {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

.genie-landing-page[data-theme="light"] .email-input::placeholder {
    text-shadow: none;
 /* Remove shadow from placeholder text */
}

/* Light Mode Navigation Styles */
.genie-landing-page[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(127, 0, 255, 0.2);
}

.genie-landing-page[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Light Mode Text Contrast Fixes */
.genie-landing-page[data-theme="light"] .hero-title .highlight {
    color: #1a0033;
 /* Dark purple for contrast on light background */
}

.genie-landing-page[data-theme="light"] .hero-badge {
    color: #1a0033;
 /* Dark purple */
}

.genie-landing-page[data-theme="light"] .stat-number {
    background: linear-gradient(135deg, #4a0066 0%, #7F00FF 50%, #0096FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
}

.genie-landing-page[data-theme="light"] .nav-logo,
.genie-landing-page[data-theme="light"] .section-badge,
.genie-landing-page[data-theme="light"] .final-cta-badge,
.genie-landing-page[data-theme="light"] .step-icon {
    color: #1a0033 !important;
 /* Dark purple for light mode */
}

/* Light Mode Photo Gallery Gradient Fades */
.genie-landing-page[data-theme="light"] .photo-gallery-wrapper::before {
    background: linear-gradient(to right,
        rgba(245, 240, 250, 0.95) 0%,
        rgba(245, 240, 250, 0.7) 30%,
        rgba(245, 240, 250, 0.3) 60%,
        transparent 100%
    );
}

.genie-landing-page[data-theme="light"] .photo-gallery-wrapper::after {
    background: linear-gradient(to left,
        rgba(245, 240, 250, 0.95) 0%,
        rgba(245, 240, 250, 0.7) 30%,
        rgba(245, 240, 250, 0.3) 60%,
        transparent 100%
    );
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
html, body {
    margin: 0;
    padding: 0;
    background: #000000;
    overflow-x: hidden;
}

.genie-landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.genie-landing-page {
    font-family: var(--font-primary);
    font-size: 16px;
 /* Explicit px to ensure consistent rem calculations */
    line-height: 1.6;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Full-page purple to black gradient - spans entire page height */
    background: linear-gradient(to bottom,
        #1a0033 0%,      /* Deep purple - top */
        #2d004d 15%,     /* Purple */
        #4a0066 30%,     /* Medium purple */
        #1B1B1B 55%,     /* Graphite middle */
        #0a0a0a 75%,     /* Near black */
        #000000 100%     /* True black - bottom */
    );
    background-attachment: scroll;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.genie-landing-page.menu-open {
    overflow: hidden;
}

/* Container */
.genie-landing-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
.genie-landing-page h1, .genie-landing-page h2, .genie-landing-page h3, .genie-landing-page h4, .genie-landing-page h5, .genie-landing-page h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.genie-landing-page p {
    margin-bottom: var(--spacing-sm);
}

/* Additional text elements */
.genie-landing-page li, .genie-landing-page input, .genie-landing-page textarea {
}

/* Interactive elements */
.genie-landing-page span, .genie-landing-page label {
}

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

.genie-landing-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.genie-landing-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(0, 0, 0, 0.6);
 /* Glassmorphism - semi-transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(127, 0, 255, 0.3);
    padding: 20px 0;
    transition: all var(--transition-base);
}

.genie-landing-page .navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
 /* Darker when scrolled */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
}

.genie-landing-page .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Position social icons on the right while logo stays centered */
.genie-landing-page .navbar .nav-social {
    position: absolute;
    right: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
}

.genie-landing-page .nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-primary);
    z-index: var(--z-popover);
    transition: var(--transition-fast);
}

.genie-landing-page .nav-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.genie-landing-page .nav-logo i {
    font-size: var(--font-size-2xl);
}

/* Logo Images - Dark/Light Mode */
.genie-landing-page .nav-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.genie-landing-page .footer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Mobile: Smaller logo and tighter navbar */
@media (max-width: 767px) {
    .genie-landing-page .navbar {
        padding: 12px 0;
    }

    .genie-landing-page .navbar.scrolled {
        padding: 10px 0;
    }

    .genie-landing-page .nav-container {
        justify-content: space-between;
    }

    .genie-landing-page .navbar .nav-social {
        position: static;
        transform: none;
    }

    .genie-landing-page .navbar .nav-social .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .genie-landing-page .nav-logo img {
        height: 36px;
    }

    .genie-landing-page .footer-logo img {
        height: 48px;
    }
}

/* Dark mode (default): show dark logo, hide light logo */
.genie-landing-page .logo-dark {
    display: block;
}

.genie-landing-page .logo-light {
    display: none;
}

/* Light mode: show light logo, hide dark logo */
.genie-landing-page[data-theme="light"] .logo-dark {
    display: none;
}

.genie-landing-page[data-theme="light"] .logo-light {
    display: block;
}

/* Mobile Menu Toggle */
.genie-landing-page .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: var(--z-popover);
}

.genie-landing-page .hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-base);
}

.genie-landing-page .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.genie-landing-page .nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.genie-landing-page .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu - Mobile First */
.genie-landing-page .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: 80px var(--spacing-lg) var(--spacing-lg);
    list-style: none;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-popover);
}

.genie-landing-page .nav-menu.active {
    right: 0;
}

.genie-landing-page .nav-link {
    display: block;
    padding: var(--spacing-md) var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    position: relative;
}

.genie-landing-page .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.genie-landing-page .nav-link:hover,
.genie-landing-page .nav-link:focus {
    color: var(--color-primary);
    transform: translateX(5px);
}

.genie-landing-page .nav-link:hover::after {
    transform: scaleX(1);
}

/* Navigation Social Icons */
.genie-landing-page .nav-social {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    margin-left: auto;
}

.genie-landing-page .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-dark-lighter);
    border: 1px solid rgba(127, 0, 255, 0.3);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    transition: var(--transition-fast);
}

.genie-landing-page .social-icon:hover {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.9), rgba(0, 150, 255, 0.9));
    color: var(--color-text);
    border-color: var(--color-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(127, 0, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Theme Toggle Switch - Mobile Nav */
.genie-landing-page .nav-theme-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-right: 0;
    padding-right: var(--spacing-md);
}

.genie-landing-page .theme-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.genie-landing-page .theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.genie-landing-page .theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-lighter);
    border: 2px solid rgba(127, 0, 255, 0.3);
    transition: var(--transition-base);
    border-radius: 34px;
}

.genie-landing-page .theme-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.genie-landing-page .theme-switch input:checked + .theme-slider {
    background: var(--color-dark-lighter);
    border-color: rgba(0, 150, 255, 0.3);
}

.genie-landing-page .theme-switch input:checked + .theme-slider:before {
    transform: translateX(24px);
    background: var(--gradient-secondary);
}

.genie-landing-page .theme-icon {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.genie-landing-page .theme-icon.active {
    color: var(--color-primary);
}

/* Fixed Theme Toggle - Desktop Bottom Right */
.genie-landing-page .theme-toggle-fixed {
    display: none;
 /* Hidden on mobile by default */
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: var(--z-fixed);
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--color-dark-lighter);
    border: 2px solid rgba(127, 0, 255, 0.3);
    border-radius: var(--border-radius-full);
    padding: var(--spacing-sm) var(--spacing-md);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.genie-landing-page .theme-toggle-fixed:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.4);
}

/* ========================================
   BUTTONS
   ======================================== */
.genie-landing-page .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.genie-landing-page .btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.genie-landing-page .btn-primary:hover,
.genie-landing-page .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.genie-landing-page .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.genie-landing-page .btn-secondary:hover,
.genie-landing-page .btn-secondary:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
}

.genie-landing-page .btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.genie-landing-page .btn-large .fa-stack {
    font-size: 14px;
}

.genie-landing-page .btn-xl {
    padding: 24px 300px;
    font-size: 27px !important;
    font-weight: 900 !important;
    width: auto;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    letter-spacing: 1px;
}

/* Stacked dollar icon style */
.genie-landing-page .btn-primary .fa-stack {
    font-size: 24px;
    width: 2em;
    height: 2em;
    line-height: 2em;
}

.genie-landing-page .btn-xl .fa-stack {
    font-size: 28px;
}

.genie-landing-page .btn-primary .fa-stack .fa-circle {
    color: white;
}

.genie-landing-page .btn-primary .fa-stack .fa-dollar-sign {
    color: #0096FF;
}

.genie-landing-page .btn-block {
    width: 100%;
    justify-content: center;
}

/* Clean button text without glow effects */
.genie-landing-page .btn-primary,
.genie-landing-page .btn-secondary,
.genie-landing-page .btn-large,
.genie-landing-page button,
.genie-landing-page [type="submit"] {
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HERO SECTION - RIPPLING-STYLE SPLIT LAYOUT
   ======================================== */
.genie-landing-page .hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-md) var(--spacing-3xl);
    overflow: visible;
    /* Background removed - using body gradient */
    background: transparent;
}

.genie-landing-page .hero::before {
    /* Removed radial overlays for seamless gradient flow */
    display: none;
    pointer-events: none;
 /* Ensure no click interference */
}

.genie-landing-page .hero-bg-overlay {
    /* Removed unnecessary overlay layer for seamless gradient */
    display: none;
}

.genie-landing-page .hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
 /* Wider for modern desktop feel */
    margin: 0 auto;
    /* DESKTOP: 50/50 Split Layout */
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Mobile/Tablet: Centered Layout (Default) */
.genie-landing-page .hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.genie-landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-full);
    color: #FFFFFF;
 /* Changed from purple for contrast on gradient */
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    text-shadow: none !important;
 /* Clean, crisp text without glow */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all badges have clean, crisp text */
.genie-landing-page .section-badge,
.genie-landing-page .final-cta-badge,
.genie-landing-page .badge {
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.genie-landing-page .hero-title {
    font-family: var(--font-display) !important;
    font-size: 36px !important;
 /* 2.25rem = 36px - explicit px for consistency */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.genie-landing-page .hero-title .highlight {
    background: linear-gradient(135deg, #7F00FF 0%, #A855F7 50%, #0096FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.genie-landing-page .hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

/* Email Capture Form - RESPONSIVE */
.genie-landing-page .email-capture-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.genie-landing-page .email-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.genie-landing-page .email-form .btn {
    width: 100%;
    justify-content: center;
}

.genie-landing-page .email-input {
    width: 100%;
    padding: 18px 24px;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.4);
 /* Semi-transparent dark background */
    border: 2px solid rgba(127, 0, 255, 0.4);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.genie-landing-page .email-input::placeholder {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.genie-landing-page .email-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: none;
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.genie-landing-page .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
    width: 100%;
}

.genie-landing-page .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    position: relative;
    flex: 0 1 auto;
    text-align: center;
}

.genie-landing-page .stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.genie-landing-page .stat-number {
    font-size: 30px;
 /* 1.875rem = 30px - explicit px for consistency */
    font-weight: 900;
    /* Lighter gradient for better contrast on purple background */
    background: linear-gradient(135deg, #FFFFFF 0%, #E0B3FF 50%, #5DD5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    /* Enhanced purple glow for brand color */
    filter: drop-shadow(0 0 20px rgba(127, 0, 255, 0.8))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.genie-landing-page .stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Global fix: Ensure purple text has proper contrast on gradient background */
.genie-landing-page .nav-logo,
.genie-landing-page .section-badge,
.genie-landing-page .final-cta-badge,
.genie-landing-page .step-icon {
    color: #FFFFFF !important;
 /* Force white for visibility on gradient */
}

/* Hero Visual - Video Container */
.genie-landing-page .hero-visual {
    display: block;
    width: 100%;
    margin-top: var(--spacing-xl);
}

.genie-landing-page .hero-video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    background: transparent;
}

.genie-landing-page .hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: transparent;
}

.genie-landing-page .scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
    animation: bounce 2s infinite;
    z-index: 20;
}

/* ========================================
   DESKTOP: RIPPLING-STYLE SPLIT LAYOUT (>=1024px)
   ======================================== */
@media (min-width: 1024px) {
    .genie-landing-page .hero-container {
        grid-template-columns: 45fr 55fr;
 /* 45/55 split - more space for images */
        gap: var(--spacing-2xl);
    }

    /* LEFT SIDE: Centered content */
    .genie-landing-page .hero-content {
        text-align: center;
        padding-right: var(--spacing-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .genie-landing-page .hero-badge {
        margin-bottom: var(--spacing-lg);
    }

    .genie-landing-page .hero-title {
        font-size: 52px !important;
        margin-bottom: var(--spacing-lg);
        max-width: 100%;
        width: 100%;
    }

    .genie-landing-page .hero-subtitle {
        margin: 0 0 var(--spacing-2xl) 0;
        max-width: 540px;
        font-size: 1.125rem;
    }

    /* HORIZONTAL EMAIL FORM */
    .genie-landing-page .email-capture-form {
        max-width: 100%;
        margin: 0 0 var(--spacing-2xl) 0;
    }

    .genie-landing-page .email-form {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .genie-landing-page .email-input {
        flex: 1;
        min-width: 280px;
    }

    .genie-landing-page .email-form .btn {
        width: auto;
        white-space: nowrap;
        padding: 18px 32px;
    }

    .genie-landing-page .hero-stats {
        position: relative;
        justify-content: center;
        gap: var(--spacing-3xl);
        margin-top: var(--spacing-3xl);
        padding: 0 var(--spacing-xl);
        width: 100%;
    }

    .genie-landing-page .stat {
        align-items: center;
        justify-content: center;
    }

    /* RIGHT SIDE: Video */
    .genie-landing-page .hero-visual {
        display: block;
        position: relative;
        height: auto;
        max-height: 750px;
        min-height: 400px;
        overflow: hidden;
        width: 100%;
        margin-top: 0;
    }

    .genie-landing-page .hero-video-container {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        background: transparent;
    }

    .genie-landing-page .hero-video {
        width: 100%;
        height: auto;
        object-fit: contain;
        background: transparent;
    }

    .genie-landing-page .hero-static-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        height: 100%;
        align-items: stretch;
    }

    .genie-landing-page .gallery-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        min-width: 0;
    }

    .genie-landing-page .gallery-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }
}

/* Extra Large Screens: Even wider max-width */
@media (min-width: 1440px) {
    .genie-landing-page .hero-container {
        max-width: 90%;
        gap: var(--spacing-3xl);
    }

    .genie-landing-page .hero-title {
        font-size: 72px !important;
    }

    .genie-landing-page .hero-visual {
        height: auto;
        max-height: none;
    }

    .genie-landing-page .hero-video-container {
        max-width: 700px;
    }

    .genie-landing-page .hero-video {
        width: 100%;
        height: auto;
    }
}

/* Ultra Wide Screens (1920px+) */
@media (min-width: 1920px) {
    .genie-landing-page .hero-container {
        max-width: 85%;
    }

    .genie-landing-page .hero-title {
        font-size: 84px !important;
    }

    .genie-landing-page .hero-video-container {
        max-width: 850px;
    }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.genie-landing-page section {
    padding: var(--spacing-3xl) 0;
}

.genie-landing-page .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.genie-landing-page .section-title {
    font-family: var(--font-display) !important;
    font-size: 30px;
 /* 1.875rem = 30px - explicit px for consistency */
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

.genie-landing-page .section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.genie-landing-page .section-subtitle p {
    margin-bottom: var(--spacing-md);
}

.genie-landing-page .section-subtitle p:last-child {
    margin-bottom: 0;
}

/* ========================================
   WHY GENIE - PHOTO GALLERY
   ======================================== */
.genie-landing-page .why-genie {
    background: transparent;
 /* Using body gradient */
    padding: var(--spacing-3xl) 0;
}

.genie-landing-page .photo-gallery-container {
    position: relative;
    margin-top: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.genie-landing-page .gallery-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(127, 0, 255, 0.2);
    border: 2px solid rgba(127, 0, 255, 0.5);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.genie-landing-page .gallery-arrow:hover {
    background: rgba(127, 0, 255, 0.4);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.5);
}

.genie-landing-page .gallery-arrow:active {
    transform: scale(0.95);
}

.genie-landing-page .photo-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.genie-landing-page .photo-gallery {
    display: flex;
    gap: var(--spacing-lg);
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.genie-landing-page .photo-item {
    position: relative;
    flex-shrink: 0;
    width: 70vw;
    max-width: 350px;
    min-width: 280px;
    height: 70vw;
    max-height: 350px;
    min-height: 280px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Tablet: Larger photos */
@media (min-width: 768px) {
    .genie-landing-page .photo-item {
        width: 400px;
        height: 400px;
    }
}

/* Desktop: Even larger photos */
@media (min-width: 1024px) {
    .genie-landing-page .photo-item {
        width: 450px;
        height: 450px;
    }
}

.genie-landing-page .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.genie-landing-page .photo-item:hover img {
    transform: scale(1.05);
}

/* Photo caption overlay */
.genie-landing-page .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 14px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 1;
    pointer-events: none;
}

.genie-landing-page .photo-artist-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.genie-landing-page .photo-artist-handle {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* ========================================
   TESTIMONIALS - PRODUCER QUOTES (SCROLLING)
   ======================================== */
.genie-landing-page .testimonials-section {
    background: transparent;
 /* Using body gradient */
    padding: var(--spacing-3xl) 0;
    padding-top: calc(var(--spacing-3xl) + 15px);
 /* Extra space for hover effect */
    overflow-x: hidden;
    overflow-y: visible;
}

.genie-landing-page .testimonials-section .section-header {
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.genie-landing-page .testimonials-row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
 /* Extra vertical space for hover effect */
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: center;
}

.genie-landing-page .testimonials-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(127, 0, 255, 0.2);
    border: 2px solid rgba(127, 0, 255, 0.5);
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.genie-landing-page .testimonials-arrow:hover {
    background: rgba(127, 0, 255, 0.4);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.5);
}

.genie-landing-page .testimonials-arrow:active {
    transform: scale(0.95);
}

.genie-landing-page .testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.genie-landing-page .testimonials-track {
    display: flex;
    gap: var(--spacing-lg);
    padding: 10px 0;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.genie-landing-page .testimonial-card {
    flex-shrink: 0;
    width: 400px;
    max-width: 90vw;
    background: linear-gradient(145deg, rgba(127, 0, 255, 0.15) 0%, rgba(0, 150, 255, 0.1) 50%, rgba(127, 0, 255, 0.08) 100%);
    border: 1px solid rgba(127, 0, 255, 0.4);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(127, 0, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay */
.genie-landing-page .testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.genie-landing-page .testimonial-card:hover {
    border-color: rgba(127, 0, 255, 0.7);
    box-shadow: 0 0 40px rgba(127, 0, 255, 0.3),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.02);
}

.genie-landing-page .testimonial-quote {
    font-size: var(--font-size-base);
    font-style: normal;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 var(--spacing-lg) 0;
    position: relative;
    flex-grow: 1;
    z-index: 1;
}

.genie-landing-page .producer-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(127, 0, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Instagram icon before handle */
.genie-landing-page .producer-handle {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: #FFFFFF;
    font-weight: 700;
    font-size: var(--font-size-base);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.3) 0%, rgba(0, 150, 255, 0.3) 100%);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.genie-landing-page .producer-handle:hover {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.5) 0%, rgba(0, 150, 255, 0.5) 100%);
    border-color: rgba(127, 0, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.3);
}

/* Light Mode Testimonial Styles */
.genie-landing-page[data-theme="light"] .testimonial-card {
    border: 1px solid rgba(127, 0, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.genie-landing-page[data-theme="light"] .testimonial-card:hover {
    border-color: rgba(127, 0, 255, 0.4);
    box-shadow: 0 8px 30px rgba(127, 0, 255, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HOW IT WORKS SECTION - PREMIUM SQUARE TILES
   ======================================== */
.genie-landing-page .how-it-works {
    background: transparent;
 /* Using body gradient */
}

.genie-landing-page .steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.genie-landing-page .step {
    position: relative;
    background: transparent;
 /* Text directly on gradient */
    border: 1px solid rgba(127, 0, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(127, 0, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.genie-landing-page .step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.3),
        rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.genie-landing-page .step.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* First step - clickable interaction */
.genie-landing-page .step:first-child {
    cursor: pointer;
}

.genie-landing-page .step:first-child::after {
    content: 'Apply here';
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%) scale(0.9) translateY(10px);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--color-dark);
    font-size: var(--font-size-xs);
    font-weight: 700;
    border-radius: var(--border-radius-full);
    opacity: 0;
    transition: all var(--transition-base);
    pointer-events: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
}

.genie-landing-page .step:first-child:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
}

/* Premium hover effects for all steps */
.genie-landing-page .step:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(127, 0, 255, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    background: linear-gradient(135deg,
        var(--color-dark-lighter) 0%,
        rgba(127, 0, 255, 0.08) 100%);
}

.genie-landing-page .step:hover::before {
    opacity: 1;
}

/* Active state for first step */
.genie-landing-page .step:first-child:active {
    transform: translateY(-2px);
}

.genie-landing-page .step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-xs);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(127, 0, 255, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.4);
}

.genie-landing-page .step:hover .step-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(127, 0, 255, 0.4),
        0 5px 12px rgba(0, 0, 0, 0.5);
}

.genie-landing-page .step-icon i {
    font-size: var(--font-size-xl);
    color: var(--color-dark);
    transition: transform var(--transition-base);
}

.genie-landing-page .step:hover .step-icon i {
    transform: scale(1.05);
}

.genie-landing-page .step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.4);
    transition: transform var(--transition-base);
}

.genie-landing-page .step:hover .step-number {
    transform: scale(1.1);
}

.genie-landing-page .step-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    transition: color var(--transition-base);
    line-height: 1.2;
}

.genie-landing-page .step:hover .step-title {
    color: var(--color-primary);
}

.genie-landing-page .step-description {
    color: var(--color-text-muted);
    line-height: 1.4;
    font-size: var(--font-size-xs);
    transition: color var(--transition-base);
    max-width: 90%;
    padding-bottom: var(--spacing-lg);
}

.genie-landing-page .step:hover .step-description {
    color: var(--color-text);
}

/* Pulse animation for first step */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(127, 0, 255, 0.3),
            0 10px 40px rgba(0, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(127, 0, 255, 0.5),
            0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

.genie-landing-page .step:first-child {
    animation: fadeInUp 0.6s ease-out forwards,
               pulseGlow 3s ease-in-out infinite 0.6s;
}


/* ========================================
   FAQ SECTION (Accordion)
   ======================================== */
.genie-landing-page .faq-section {
    background: transparent;
 /* Using body gradient */
}

.genie-landing-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.genie-landing-page .faq-item {
    background: transparent;
    border: 1px solid rgba(127, 0, 255, 0.2);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

/* FAQ Question Button - handles all hover */
.genie-landing-page .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
    position: relative;
    z-index: 1;
}

/* Span inside button inherits color */
.genie-landing-page .faq-question span {
    color: inherit;
    pointer-events: none;
}

/* Icon styling */
.genie-landing-page .faq-question i {
    font-size: var(--font-size-base);
    color: var(--color-primary);
    transition: transform 0.15s ease, color 0.15s ease;
    pointer-events: none;
    flex-shrink: 0;
}

/* HOVER STATE - on the button itself */
.genie-landing-page .faq-question:hover {
    color: var(--color-primary);
    background: rgba(127, 0, 255, 0.08);
}

.genie-landing-page .faq-question:hover i {
    transform: scale(1.15);
}

/* Make the entire faq-item respond to button hover via sibling/parent effect */
.genie-landing-page .faq-item:has(.faq-question:hover) {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(127, 0, 255, 0.15);
}

/* Focus state for accessibility */
.genie-landing-page .faq-question:focus {
    outline: none;
    color: var(--color-primary);
    background: rgba(127, 0, 255, 0.08);
}

.genie-landing-page .faq-question:focus i {
    transform: scale(1.15);
}

.genie-landing-page .faq-item:has(.faq-question:focus) {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(127, 0, 255, 0.15);
}

/* Active/Open state */
.genie-landing-page .faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.genie-landing-page .faq-item.active .faq-question:hover i {
    transform: rotate(45deg) scale(1.1);
}

/* Answer section */
.genie-landing-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.genie-landing-page .faq-item.active .faq-answer {
    max-height: 500px;
}

.genie-landing-page .faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.genie-landing-page .final-cta {
    background: transparent;
 /* Using body gradient */
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.genie-landing-page .final-cta::before {
    /* Removed radial gradient for seamless body gradient flow */
    display: none;
    pointer-events: none;
 /* Ensure no click interference */
}

.genie-landing-page .final-cta-content {
    position: relative;
    z-index: 10;
}

.genie-landing-page .final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius-full);
    color: var(--color-error);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s infinite;
}

.genie-landing-page .final-cta-title {
    font-family: var(--font-display) !important;
    font-size: 30px;
 /* 1.875rem = 30px - explicit px for consistency */
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

.genie-landing-page .final-cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.genie-landing-page .final-cta-note {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.genie-landing-page .final-cta-note i {
    margin-right: var(--spacing-xs);
    color: var(--color-success);
}

/* Light Mode CTA Styles */
.genie-landing-page[data-theme="light"] .final-cta {
    background: transparent;
 /* Follow body gradient for seamless flow */
}

.genie-landing-page[data-theme="light"] .final-cta::before {
    display: none;
 /* Removed overlay for seamless gradient flow */
    pointer-events: none;
 /* Ensure no click interference */
}

.genie-landing-page[data-theme="light"] .final-cta-title {
    color: #1a0033;
 /* Dark purple for visibility on light gradient */
}

.genie-landing-page[data-theme="light"] .final-cta-subtitle {
    color: #4a4a4a;
}

.genie-landing-page[data-theme="light"] .final-cta-note {
    color: #666666;
}

/* ========================================
   FOOTER
   ======================================== */
.genie-landing-page .footer {
    background: transparent;
 /* Using body gradient - ends in black */
    /* border-top removed for seamless gradient flow */
    padding: var(--spacing-xl) 0;
    position: relative;
}

.genie-landing-page .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.genie-landing-page .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.genie-landing-page .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.genie-landing-page .footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.genie-landing-page .footer-logo i {
    font-size: var(--font-size-2xl);
}

.genie-landing-page .footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.genie-landing-page .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-lighter);
    border: 1px solid rgba(127, 0, 255, 0.3);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    transition: var(--transition-fast);
}

.genie-landing-page .social-link:hover {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.9), rgba(0, 150, 255, 0.9));
    color: var(--color-text);
    border-color: var(--color-primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(127, 0, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Light Mode Footer Styles */
.genie-landing-page[data-theme="light"] .footer {
    background: transparent;
 /* Follow body gradient for seamless flow */
    border-top: none;
 /* Removed border for seamless gradient */
}

.genie-landing-page[data-theme="light"] .footer::before {
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.4), rgba(0, 150, 255, 0.4));
}

.genie-landing-page[data-theme="light"] .footer-logo,
.genie-landing-page[data-theme="light"] .footer-logo span {
    color: #1a0033;
 /* Dark purple for visibility on light gradient */
}

.genie-landing-page[data-theme="light"] .social-link {
    background: rgba(127, 0, 255, 0.1);
    border-color: rgba(127, 0, 255, 0.3);
    color: #4a0066;
 /* Dark purple for visibility */
}

/* ========================================
   MODAL POPUP
   ======================================== */

/* Body scroll lock when modal is open - minimal approach to avoid iOS zoom */
html.modal-open,
body.modal-open {
    overflow: hidden !important;
}

.genie-landing-page .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    padding: var(--spacing-md);
    overflow-y: auto;
 /* Allow scrolling if content is too tall */
}

.genie-landing-page .modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.genie-landing-page .modal-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    background: #2A2A2A;
 /* Fixed dark background for both themes */
    border-radius: var(--border-radius-xl);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(-20px);
    transition: all var(--transition-base);
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.genie-landing-page .modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.genie-landing-page .modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.genie-landing-page .modal-close:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    transform: rotate(90deg);
}

.genie-landing-page .modal-badge-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-md) 0;
    background: #2A2A2A;
    border-bottom: 1px solid rgba(127, 0, 255, 0.2);
}

.genie-landing-page .form-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--border-radius-full);
    color: var(--color-error);
    font-size: var(--font-size-sm);
    font-weight: 600;
    animation: pulse 2s infinite;
    margin-bottom: var(--spacing-sm);
}

.genie-landing-page .modal-content {
    padding: var(--spacing-md) var(--spacing-xl) var(--spacing-xl) var(--spacing-xl);
    flex: 1;
    overflow-y: auto;
}

.genie-landing-page .modal-header {
    text-align: center;
    margin-bottom: 0;
}

.genie-landing-page .modal-title {
    font-family: var(--font-display) !important;
    font-size: var(--font-size-2xl);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: #F5F5F5;
 /* Fixed white color for dark modal in both themes */
}

.genie-landing-page .modal-subtitle {
    font-size: var(--font-size-base);
    color: #A0A0A0;
 /* Fixed light gray for dark modal in both themes */
    line-height: 1.6;
}

.genie-landing-page .embedded-form {
    margin-top: -20px;
 /* Negative margin to pull iframe content up */
}

.genie-landing-page .embedded-form iframe {
    display: block;
 /* Remove default iframe spacing */
}

/* ========================================
   HERO CTA BUTTON
   ======================================== */
.genie-landing-page .hero-cta-wrapper {
    margin: var(--spacing-lg) 0 var(--spacing-xl);
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Desktop: Center button under left-aligned text */
@media (min-width: 1024px) {
    .genie-landing-page .hero-cta-wrapper {
        justify-content: center;
    }
}

.genie-landing-page .btn-wide {
    min-width: 200px;
    padding: 18px 40px;
    font-size: var(--font-size-lg);
    font-weight: 700;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #00B4FF 0%, #0096FF 50%, #007ACC 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
    transition: all 0.3s ease;
}

.genie-landing-page .btn-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 150, 255, 0.5);
}

/* ========================================
   TYPEFORM-STYLE MULTI-STEP FORM
   Premium, Compact, Editorial Design
   ======================================== */

/* Modal Container - Wider, Sleeker */
.genie-landing-page .typeform-modal {
    max-width: 720px;
    width: 95%;
    min-height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
    background: linear-gradient(145deg, rgba(20, 10, 30, 0.98), rgba(10, 5, 20, 0.98));
    border: 1px solid rgba(127, 0, 255, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(127, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: max-width 0.3s ease, max-height 0.3s ease;
}

/* Wider and taller modal for membership selection step only */
.genie-landing-page .typeform-modal.membership-step-active {
    max-width: 1100px;
    max-height: 92vh;
    width: 96%;
}

/* Scrollable container for membership step */
.genie-landing-page .typeform-modal.membership-step-active .typeform-container {
    min-height: auto;
    max-height: calc(92vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(127, 0, 255, 0.4) transparent;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.genie-landing-page .typeform-modal.membership-step-active .typeform-container::-webkit-scrollbar {
    width: 6px;
}

.genie-landing-page .typeform-modal.membership-step-active .typeform-container::-webkit-scrollbar-track {
    background: transparent;
}

.genie-landing-page .typeform-modal.membership-step-active .typeform-container::-webkit-scrollbar-thumb {
    background: rgba(127, 0, 255, 0.4);
    border-radius: 3px;
}

.genie-landing-page .typeform-modal.membership-step-active .typeform-container::-webkit-scrollbar-thumb:hover {
    background: rgba(127, 0, 255, 0.6);
}

/* Minimal Progress Indicator */
.genie-landing-page .form-progress {
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(127, 0, 255, 0.1);
}

.genie-landing-page .progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(127, 0, 255, 0.15);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-right: var(--spacing-md);
}

.genie-landing-page .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    width: 12.5%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.genie-landing-page .progress-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Form Container */
.genie-landing-page .typeform-container {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    height: 280px;
    max-height: 280px;
    transition: height 0.3s ease, min-height 0.3s ease, max-height 0.3s ease;
}

/* Step-specific heights - !important to override all other styles */
.genie-landing-page .typeform-container.height-small {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    flex: 0 0 auto !important;
}

.genie-landing-page .typeform-container.height-medium {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    flex: 0 0 auto !important;
}

.genie-landing-page .typeform-container.height-large {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    flex: 0 0 auto !important;
}

.genie-landing-page .typeform-container.height-auto {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
    flex: 1 1 auto !important;
}

/* Individual Form Steps - Compact */
.genie-landing-page .form-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.genie-landing-page .form-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.genie-landing-page .form-step.exit-left {
    opacity: 0;
    transform: translateX(-30px);
}

/* Step Content - Wider for Grid */
.genie-landing-page .step-content {
    width: 100%;
    max-width: 580px;
    text-align: center;
}

/* Question Styling - More Refined */
.genie-landing-page .step-question {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.genie-landing-page .step-hint {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.genie-landing-page .step-hint.required::after {
    content: ' *';
    color: var(--color-primary);
}

.genie-landing-page .step-hint.required::before {
    display: none;
}

/* Option Buttons - 2x2 Grid Layout */
.genie-landing-page .option-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}

/* Yes/No stays side by side */
.genie-landing-page .option-buttons.horizontal {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
}

.genie-landing-page .option-buttons.budget-options {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
}

.genie-landing-page .option-buttons.budget-options .option-btn {
    white-space: nowrap;
    justify-content: center;
    padding: 12px 16px;
    gap: 0;
}

.genie-landing-page .option-buttons.budget-options .option-text {
    flex: none;
}

/* 3 options - 2 on top, 1 centered below */
.genie-landing-page .option-buttons.three-items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
}

.genie-landing-page .option-buttons.three-items .option-btn {
    padding: 12px 10px;
}

.genie-landing-page .option-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 16px;
    padding-right: 36px;
 /* Space for checkmark */
    background: rgba(127, 0, 255, 0.06);
    border: 1px solid rgba(127, 0, 255, 0.2);
    border-radius: 10px;
    color: var(--color-text);
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.genie-landing-page .option-key {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(127, 0, 255, 0.15);
    border: 1px solid rgba(127, 0, 255, 0.3);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.genie-landing-page .option-text {
    flex: 1;
    text-align: center;
    min-width: 50px;
}

.genie-landing-page .option-check {
    position: absolute;
    right: 10px;
    opacity: 0;
    color: var(--color-success);
    font-size: 12px;
    transform: scale(0);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.genie-landing-page .option-btn:hover {
    background: rgba(127, 0, 255, 0.12);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.genie-landing-page .option-btn.selected {
    background: rgba(127, 0, 255, 0.2);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(127, 0, 255, 0.25);
}

.genie-landing-page .option-btn.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

.genie-landing-page .option-btn.selected .option-key {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Text Input Styling - Compact */
.genie-landing-page .input-wrapper {
    margin-bottom: var(--spacing-md);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.genie-landing-page .input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.genie-landing-page .input-prefix {
    position: absolute;
    left: 14px;
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    font-weight: 500;
    z-index: 1;
}

.genie-landing-page .input-with-prefix .typeform-input {
    padding-left: 32px;
}

.genie-landing-page .typeform-input {
    width: 100%;
    padding: 14px 18px;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(127, 0, 255, 0.2);
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.genie-landing-page .typeform-textarea {
    min-height: 80px;
    resize: none;
    text-align: left;
    max-width: 100%;
}

.genie-landing-page .typeform-input::placeholder {
    color: rgba(160, 160, 160, 0.6);
}

.genie-landing-page .typeform-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(127, 0, 255, 0.1);
}

.genie-landing-page .typeform-input.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Navigation Buttons - Sleeker */
.genie-landing-page .step-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

/* When back button is present, spread buttons apart */
.genie-landing-page .step-nav.has-back {
    justify-content: space-between;
}

/* Group for right-side buttons (Skip + Continue) */
.genie-landing-page .step-nav .nav-right {
    display: flex;
    gap: 10px;
}

.genie-landing-page .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.genie-landing-page .nav-btn.next-btn,
.genie-landing-page .nav-btn.back-btn-inline {
    background: transparent;
    border-color: rgba(127, 0, 255, 0.25);
    color: var(--color-text-muted);
}

.genie-landing-page .nav-btn.next-btn:hover,
.genie-landing-page .nav-btn.back-btn-inline:hover {
    border-color: var(--color-primary);
    color: var(--color-text);
}

.genie-landing-page .nav-btn.primary {
    background: linear-gradient(135deg, #00B4FF 0%, #0096FF 50%, #007ACC 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.3);
}

.genie-landing-page .nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 150, 255, 0.45);
}

.genie-landing-page .nav-btn.primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.genie-landing-page .nav-btn.submit-btn {
    padding: 12px 28px;
    font-size: 15px;
}

.genie-landing-page .nav-btn.submit-btn.submitting::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Old floating back button - hidden, using inline back buttons now */
.genie-landing-page .back-btn {
    display: none !important;
}

/* Thank You Screen - Elegant */
.genie-landing-page .thank-you-step .step-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.genie-landing-page .success-icon {
    font-size: 56px;
    color: var(--color-success);
    margin-bottom: var(--spacing-md);
    animation: successPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.genie-landing-page .success-message {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.genie-landing-page .close-btn {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: 12px 28px;
}

/* Book a Call button - thank you screen */
.genie-landing-page .book-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--border-radius-lg);
}

.genie-landing-page .thank-you-step .close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.genie-landing-page .thank-you-step .close-btn:hover {
    opacity: 1;
}

/* Light Mode Typeform */
.genie-landing-page[data-theme="light"] .typeform-modal {
    background: linear-gradient(145deg, #ffffff, #f8f5ff);
    border-color: rgba(127, 0, 255, 0.1);
}

.genie-landing-page[data-theme="light"] .form-progress {
    border-color: rgba(127, 0, 255, 0.08);
}

.genie-landing-page[data-theme="light"] .step-question {
    color: #1a0033;
}

.genie-landing-page[data-theme="light"] .typeform-input {
    background: rgba(127, 0, 255, 0.03);
    border-color: rgba(127, 0, 255, 0.15);
    color: #1a0033;
}

.genie-landing-page[data-theme="light"] .typeform-input:focus {
    background: rgba(127, 0, 255, 0.06);
}

.genie-landing-page[data-theme="light"] .option-btn {
    background: rgba(127, 0, 255, 0.03);
    border-color: rgba(127, 0, 255, 0.15);
    color: #1a0033;
}

.genie-landing-page[data-theme="light"] .option-btn:hover,
.genie-landing-page[data-theme="light"] .option-btn.selected {
    background: rgba(127, 0, 255, 0.1);
}

/* Mobile - Centered Modal, NOT Full Screen */
@media (max-width: 767px) {
    /* Override to keep typeform modal centered vertically - use ID for specificity */
    .genie-landing-page #formModal {
        align-items: center !important;
        justify-content: center !important;
        padding: var(--spacing-md) !important;
        /* iOS safe area support */
        padding-top: max(var(--spacing-md), env(safe-area-inset-top)) !important;
        padding-bottom: max(var(--spacing-md), env(safe-area-inset-bottom)) !important;
        overscroll-behavior: contain;
        touch-action: none;
    }

    /* For membership step - overlay has no padding, modal is full screen */
    .genie-landing-page #formModal.membership-overlay {
        padding: 0 !important;
        align-items: stretch !important;
        justify-content: stretch !important;
    }

    /* Allow touch scrolling only within the modal content */
    .genie-landing-page #formModal .typeform-modal {
        touch-action: pan-y;
    }

    .genie-landing-page .typeform-modal {
        width: 92%;
        max-width: 400px;
        max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 32px);
        border-radius: 16px;
        margin: 0 !important;
 /* Remove any margin that might offset it */
    }

    .genie-landing-page .form-progress {
        padding: 10px var(--spacing-md);
    }

    .genie-landing-page .typeform-container {
        min-height: 280px;
    }

    .genie-landing-page .form-step {
        padding: var(--spacing-md);
    }

    .genie-landing-page .step-content {
        max-width: 100%;
    }

    .genie-landing-page .step-question {
        font-size: var(--font-size-lg);
    }

    .genie-landing-page .option-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 100%;
    }

    /* 3 items in a row on mobile too */
    .genie-landing-page .option-buttons.three-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .genie-landing-page .option-buttons.three-items .option-btn {
        padding: 10px 6px;
        font-size: 12px;
    }

    .genie-landing-page .option-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .genie-landing-page .option-key {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .genie-landing-page .input-wrapper {
        max-width: 100%;
    }

    .genie-landing-page .typeform-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .genie-landing-page .nav-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ========================================
   MOBILE OPTIMIZATIONS (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
    /* Hero Section Mobile Fixes */
    .genie-landing-page .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 120px var(--spacing-md) var(--spacing-xl);
        min-height: auto;
    }

    .genie-landing-page .hero-container {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        width: 100%;
    }

    /* Flatten hero-content children into hero-container for mobile reordering */
    .genie-landing-page .hero-content {
        display: contents;
    }

    .genie-landing-page .hero-title {
        order: 1;
        font-size: 38px !important;
        line-height: 1.1;
        margin-bottom: 0;
        text-align: center;
    }

    .genie-landing-page .hero-visual {
        order: 2;
    }

    .genie-landing-page .hero-cta-wrapper {
        order: 3;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .genie-landing-page .btn-xl {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 18px 40px;
        font-size: 24px !important;
    }

    .genie-landing-page .hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }

    .genie-landing-page .email-capture-form {
        margin-bottom: var(--spacing-xl);
    }

    .genie-landing-page .email-form {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .genie-landing-page .email-input {
        width: 100%;
        padding: 16px;
        font-size: var(--font-size-base);
    }

    .genie-landing-page .email-form .btn {
        width: 100%;
        padding: 16px;
    }

    /* Hero Stats Mobile - 2x1 Grid Layout */
    .genie-landing-page .hero-stats {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--spacing-md) !important;
        margin-top: var(--spacing-xl) !important;
        margin-bottom: var(--spacing-md) !important;
        padding: 0 !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .genie-landing-page .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) 0;
    }

    /* Third badge spans full width */
    .genie-landing-page .stat:nth-child(3) {
        grid-column: 1 / -1;
    }

    .genie-landing-page .stat-number {
        font-size: var(--font-size-3xl);
        line-height: 1;
    }

    .genie-landing-page .stat-label {
        font-size: var(--font-size-sm);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    /* Show video on mobile */
    .genie-landing-page .hero-visual {
        display: block;
        width: 100%;
        margin-top: var(--spacing-lg);
    }

    .genie-landing-page .hero-video-container {
        max-width: 100%;
        border-radius: 12px;
    }

    .genie-landing-page .hero-video {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* Scroll indicator */
    .genie-landing-page .scroll-indicator {
        bottom: var(--spacing-md);
        font-size: var(--font-size-xl);
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite 0.5s;
    }

    /* Photo Gallery Mobile - Smaller Arrows */
    .genie-landing-page .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
    }

    .genie-landing-page .photo-gallery-container {
        gap: var(--spacing-xs);
    }

    /* Static Placements Row - Mobile */
    .genie-landing-page .static-row .placements-track {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .genie-landing-page .static-row .placement-item {
        max-width: 350px;
        width: 100%;
    }

    /* Testimonials Mobile - Smaller Arrows */
    .genie-landing-page .testimonials-arrow {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
    }

    .genie-landing-page .testimonials-row {
        gap: var(--spacing-xs);
    }

    /* Testimonials Mobile - Smaller Cards */
    .genie-landing-page .testimonial-card {
        width: 320px;
        max-width: 85vw;
        padding: var(--spacing-md);
    }

    .genie-landing-page .producer-handle {
        padding: 6px 12px;
        font-size: var(--font-size-sm);
    }

    /* Modal Mobile Optimizations */
    .genie-landing-page .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }

    .genie-landing-page .modal-container {
        max-height: 100vh;
        width: 100%;
        border-radius: 0;
        margin: 0;
        border: none;
    }

    .genie-landing-page .modal-badge-wrapper {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .genie-landing-page .form-badge {
        font-size: var(--font-size-xs);
        padding: 6px var(--spacing-sm);
    }

    .genie-landing-page .modal-content {
        padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
    }

    .genie-landing-page .modal-title {
        font-size: var(--font-size-xl);
    }

    .genie-landing-page .modal-close {
        width: 44px;
        height: 44px;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        font-size: var(--font-size-lg);
        background: rgba(0, 0, 0, 0.8);
        z-index: 20;
    }

    .genie-landing-page .embedded-form iframe {
        min-height: 500px;
        height: calc(100vh - 150px);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ========================================
   TABLET BREAKPOINT (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
    /* Typography scaling */
    .genie-landing-page :root {
        --font-size-3xl: 2.25rem;
   /* 36px */
        --font-size-4xl: 2.75rem;
   /* 44px */
        --font-size-5xl: 3.5rem;
    /* 56px */
    }

    /* Navigation - Desktop */
    .genie-landing-page .nav-toggle {
        display: none;
    }

    .genie-landing-page .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .genie-landing-page .nav-link {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-sm);
        border: none;
    }

    .genie-landing-page .nav-link:hover {
        transform: translateY(-2px);
    }

    .genie-landing-page .nav-social {
        border: none;
        border-left: 1px solid rgba(127, 0, 255, 0.2);
        padding: 0;
        padding-left: var(--spacing-md);
        margin: 0;
        margin-left: var(--spacing-md);
    }

    /* Hide mobile nav theme toggle on desktop, show fixed version */
    .genie-landing-page .nav-theme-toggle {
        display: none;
    }

    .genie-landing-page .theme-toggle-fixed {
        display: flex;
    }

    /* Email Form */
    .genie-landing-page .email-form {
        flex-direction: row;
    }

    .genie-landing-page .email-form .btn {
        width: auto;
    }

    .genie-landing-page .email-input {
        flex: 1;
    }

    /* Hero - Ensure proper spacing on tablet */
    .genie-landing-page .hero {
        padding-top: 130px;
    }

    /* Static Placements Row - Tablet/Desktop */
    .genie-landing-page .static-row .placements-track {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-xl);
    }

    .genie-landing-page .static-row .placement-item {
        max-width: 350px;
        width: auto;
    }

    /* Steps - 2 columns on tablet */
    .genie-landing-page .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    /* Footer */
    .genie-landing-page .footer-content {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-2xl);
    }

    /* Hero Visual Gallery - Tablet */
    .genie-landing-page .hero-visual {
        display: block;
        position: relative;
        height: 60vh;
        max-height: 500px;
        min-height: 350px;
        overflow: hidden;
        width: 100%;
    }

    .genie-landing-page .hero-static-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        height: 100%;
        align-items: stretch;
    }

    .genie-landing-page .gallery-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        min-width: 0;
    }

    .genie-landing-page .gallery-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
    /* Container */
    .genie-landing-page .container {
        padding: 0 var(--spacing-xl);
    }

    /* Typography scaling */
    .genie-landing-page :root {
        --font-size-4xl: 3rem;
      /* 48px */
        --font-size-5xl: 4rem;
      /* 64px */
    }

    /* Hero */
    .genie-landing-page .hero {
        min-height: 100vh;
        padding-top: 140px;
    }

    .genie-landing-page .hero-title {
        font-size: 64px !important;
 /* 4rem = 64px at desktop - explicit px for consistency */
    }

    /* Steps - 4 columns on desktop */
    .genie-landing-page .steps-container {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xl);
    }

    /* Adjust square tiles for desktop */
    .genie-landing-page .step {
        padding: var(--spacing-lg);
    }

    .genie-landing-page .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: var(--spacing-sm);
    }

    .genie-landing-page .step-icon i {
        font-size: var(--font-size-2xl);
    }

    .genie-landing-page .step-number {
        width: 28px;
        height: 28px;
        top: -8px;
        right: -8px;
        font-size: var(--font-size-xs);
    }

    .genie-landing-page .step-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }

    .genie-landing-page .step-description {
        font-size: var(--font-size-sm);
    }

    /* Footer - Keep centered layout on desktop */
}

/* ========================================
   LARGE DESKTOP (min-width: 1280px)
   ======================================== */
@media (min-width: 1280px) {
    .genie-landing-page .container {
        max-width: 1280px;
    }

    /* Spacing adjustments */
    .genie-landing-page section {
        padding: var(--spacing-3xl) 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
/* Focus styles for keyboard navigation */
.genie-landing-page *:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   MOBILE OPTIMIZATION - GRADIENT PERFORMANCE
   ======================================== */
/* Note: Gradient already scrolls with page (background-attachment: scroll is default)
   No special mobile overrides needed - gradient flows naturally on all devices */

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
.genie-landing-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .genie-landing-page :root {
        --color-primary: #FFD700;
        --color-text: #FFFFFF;
        --color-dark: #000000;
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .genie-landing-page .modal-overlay {
        display: none;
    }

    .genie-landing-page {
        background: white;
        color: black;
    }
}

/* ========================================
   MEMBERSHIP TIER CARDS
   ======================================== */

/* Wider modal for membership step on desktop - fits 4 cards in a row */
.genie-landing-page .typeform-modal.membership-step-active {
    max-width: 1100px;
    width: 92%;
}

/* Ensure cards container scrolls if needed on desktop but fits naturally */
.genie-landing-page .typeform-modal.membership-step-active .typeform-container {
    overflow-y: auto;
    max-height: none;
}

/* Membership step layout - scrollable for different viewports */
.genie-landing-page .form-step.membership-form-step {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--spacing-md) var(--spacing-lg);
    min-height: auto;
}

.genie-landing-page .form-step.membership-form-step.active {
    position: relative;
}

.genie-landing-page .step-content.membership-step {
    max-width: 100%;
    width: 100%;
}

/* Membership step nav - back button at bottom */
.genie-landing-page .step-nav.membership-nav {
    margin-top: var(--spacing-md);
    justify-content: flex-start;
}

.genie-landing-page .membership-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    margin-top: var(--spacing-sm);
    padding: 8px;
}

/* 4 columns only on wide screens */
@media (min-width: 1100px) {
    .genie-landing-page .membership-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.genie-landing-page .membership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    background: linear-gradient(145deg, rgba(35, 10, 55, 0.9), rgba(20, 5, 35, 0.95));
    border: 1px solid rgba(127, 0, 255, 0.25);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-family: inherit;
    color: var(--color-text);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Subtle glow effect on cards */
.genie-landing-page .membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.genie-landing-page .membership-card:hover::before {
    opacity: 1;
}

.genie-landing-page .membership-card:hover {
    background: linear-gradient(145deg, rgba(50, 15, 75, 0.95), rgba(30, 10, 50, 0.98));
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(127, 0, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.genie-landing-page .membership-card.selected {
    background: linear-gradient(145deg, rgba(80, 20, 120, 0.9), rgba(50, 10, 80, 0.95));
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(127, 0, 255, 0.35),
        0 8px 24px rgba(127, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.genie-landing-page .membership-card.selected::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--color-primary), #00B4FF, var(--color-primary));
}

.genie-landing-page .membership-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
}

.genie-landing-page .membership-tier-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), #00B4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.genie-landing-page .membership-check {
    opacity: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.genie-landing-page .membership-card.selected .membership-check {
    opacity: 1;
    transform: scale(1);
}

/* Desktop content - full details */
.genie-landing-page .membership-content-desktop {
    display: block;
}

.genie-landing-page .membership-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 18px 0;
    line-height: 1.55;
    font-weight: 400;
}

.genie-landing-page .membership-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.genie-landing-page .membership-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.45;
}

.genie-landing-page .membership-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00D68F;
    font-weight: 700;
    font-size: 0.8rem;
}

.genie-landing-page .membership-features li:last-child {
    margin-bottom: 0;
}

/* Mobile description - compact */
.genie-landing-page .membership-description-mobile {
    display: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

/* ========================================
   SIMPLIFIED MEMBERSHIP CARDS (New Design)
   ======================================== */

/* Container - 4 columns on desktop, 1 on mobile */
.genie-landing-page .membership-cards-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: var(--spacing-sm);
}

/* Each card - compact with tier name and description */
.genie-landing-page .membership-card-simple {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background: linear-gradient(145deg, rgba(35, 10, 55, 0.9), rgba(20, 5, 35, 0.95));
    border: 1px solid rgba(127, 0, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.genie-landing-page .membership-card-simple:hover {
    background: linear-gradient(145deg, rgba(50, 15, 75, 0.95), rgba(30, 10, 50, 0.98));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 0, 255, 0.2);
}

.genie-landing-page .membership-card-simple.selected {
    background: linear-gradient(145deg, rgba(80, 20, 120, 0.9), rgba(50, 10, 80, 0.95));
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.3);
}

.genie-landing-page .membership-card-simple .tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), #00B4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.genie-landing-page .membership-card-simple .tier-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.genie-landing-page .membership-card-simple .tier-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.genie-landing-page .membership-card-simple.selected .tier-check {
    opacity: 1;
    transform: scale(1);
}

/* Mobile - single column stack */
@media (max-width: 767px) {
    .genie-landing-page .membership-cards-simple {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .genie-landing-page .membership-card-simple {
        padding: 14px 16px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .genie-landing-page .membership-card-simple .tier-name {
        font-size: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        min-width: 60px;
    }

    .genie-landing-page .membership-card-simple .tier-desc {
        font-size: 0.75rem;
        line-height: 1.3;
        flex: 1;
    }

    .genie-landing-page .membership-card-simple .tier-check {
        position: static;
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        flex-shrink: 0;
    }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1099px) {
    .genie-landing-page .membership-cards-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ========================================
   DETAILED MEMBERSHIP CARDS (Full Info Design)
   ======================================== */

/* Container - 4 columns on desktop (1 row), equal height cards */
.genie-landing-page .membership-cards-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
    margin-top: var(--spacing-sm);
    width: 100%;
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1099px) {
    .genie-landing-page .membership-cards-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .genie-landing-page .typeform-modal.membership-step-active {
        max-width: 720px;
    }
}

/* Desktop - full width step content for membership */
@media (min-width: 1100px) {
    .genie-landing-page .form-step.membership-form-step .step-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 24px;
    }
}

/* Each card - detailed with tagline and bullet list */
.genie-landing-page .membership-card-detailed {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background: linear-gradient(145deg, rgba(35, 10, 55, 0.85), rgba(20, 5, 35, 0.9));
    border: 1px solid rgba(127, 0, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    color: var(--color-text);
    backdrop-filter: blur(10px);
    height: 100%;
}

/* Only apply hover on devices that support it (not touch) */
@media (hover: hover) and (pointer: fine) {
    .genie-landing-page .membership-card-detailed:hover {
        background: linear-gradient(145deg, rgba(50, 15, 75, 0.9), rgba(30, 10, 50, 0.95));
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(127, 0, 255, 0.15);
    }
}

/* Active state for touch feedback (works on tap, not scroll) */
.genie-landing-page .membership-card-detailed:active {
    background: linear-gradient(145deg, rgba(50, 15, 75, 0.9), rgba(30, 10, 50, 0.95));
    border-color: var(--color-primary);
}

.genie-landing-page .membership-card-detailed.selected {
    background: linear-gradient(145deg, rgba(80, 20, 120, 0.85), rgba(50, 10, 80, 0.9));
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(127, 0, 255, 0.25);
}

/* Tier name - gradient text */
.genie-landing-page .membership-card-detailed .tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), #00B4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

/* Tagline - description under tier name */
.genie-landing-page .membership-card-detailed .tier-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* Features list - single column on desktop */
.genie-landing-page .membership-card-detailed .tier-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex: 1;
}

.genie-landing-page .membership-card-detailed .tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.genie-landing-page .membership-card-detailed .tier-features li i {
    color: #4ade80;
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Selected checkmark */
.genie-landing-page .membership-card-detailed .tier-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.genie-landing-page .membership-card-detailed.selected .tier-check {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive Membership Cards */
@media (max-width: 767px) {
    /* Mobile modal - full width, edge to edge */
    /* Full screen modal for membership step on mobile */
    .genie-landing-page .typeform-modal.membership-step-active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        overflow: hidden !important;
        touch-action: manipulation;
  /* Prevent double-tap zoom on iOS */
    }

    /* Progress bar stays at top with safe area padding for iOS notch/status bar */
    .genie-landing-page .typeform-modal.membership-step-active .form-progress {
        flex-shrink: 0;
        position: relative;
        z-index: 10;
        padding-top: max(54px, calc(env(safe-area-inset-top, 47px) + 8px));
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 10px;
        background: linear-gradient(180deg, rgba(20, 10, 30, 1) 0%, rgba(20, 10, 30, 0.98) 100%);
    }

    /* X close button positioning for membership step */
    .genie-landing-page .typeform-modal.membership-step-active .modal-close {
        top: max(54px, calc(env(safe-area-inset-top, 47px) + 8px));
        right: 16px;
        z-index: 20;
    }

    /* Container fills remaining space - NOT scrollable (children scroll instead) */
    .genie-landing-page .typeform-modal.membership-step-active .typeform-container {
        flex: 1 1 auto;
        min-height: 0;
        padding: 0;
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
        background: transparent;
    }

    /* Form step fills container, uses flex layout */
    .genie-landing-page .form-step.membership-form-step {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        overflow: hidden;
        height: 100%;
    }

    /* Step content wrapper - flex column layout */
    .genie-landing-page .form-step.membership-form-step .step-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        overflow: hidden;
        padding: 0;
    }

    /* Question heading - FIXED at top of content area */
    .genie-landing-page .form-step.membership-form-step .step-question {
        font-size: 1.1rem;
        margin: 0 0 4px 0;
        padding: 16px 20px 0 20px;
        line-height: 1.35;
        flex-shrink: 0;
        text-align: left;
    }

    /* Hint - FIXED below question */
    .genie-landing-page .form-step.membership-form-step .step-hint {
        font-size: 0.8rem;
        margin-bottom: 0;
        padding: 0 20px 12px 20px;
        flex-shrink: 0;
        text-align: left;
    }

    /* Membership cards (original) - SCROLLABLE area */
    .genie-landing-page .form-step.membership-form-step .membership-cards {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 20px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Membership cards (simplified) - SCROLLABLE area */
    .genie-landing-page .form-step.membership-form-step .membership-cards-simple {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 20px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Membership cards (detailed) - SCROLLABLE area */
    .genie-landing-page .form-step.membership-form-step .membership-cards-detailed {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 20px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Detailed card - mobile adjustments */
    .genie-landing-page .membership-card-detailed {
        padding: 18px 20px;
        border-radius: 14px;
        flex-shrink: 0;
        height: auto;
  /* Override desktop height: 100% - cards size to content */
    }

    .genie-landing-page .membership-card-detailed .tier-name {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .genie-landing-page .membership-card-detailed .tier-tagline {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .genie-landing-page .membership-card-detailed .tier-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
    }

    .genie-landing-page .membership-card-detailed .tier-features li {
        font-size: 0.82rem;
        gap: 7px;
    }

    .genie-landing-page .membership-card-detailed .tier-features li i {
        font-size: 0.7rem;
        margin-top: 3px;
    }

    .genie-landing-page .membership-card-detailed .tier-check {
        width: 24px;
        height: 24px;
        top: 16px;
        right: 16px;
        font-size: 0.7rem;
    }

    /* Back button - FIXED at bottom */
    .genie-landing-page .form-step.membership-form-step .step-nav {
        flex-shrink: 0;
        padding: 12px 20px;
        padding-bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px));
        background: linear-gradient(0deg, rgba(10, 5, 20, 1) 0%, rgba(15, 8, 25, 0.98) 100%);
        z-index: 10;
    }

    .genie-landing-page .step-question {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .genie-landing-page .step-subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .genie-landing-page .membership-cards {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
    }

    /* Mobile card - compact */
    .genie-landing-page .membership-card {
        padding: 10px 12px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0;
        border-radius: 12px;
    }

    .genie-landing-page .membership-card::before {
        height: 2px;
    }

    /* Header spans full width */
    .genie-landing-page .membership-header {
        width: 100%;
        margin-bottom: 4px;
    }

    .genie-landing-page .membership-tier-name {
        font-size: 1rem;
    }

    .genie-landing-page .membership-check {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    /* Show FULL desktop content on mobile - stacked layout */
    .genie-landing-page .membership-content-desktop {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    /* Hide compact mobile description */
    .genie-landing-page .membership-description-mobile {
        display: none;
    }

    /* Description spans full width */
    .genie-landing-page .membership-description {
        font-size: 0.72rem;
        margin-bottom: 0;
        line-height: 1.3;
        width: 100%;
    }

    /* Features in 2x2 grid */
    .genie-landing-page .membership-features {
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 6px;
        width: 100%;
    }

    .genie-landing-page .membership-features li {
        font-size: 0.68rem;
        margin-bottom: 0;
        padding-left: 14px;
        line-height: 1.25;
    }

    .genie-landing-page .membership-features li::before {
        font-size: 0.6rem;
    }
}

/* Small mobile - even more compact */
@media (max-width: 400px) {
    .genie-landing-page .membership-card {
        padding: 12px 14px;
    }

    .genie-landing-page .membership-tier-name {
        font-size: 1rem;
    }

    .genie-landing-page .membership-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .genie-landing-page .membership-features {
        gap: 3px 6px;
    }

    .genie-landing-page .membership-features li {
        font-size: 0.65rem;
        padding-left: 14px;
    }

    .genie-landing-page .membership-content-desktop {
        gap: 6px;
    }

    .genie-landing-page .membership-header {
        margin-bottom: 6px;
    }
}

/* Tablet Responsive Membership Cards */
@media (min-width: 768px) and (max-width: 1099px) {
    .genie-landing-page .typeform-modal.membership-step-active {
        max-width: 900px;
        width: 95%;
    }

    .genie-landing-page .membership-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .genie-landing-page .membership-card {
        padding: 20px;
    }

    .genie-landing-page .membership-description {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .genie-landing-page .membership-features li {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
}
