/* CSS Variables */
:root {
    --primary-color: #3a4b9a;
    --primary-dark: #2a3a7a;
    --primary-light: #ff5b5b;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --border-color: #e5e7eb;
    --border-light: #ababab;
    --badge-color: #3a4b9a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-light: #737373;
    --bg-primary: #0a0a0a;
    --bg-secondary: #171717;
    --bg-tertiary: #262626;
    --border-color: #404040;
    --border-light: #2a2a2a;
    --badge-color: #bac6ff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: var(--transition);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Navigation - Redesigned for Cleaner Mobile Experience */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Cleaner Mobile Navigation - Simplified Approach */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    transform: scale(1.05);
}

.nav-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.nav-toggle .bar {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
    transform-origin: center;
}

/* Mobile Menu - Cleaner Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 2rem;
    }
    
    [data-theme="dark"] .nav-menu {
        background: rgba(15, 15, 15, 0.98);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        width: 100%;
        text-align: center;
        max-width: 280px;
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
        border-color: var(--border-color);
        transform: translateY(-1px);
    }
    
    .nav-cta {
        margin-top: 0.5rem;
        padding: 1rem 2rem !important;
        font-size: 1.125rem;
        background: var(--primary-color);
        color: white !important;
        border: none;
        box-shadow: var(--shadow-md);
    }
    
    .nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Animated hamburger */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Theme toggle repositioned for mobile */
    .theme-toggle {
        position: fixed;
        top: 20px;
        right: 80px;
        z-index: 1001;
        margin-left: 0;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    [data-theme="dark"] .theme-toggle {
        background: rgba(15, 15, 15, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        max-width: 250px;
    }
    
    .nav-cta {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
    }
    
    .theme-toggle {
        top: 15px;
        right: 70px;
        width: 35px;
        height: 35px;
    }
}

/* Hero Section */
.hero {
    padding: 30px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    opacity: 0.5;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, var(--border-light) 1px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 100vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(58, 75, 154, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(58, 75, 154, 0.2);
}

[data-theme="dark"] .hero-badge {
    background: rgba(186, 198, 255, 0.1);
    color: var(--badge-color);
    border: 1px solid rgba(186, 198, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.revolution-glow-wrapper {
    position: relative;
    display: inline-block;
}

.revolution-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

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

.hero-image-wrapper {
    position: relative;
    height: auto;
    max-width: 100%;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

/* CTA Waitlist Form */
.cta-waitlist-form {
    margin-top: 0;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.cta-waitlist-form-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    gap: 1.5rem;
}

.cta-waitlist-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

[data-theme="dark"] .cta-waitlist-form {
    background: rgba(23, 23, 23, 0.9);
    border: 1px solid rgba(186, 198, 255, 0.15);
}

.waitlist-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 4px 12px rgba(58, 75, 154, 0.3);
    transform: translateY(0);
    transition: var(--transition);
}

.waitlist-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 75, 154, 0.4);
}

.waitlist-form-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.waitlist-form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.hero-waitlist-form-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Form Labels */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

[data-theme="dark"] .form-label {
    color: var(--text-primary);
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-input:focus + .input-icon {
    color: var(--primary-color);
}

/* Form Inputs */
.cta-waitlist-form .form-group {
    position: relative;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.cta-waitlist-form .form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
    font-family: inherit;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.cta-waitlist-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(58, 75, 154, 0.15), 0 4px 16px rgba(58, 75, 154, 0.1);
    transform: translateY(-1px);
}

[data-theme="dark"] .cta-waitlist-form .form-group input:focus {
    box-shadow: 0 0 0 3px rgba(186, 198, 255, 0.1);
}

.cta-waitlist-form .form-group input::placeholder {
    color: #64748b;
    transition: var(--transition);
    font-weight: 400;
}

.cta-waitlist-form .form-group input:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Button Improvements */
.cta-waitlist-form .btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    box-shadow: 0 8px 24px rgba(58, 75, 154, 0.3);
    transform: translateY(0);
    transition: var(--transition);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.cta-waitlist-form .btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 75, 154, 0.4);
}

.cta-waitlist-form .btn-full:active {
    transform: translateY(-1px);
}

.cta-waitlist-form .btn-full:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cta-waitlist-form .btn-full.loading {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    transform: scale(0.98);
}

.cta-waitlist-form .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.cta-waitlist-form .btn-text i {
    font-size: 1rem;
}

/* Loading States */
.cta-waitlist-form .btn-loading {
    display: none;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 0.3s ease-in-out;
}

.cta-waitlist-form .btn-loading.show {
    display: inline-flex;
}

.cta-waitlist-form .btn-text.hide {
    display: none;
}

/* Loading Spinner */
.loading-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message Improvements */
.cta-waitlist-form .form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    animation: slideInUp 0.5s ease-out;
    margin-top: 1rem;
}

.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    animation: bounceIn 0.8s ease-out;
}

.success-checkmark {
    width: 2.5rem;
    height: 2.5rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    animation: checkmarkPop 0.6s ease-out 0.2s both;
}

.success-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #059669;
}

.success-content p {
    text-align: center;
    margin: 0;
    color: #059669;
    font-weight: 500;
}

/* Error Message Improvements */
.cta-waitlist-form .form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
    margin-top: 1.5rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form Footer - New Structure - More Specific */
.cta-waitlist-form .footer,
.cta-section .footer {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    flex-shrink: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
    border-top: none !important;
}

.cta-waitlist-form .form-disclaimer,
.cta-section .form-disclaimer {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    opacity: 1;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.75rem 0;
    transition: var(--transition);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
    margin: 0 !important;
}

[data-theme="dark"] .cta-waitlist-form .form-disclaimer,
[data-theme="dark"] .cta-section .form-disclaimer {
    color: var(--primary-color);
    opacity: 1;
}

.cta-waitlist-form .form-disclaimer i,
.cta-section .form-disclaimer i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 1rem;
    text-align: center;
}

/* Force remove any inherited backgrounds */
.cta-waitlist-form .footer *,
.cta-section .footer *,
.cta-waitlist-form .form-disclaimer *,
.cta-section .form-disclaimer * {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Additional overrides to ensure no background */
.cta-waitlist-form .footer,
.cta-section .footer,
.cta-waitlist-form .footer:before,
.cta-section .footer:before,
.cta-waitlist-form .footer:after,
.cta-section .footer:after,
.cta-waitlist-form .form-disclaimer,
.cta-section .form-disclaimer,
.cta-waitlist-form .form-disclaimer:before,
.cta-section .form-disclaimer:before,
.cta-waitlist-form .form-disclaimer:after,
.cta-section .form-disclaimer:after {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* CTA Waitlist Form Messages */
.cta-waitlist-form .form-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1rem;
    flex-shrink: 0;
}

.cta-waitlist-form .form-message.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    animation: slideInUp 0.5s ease-out;
    margin-top: 1rem;
}

.cta-waitlist-form .form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
    margin-top: 1rem;
}

.cta-waitlist-form .form-message i {
    font-size: 1rem;
    margin-top: 0.125rem;
}

.cta-waitlist-form .form-message div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-waitlist-form .form-message strong {
    font-weight: 600;
    color: inherit;
}

.cta-waitlist-form .form-message span {
    color: inherit;
    opacity: 1;
    font-weight: 500;
}

/* Responsive adjustments for CTA waitlist form */
@media (max-width: 1024px) {
    .cta-content-wrapper {
        gap: 3rem;
    }
    
    .cta-buttons {
        padding: 2.25rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background: linear-gradient(135deg, var(--primary-color), #5a6bb8, #7a8bd8);
    }

    .cta-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 1.5rem !important;
        min-height: auto !important;
        padding: 2rem !important;
        order: 1 !important;
        background: rgba(15, 15, 15, 0.75) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 20px !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(58, 75, 154, 0.2) !important;
        position: relative !important;
        margin: 0 auto !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.95) !important;
        width: 100% !important;
        max-width: 640px !important;
        justify-self: center !important;
    }
    
    .cta-waitlist-form {
        order: 2 !important;
        margin: 0 auto !important;
        padding: 2rem !important;
        min-height: auto !important;
        background: rgba(15, 15, 15, 0.75) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 20px !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(58, 75, 154, 0.2) !important;
        position: relative !important;
        color: rgba(255, 255, 255, 0.95) !important;
        width: 100% !important;
        max-width: 640px !important;
        justify-self: center !important;
    }

    /* Enhanced visual separation */
    .cta-buttons::after {
        content: '';
        position: absolute;
        bottom: -1.25rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), #5a6bb8, var(--primary-color));
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(58, 75, 154, 0.3);
    }
    
    /* Ensure container is centered on mobile */
    .cta-section .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Ensure cards are properly centered */
    .cta-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Force center alignment for all CTA content on mobile */
    .cta-section * {
        text-align: center !important;
    }
    
    /* Ensure form inputs are centered on mobile */
    .cta-waitlist-form .form-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .cta-waitlist-form .form-group input {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Remove the emoji badge for cleaner look */
    .cta-waitlist-form::before {
        display: none;
    }
    
    .cta-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .cta-icon-left {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(58, 75, 154, 0.2);
    }
    
    .cta-content-text {
        margin-bottom: 1.5rem;
    }
    
    .cta-content-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: #ffffff;
    }
    
    .cta-content-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 1.5rem;
    }
    
    .cta-waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .waitlist-form-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    /* Enhanced button styling for mobile */
    .cta-button-group {
        gap: 1rem;
    }

    .cta-button-group .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 16px rgba(58, 75, 154, 0.15);
    }

    .cta-button-group .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(58, 75, 154, 0.25);
    }
    
    .success-checkmark {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .success-features {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .cta-waitlist-form .footer,
    .cta-section .footer {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-waitlist-form .form-disclaimer,
    .cta-section .form-disclaimer {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        text-align: left;
    }
    
    .cta-waitlist-form-content {
        height: auto;
        justify-content: flex-start;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content-wrapper {
        gap: 2rem !important;
        margin-top: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cta-buttons,
    .cta-waitlist-form {
        max-width: 100% !important;
        width: calc(100% - 2rem) !important;
        margin: 0 1rem !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }
    
    .cta-section .container {
        padding: 0 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Ensure perfect centering on very small screens */
    .cta-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--text-primary);
    border: 2px solid white;
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .btn-white {
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
}

[data-theme="dark"] .btn-white:hover {
    background: #f8f9fa;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-white-outline:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

[data-theme="dark"] .btn-white-outline:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* CTA Section specific button styles */
.cta-section .btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: var(--transition);
}

.cta-section .btn-white:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-white:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: var(--transition);
}

.cta-section .btn-white-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-white-outline:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .cta-section .btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

[data-theme="dark"] .cta-section .btn-white:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .cta-section .btn-white:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .cta-section .btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

[data-theme="dark"] .cta-section .btn-white-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .cta-section .btn-white-outline:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--badge-color);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.layer-card .feature-icon {
    position: relative;
    overflow: hidden;
}

.layer-card .feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-primary);
}

.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 80%;
    height: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
}

/* Why Join Section */
.why-join {
    background: var(--bg-secondary);
}

.why-join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    min-height: 400px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cta-icon-left {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.cta-icon-left:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

.cta-visual {
    margin-top: 3rem;
}

.cta-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.about-feature i {
    color: var(--primary-color);
}

.about-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-card {
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: none;
    transition: var(--transition);
}

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

.coming-soon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-icon dotlottie-wc {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
}

.coming-soon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.coming-soon-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-text strong {
    display: block;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 75, 154, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(186, 198, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

[data-theme="dark"] .form-message.success {
    background: #064e3b;
    color: #6ee7b7;
    border: 1px solid #047857;
}

[data-theme="dark"] .form-message.error {
    background: #7f1d1d;
    color: #fca5a5;
    border: 1px solid #dc2626;
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.made-in-india {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
    margin: 0.5rem 0;
    font-style: italic;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

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

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

/* Scroll Progress Bar */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    z-index: 2000;
    transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 1rem;
    }
    
    .why-join-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .made-in-india {
        margin: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 2rem;
    }
    
    [data-theme="dark"] .nav-menu {
        background: rgba(15, 15, 15, 0.98);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        width: 100%;
        text-align: center;
        max-width: 280px;
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        color: var(--text-primary);
        font-weight: 500;
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
        border-color: var(--border-color);
        transform: translateY(-1px);
    }
    
    .nav-cta {
        margin-top: 0.5rem;
        padding: 1rem 2rem !important;
        font-size: 1.125rem;
        background: var(--primary-color);
        color: white !important;
        border: none;
        box-shadow: var(--shadow-md);
    }
    
    .nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Theme toggle repositioned for mobile */
    .theme-toggle {
        position: fixed;
        top: 20px;
        right: 80px;
        z-index: 1001;
        margin-left: 0;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    [data-theme="dark"] .theme-toggle {
        background: rgba(15, 15, 15, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .steps-line {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    /* Clean mobile menu without complex decorations */
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-card,
    .step-card {
        padding: 1.5rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cta-content-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        min-height: auto;
        background: rgba(15, 15, 15, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 18px;
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 6px 24px rgba(58, 75, 154, 0.2);
        position: relative;
        margin: 0 auto;
        text-align: center;
        color: rgba(255, 255, 255, 0.95);
        max-width: 620px;
    }

    .cta-waitlist-form {
        padding: 1.5rem;
        background: rgba(15, 15, 15, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 18px;
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 6px 24px rgba(58, 75, 154, 0.2);
        margin: 0 auto;
        position: relative;
        color: rgba(255, 255, 255, 0.95);
        max-width: 620px;
    }

    /* Enhanced visual separator for small mobile */
    .cta-buttons::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), #5a6bb8, var(--primary-color));
        border-radius: 1px;
        box-shadow: 0 2px 6px rgba(58, 75, 154, 0.3);
    }

    /* Add visual separator for small mobile */
    .cta-buttons::after {
        content: '';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), transparent);
        border-radius: 2px;
        box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
    }

    .cta-content h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
        color: white;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced form styling for mobile */
    .cta-waitlist-form .form-input {
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(58, 75, 154, 0.1);
        border-radius: 12px;
        padding: 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .cta-waitlist-form .form-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(58, 75, 154, 0.1);
        outline: none;
    }

    .cta-waitlist-form .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), #5a6bb8);
        border: none;
        border-radius: 12px;
        padding: 1rem 2rem;
        font-weight: 600;
        box-shadow: 0 8px 24px rgba(58, 75, 154, 0.3);
        transition: all 0.3s ease;
    }

    .cta-waitlist-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(58, 75, 154, 0.4);
    }

    .cta-content-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .cta-content-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cta-icon-left {
        width: 45px;
        height: 45px;
    }

    .cta-section {
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0.6;
        pointer-events: none;
    }

    /* Enhanced mobile CTA animations */
    .cta-card {
        animation: fadeInUp 0.6s ease-out;
    }

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

    /* Force mobile layout overrides */
    .cta-content-wrapper > * {
        width: 100% !important;
        max-width: none !important;
    }

    /* Ensure proper stacking */
    .cta-buttons,
    .cta-waitlist-form {
        display: block !important;
        float: none !important;
        clear: both !important;
    }

    .cta-button-group {
        gap: 0.75rem;
    }

    .cta-button-group .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .waitlist-form-header h3 {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .cta-waitlist-form .form-row {
        gap: 0.75rem;
    }

    .cta-waitlist-form .form-group {
        margin-bottom: 0.75rem;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        width: 90%;
        margin-top: 0.5rem;
    }

    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .section-header p {
        font-size: 1rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
} 

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.legal-section h2:first-child {
    padding-top: 0;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
}

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

.legal-section ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.legal-section li::marker {
    color: var(--primary-color);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-details {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Dark mode adjustments for legal pages */
[data-theme="dark"] .contact-details {
    background: var(--bg-tertiary);
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .legal-section ul {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
        padding-top: 1.5rem;
    }
    
    .contact-details {
        padding: 1.25rem;
    }
}
.why-join-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.animated-card {
    width: 280px;
    height: 360px;
    perspective: 1000px;
    cursor: pointer;
}

.card-content {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-card:hover .card-content {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card-front {
    background: var(--bg-primary);
    color: var(--text-primary);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.card-front::before {
    content: '🤔';
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-back {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: rotateY(180deg);
    padding: 2rem;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
}

.card-back-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.card-back-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.card-back-content span {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.animated-card:hover .card-front,
.animated-card:hover .card-back {
    box-shadow: var(--shadow-lg);
} 

/* Form Row Improvements */
.cta-waitlist-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Input Validation States */
.cta-waitlist-form .form-group input:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.cta-waitlist-form .form-group input:valid:not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.cta-waitlist-form .form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
    animation: shake 0.5s ease-in-out;
}

/* Input Error Messages */
.input-error {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
    min-height: 1rem;
    transition: var(--transition);
    font-weight: 500;
}

/* Enhanced Form Group Styling */
.cta-waitlist-form .form-group {
    position: relative;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.cta-waitlist-form .form-group:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* General mobile improvements */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Better touch targets for mobile */
    .btn, .nav-link, .nav-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile touch improvements */
    .btn:active,
    .nav-link:active,
    .nav-cta:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Mobile hover state fallback */
    .btn:hover,
    .nav-link:hover,
    .nav-cta:hover {
        transform: none;
    }
    
    /* Improved spacing for mobile */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile performance optimizations */
    .hero-pattern,
    .hero-gradient {
        opacity: 0.3;
    }
    
    /* Reduce animations on mobile for better performance */
    .feature-card:hover,
    .step-card:hover,
    .stat-card:hover {
        transform: translateY(-2px);
    }
    
    /* Mobile-specific spacing */
    .features-grid,
    .steps-grid,
    .stats-grid {
        margin-top: 2rem;
    }
    
    /* Mobile animation optimizations */
    .feature-card,
    .step-card,
    .stat-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Mobile scroll optimizations */
    .hero-pattern {
        will-change: transform;
    }
    
    /* Mobile interaction optimizations */
    .nav-toggle:active {
        transform: scale(0.95);
    }
    
    /* Mobile menu performance */
    .nav-menu {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* Mobile gesture support */
    .nav-menu {
        touch-action: pan-y;
    }
    
    /* Mobile reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .nav-menu,
        .feature-card,
        .step-card,
        .stat-card {
            transition: none;
        }
        
        .hero-pattern {
            animation: none;
        }
    }
    
    /* Mobile performance essential optimizations */
    .nav-menu {
        contain: layout style paint;
        will-change: transform;
        transform: translate3d(0, 0, 0);
        transform-origin: left center;
        perspective: 1000px;
        backface-visibility: hidden;
        mask: none;
        mask-image: none;
        mask-border: none;
    }
    
    /* Mobile accessibility improvements */
    .nav-link:focus,
    .btn:focus,
    .nav-cta:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Mobile scroll behavior */
    html {
        scroll-padding-top: 80px;
    }
    
    /* Mobile focus management */
    .nav-menu.active {
        outline: none;
    }
    
    /* Mobile keyboard navigation */
    .nav-link:focus-visible,
    .btn:focus-visible,
    .nav-cta:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Mobile screen reader support */
    .nav-menu[aria-hidden="true"] {
        display: none;
    }
    
    /* Mobile high contrast support */
    @media (prefers-contrast: high) {
        .nav-link,
        .btn,
        .nav-cta {
            border: 2px solid currentColor;
        }
    }
    
    /* Mobile dark mode support */
    @media (prefers-color-scheme: dark) {
        .nav-menu {
            background: rgba(15, 15, 15, 0.98);
        }
    }
    
    /* Mobile light mode support */
    @media (prefers-color-scheme: light) {
        .nav-menu {
            background: rgba(255, 255, 255, 0.98);
        }
    }
    
    /* Mobile landscape orientation support */
    @media (orientation: landscape) and (max-height: 500px) {
        .nav-menu {
            padding: 1rem;
            gap: 0.75rem;
        }
        
        .nav-link {
            padding: 0.5rem 1rem;
            font-size: 1rem;
        }
    }
    
    /* Mobile portrait orientation support */
    @media (orientation: portrait) and (max-width: 768px) {
        .nav-menu {
            padding: 2rem;
            gap: 1.5rem;
        }
        
        .nav-link {
            padding: 0.75rem 1.5rem;
            font-size: 1.125rem;
        }
    }
    
    /* Mobile device pixel ratio support */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .nav-menu {
            backdrop-filter: blur(30px);
        }
    }
    
    /* Mobile device pixel ratio support for older devices */
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
        .nav-menu {
            backdrop-filter: blur(25px);
        }
    }
    
    /* Mobile device pixel ratio support for very old devices */
    @media (-webkit-min-device-pixel-ratio: 1), (min-resolution: 96dpi) {
        .nav-menu {
            backdrop-filter: blur(20px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
        .nav-menu {
            backdrop-filter: blur(35px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 4), (min-resolution: 384dpi) {
        .nav-menu {
            backdrop-filter: blur(40px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 5), (min-resolution: 480dpi) {
        .nav-menu {
            backdrop-filter: blur(45px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 6), (min-resolution: 576dpi) {
        .nav-menu {
            backdrop-filter: blur(50px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 7), (min-resolution: 672dpi) {
        .nav-menu {
            backdrop-filter: blur(55px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 8), (min-resolution: 768dpi) {
        .nav-menu {
            backdrop-filter: blur(60px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 9), (min-resolution: 864dpi) {
        .nav-menu {
            backdrop-filter: blur(65px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 10), (min-resolution: 960dpi) {
        .nav-menu {
            backdrop-filter: blur(70px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 11), (min-resolution: 1056dpi) {
        .nav-menu {
            backdrop-filter: blur(75px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 12), (min-resolution: 1152dpi) {
        .nav-menu {
            backdrop-filter: blur(80px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 13), (min-resolution: 1248dpi) {
        .nav-menu {
            backdrop-filter: blur(85px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 14), (min-resolution: 1344dpi) {
        .nav-menu {
            backdrop-filter: blur(90px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 15), (min-resolution: 1440dpi) {
        .nav-menu {
            backdrop-filter: blur(95px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 16), (min-resolution: 1536dpi) {
        .nav-menu {
            backdrop-filter: blur(100px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 17), (min-resolution: 1632dpi) {
        .nav-menu {
            backdrop-filter: blur(105px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 18), (min-resolution: 1728dpi) {
        .nav-menu {
            backdrop-filter: blur(110px);
        }
    }
    
    /* Mobile device pixel ratio support for high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .nav-menu {
            backdrop-filter: blur(25px);
        }
    }
    
    /* Mobile device pixel ratio support for ultra-high DPI devices */
    @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
        .nav-menu {
            backdrop-filter: blur(35px);
        }
    }
    
    /* Mobile touch and interaction improvements */
    .nav-menu {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .nav-menu,
        .feature-card,
        .step-card,
        .stat-card {
            transition: none;
        }
        
        .hero-pattern {
            animation: none;
        }
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Features grid mobile optimization */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Steps mobile optimization */
    .steps-line {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    /* Stats mobile optimization */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* CTA form mobile optimization */
    .cta-waitlist-form {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .waitlist-form-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .waitlist-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-waitlist-form .form-group {
        margin-bottom: 1rem;
    }
    
    .cta-waitlist-form .btn-full {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .success-checkmark {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .success-features {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .form-disclaimer {
        font-size: 0.8rem;
    }
    
    /* Mobile form improvements */
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-input:focus {
        font-size: 16px;
    }
    
    /* Mobile form spacing */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    /* Mobile form validation */
    .input-error {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    /* Mobile form input improvements */
    .form-input,
    .form-textarea {
        border-radius: 8px;
        border-width: 1px;
    }
    
    /* Mobile form button improvements */
    .btn-full {
        border-radius: 8px;
        font-weight: 600;
    }
    
    /* Mobile form accessibility */
    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    /* Mobile form error states */
    .form-input.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
    }
    
    .form-input.valid {
        border-color: #10b981;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
    }
    
    /* Mobile form success states */
    .form-message.success {
        border-radius: 8px;
        padding: 1rem;
    }
    
    .form-message.error {
        border-radius: 8px;
        padding: 1rem;
    }
    
    /* Mobile form loading states */
    .btn-full.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }
    
    /* Mobile form validation feedback */
    .form-group {
        position: relative;
    }
    
    .form-group .input-error {
        position: absolute;
        bottom: -1.5rem;
        left: 0;
        color: #ef4444;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    /* Mobile form success feedback */
    .form-group .input-success {
        position: absolute;
        bottom: -1.5rem;
        right: 0;
        color: #10b981;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    /* Mobile form input sizing */
    .form-input,
    .form-textarea {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    /* Mobile form button sizing */
    .btn-full {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    /* Mobile form spacing */
    .form-row {
        gap: 1rem;
    }
    
    /* Mobile form validation timing */
    .form-input:invalid {
        animation: none;
    }
    
    .form-input:valid {
        animation: none;
    }
    
    /* Mobile form focus states */
    .form-input:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(58, 75, 154, 0.15);
    }
    
    /* Mobile form hover states */
    .form-input:hover {
        transform: none;
        border-color: var(--primary-color);
    }
    
    /* Mobile form active states */
    .form-input:active {
        transform: none;
        border-color: var(--primary-color);
    }
    
    /* Mobile form disabled states */
    .form-input:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background-color: var(--bg-secondary);
    }
    
    /* Mobile form placeholder states */
    .form-input::placeholder {
        color: var(--text-light);
        opacity: 0.8;
    }
    
    /* Mobile form autofill states */
    .form-input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill focus states */
    .form-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset, 0 0 0 3px rgba(58, 75, 154, 0.15);
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill hover states */
    .form-input:-webkit-autofill:hover {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill active states */
    .form-input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill disabled states */
    .form-input:-webkit-autofill:disabled {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-secondary) inset;
        -webkit-text-fill-color: var(--text-secondary);
    }
    
    /* Mobile form autofill readonly states */
    .form-input:-webkit-autofill[readonly] {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-secondary) inset;
        -webkit-text-fill-color: var(--text-secondary);
    }
    
    /* Mobile form autofill required states */
    .form-input:-webkit-autofill:required {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill optional states */
    .form-input:-webkit-autofill:optional {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill valid states */
    .form-input:-webkit-autofill:valid {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill invalid states */
    .form-input:-webkit-autofill:invalid {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form autofill essential states */
    .form-input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    .form-input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset, 0 0 0 3px rgba(58, 75, 154, 0.15);
        -webkit-text-fill-color: var(--text-primary);
    }
    
    /* Mobile form input improvements */
    .form-input,
    .form-textarea {
        border-radius: 8px;
        border-width: 1px;
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    /* Mobile form button improvements */
    .btn-full {
        border-radius: 8px;
        font-weight: 600;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    /* Mobile form validation feedback */
    .form-group {
        position: relative;
        margin-bottom: 1.25rem;
    }
    
    .form-group .input-error {
        position: absolute;
        bottom: -1.5rem;
        left: 0;
        color: #ef4444;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    /* Mobile form success feedback */
    .form-group .input-success {
        position: absolute;
        bottom: -1.5rem;
        right: 0;
        color: #10b981;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    /* Mobile form error states */
    .form-input.error {
        border-color: #ef4444;
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
    }
    
    .form-input.valid {
        border-color: #10b981;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
    }
    
    /* Mobile form success states */
    .form-message.success {
        border-radius: 8px;
        padding: 1rem;
    }
    
    .form-message.error {
        border-radius: 8px;
        padding: 1rem;
    }
    
    /* Mobile form loading states */
    .btn-full.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }
    
    /* Mobile form validation timing */
    .form-input:invalid {
        animation: none;
    }
    
    .form-input:valid {
        animation: none;
    }
    
    /* Mobile form focus states */
    .form-input:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(58, 75, 154, 0.15);
    }
    
    /* Mobile form hover states */
    .form-input:hover {
        transform: none;
        border-color: var(--primary-color);
    }
    
    /* Mobile form active states */
    .form-input:active {
        transform: none;
        border-color: var(--primary-color);
    }
    
    /* Mobile form disabled states */
    .form-input:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background-color: var(--bg-secondary);
    }
    
    /* Mobile form placeholder states */
    .form-input::placeholder {
        color: var(--text-light);
        opacity: 0.8;
    }
    
    /* Mobile form spacing */
    .form-row {
        gap: 1rem;
    }
    
    /* Mobile accessibility final improvements */
    .nav-menu {
        outline: none;
    }
    
    .nav-menu:focus-within {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Mobile ARIA support */
    .nav-menu[aria-expanded="true"] {
        transform: translateX(0);
    }
    
    .nav-menu[aria-expanded="false"] {
        transform: translateX(-100%);
    }
    
    /* Mobile focus visible support */
    .nav-link:focus-visible,
    .btn:focus-visible,
    .nav-cta:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-radius: var(--radius-md);
    }
    
    /* Mobile performance final optimizations */
    .nav-menu {
        contain: layout style paint;
        will-change: transform;
        transform: translate3d(0, 0, 0);
        transform-origin: left center;
        perspective: 1000px;
        backface-visibility: hidden;
        mask: none;
        mask-image: none;
        mask-border: none;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile animation final optimizations */
    .feature-card,
    .step-card,
    .stat-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .feature-card:hover,
    .step-card:hover,
    .stat-card:hover {
        transform: translateY(-2px);
    }
    
    /* Mobile scroll final optimizations */
    .hero-pattern {
        will-change: transform;
    }
    
    /* Mobile device pixel ratio final support */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .nav-menu {
            backdrop-filter: blur(25px);
        }
    }
    
    @media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
        .nav-menu {
            backdrop-filter: blur(35px);
        }
    }
    
    /* Mobile orientation final support */
    @media (orientation: landscape) and (max-height: 500px) {
        .nav-menu {
            padding: 1rem;
            gap: 0.75rem;
        }
        
        .nav-link {
            padding: 0.5rem 1rem;
            font-size: 1rem;
        }
        
        /* CTA landscape optimization */
        .cta-section {
            padding: 40px 0;
        }
        
        .cta-content-wrapper {
            gap: 1.5rem;
        }
        
        .cta-buttons {
            padding: 1.5rem 1rem;
            min-height: auto;
        }
        
        .cta-waitlist-form {
            padding: 1.5rem 1rem;
        }
    }
    
    @media (orientation: portrait) and (max-width: 768px) {
        .nav-menu {
            padding: 2rem;
            gap: 1.5rem;
        }
        
        .nav-link {
            padding: 0.75rem 1.5rem;
            font-size: 1.125rem;
        }
        
        /* CTA portrait optimization */
        .cta-section {
            padding: 60px 0;
        }
        
        .cta-content-wrapper {
            gap: 2rem;
        }
        
        .cta-buttons {
            padding: 2rem 1.5rem;
        }
        
        .cta-waitlist-form {
            padding: 2rem 1.5rem;
        }
    }
    
    /* Mobile form final improvements */
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border-width: 1px;
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        font-size: 16px;
        transform: none;
        box-shadow: 0 0 0 3px rgba(58, 75, 154, 0.15);
    }
    
    .btn-full {
        border-radius: 8px;
        font-weight: 600;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    /* CTA section mobile optimization */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-content-wrapper {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    /* CTA card mobile optimization */
    .cta-card {
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    /* CTA buttons section mobile optimization */
    .cta-buttons {
        padding: 2rem 1.5rem;
        min-height: auto;
        gap: 1.5rem;
    }
    
    .cta-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .cta-icon-left {
        width: 55px;
        height: 55px;
    }
    
    .cta-content-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-content-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .cta-button-group {
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button-group .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* CTA waitlist form mobile optimization */
    .cta-waitlist-form {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }
    
    .waitlist-form-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .waitlist-badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(58, 75, 154, 0.1);
        color: var(--primary-color);
        border-radius: var(--radius-full);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .waitlist-form-header h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .cta-waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-waitlist-form .form-group {
        margin-bottom: 1rem;
    }
    
    .cta-waitlist-form .form-input {
        font-size: 16px;
        min-height: 48px;
        padding: 0.875rem 1rem;
    }
    
    .cta-waitlist-form .btn-full {
        width: 100%;
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .cta-waitlist-form .footer {
        margin: 1.5rem 0;
    }
    
    .cta-waitlist-form .form-disclaimer {
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Footer mobile optimization */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Ultra-small mobile optimization */
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        max-width: 250px;
    }
    
    .nav-cta {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
    }
    
    .theme-toggle {
        top: 15px;
        right: 70px;
        width: 35px;
        height: 35px;
    }
    
    /* Ultra-small mobile performance */
    .hero-pattern,
    .hero-gradient {
        opacity: 0.2;
    }
    
    /* Ultra-small mobile spacing */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Ultra-small mobile accessibility */
    .nav-link:focus,
    .btn:focus,
    .nav-cta:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 1px;
    }
    
    /* Ultra-small mobile scroll behavior */
    html {
        scroll-padding-top: 70px;
    }
    
    /* Hero section ultra-small mobile */
    .hero {
        padding: 80px 0 40px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Features ultra-small mobile */
    .feature-card,
    .step-card {
        padding: 1.25rem;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .steps-grid {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    /* Stats ultra-small mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    /* CTA form ultra-small mobile */
    .cta-waitlist-form {
        padding: 1rem;
    }
    
    .waitlist-form-header h3 {
        font-size: 1.25rem;
    }
    
    .cta-waitlist-form .btn-full {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* CTA section ultra-small mobile optimization */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .cta-content-wrapper {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .cta-card {
        padding: 0 0.5rem;
    }
    
    /* CTA buttons ultra-small mobile */
    .cta-buttons {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }
    
    .cta-icon-left {
        width: 50px;
        height: 50px;
    }
    
    .cta-content-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-content-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    
    .cta-button-group {
        gap: 0.75rem;
    }
    
    .cta-button-group .btn {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* CTA waitlist form ultra-small mobile */
    .cta-waitlist-form {
        padding: 1.5rem 1rem;
    }
    
    .waitlist-form-header {
        margin-bottom: 1.5rem;
    }
    
    .waitlist-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .waitlist-form-header h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .cta-waitlist-form .form-row {
        gap: 0.75rem;
    }
    
    .cta-waitlist-form .form-group {
        margin-bottom: 0.75rem;
    }
    
    .cta-waitlist-form .form-input {
        min-height: 44px;
        padding: 0.75rem 0.875rem;
        font-size: 16px;
    }
    
    .cta-waitlist-form .btn-full {
        min-height: 44px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-waitlist-form .footer {
        margin: 1.25rem 0;
    }
    
    .cta-waitlist-form .form-disclaimer {
        font-size: 0.8rem;
        padding: 0.875rem;
    }
    
    /* CTA mobile touch and interaction improvements */
    .cta-button-group .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.2s ease;
    }
    
    .cta-button-group .btn:active {
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
    
    .cta-waitlist-form .form-input {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cta-waitlist-form .btn-full {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.2s ease;
    }
    
    .cta-waitlist-form .btn-full:active {
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
    
    /* CTA mobile focus improvements */
    .cta-button-group .btn:focus,
    .cta-waitlist-form .btn-full:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .cta-waitlist-form .form-input:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-color: var(--primary-color);
    }
    
    .success-content h4 {
        font-size: 1rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
    
    /* Footer ultra-small mobile */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Contact form ultra-small mobile */
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    /* Social links ultra-small mobile */
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Micro-interactions and Hover Effects */
.cta-waitlist-form .form-group input:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-waitlist-form .form-group input:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(58, 75, 154, 0.15), 0 8px 24px rgba(58, 75, 154, 0.1);
}

.cta-waitlist-form .btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(58, 75, 154, 0.4);
}

.cta-waitlist-form .btn-full:active {
    transform: translateY(-1px);
}

/* Focus Management for Accessibility */
.cta-waitlist-form .form-group input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cta-waitlist-form .btn-full:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
.cta-waitlist-form * {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Success Animation */
.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    animation: bounceIn 0.8s ease-out;
}

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

/* Enhanced Error Animation */
@keyframes shake {
    0%, 100% { 
        transform: translateX(0); 
    }
    25% { 
        transform: translateX(-8px); 
    }
    75% { 
        transform: translateX(8px); 
    }
}

/* Loading State Enhancements */
.cta-waitlist-form .btn-full.loading {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(58, 75, 154, 0.2);
}

.cta-waitlist-form .btn-full.loading .loading-spinner {
    animation: spin 1s linear infinite;
}

/* Form Validation Visual Feedback */
.cta-waitlist-form .form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
    animation: shake 0.5s ease-in-out;
}

.cta-waitlist-form .form-group input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

/* Form Success State */
.cta-waitlist-form.success {
    border-color: #10b981;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    transition: all 0.5s ease-in-out;
}

.cta-waitlist-form.success::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

/* Enhanced Input Icons */
.input-icon {
    position: absolute;
    right: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    opacity: 0.7;
}

.form-input:focus + .input-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.form-input.error + .input-icon {
    color: #ef4444;
}

.form-input.valid + .input-icon {
    color: #10b981;
} 

.cta-content-text {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.cta-content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

/* Critical Mobile CTA Overrides - Must be at the end */
@media (max-width: 768px) {
    .cta-content-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 2.5rem !important;
        align-items: stretch !important;
        margin-top: 1.5rem !important;
    }
    
    .cta-buttons {
        grid-row: 1 !important;
        order: 1 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 1rem !important;
    }
    
    .cta-waitlist-form {
        grid-row: 2 !important;
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 1rem !important;
    }
}

@media (max-width: 480px) {
    .cta-content-wrapper {
        gap: 2rem !important;
        margin-top: 1rem !important;
    }
    
    .cta-buttons,
    .cta-waitlist-form {
        margin: 0 0.75rem !important;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    transition: var(--transition);
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.nav-toggle .bar {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 2rem;
    }
    
    [data-theme="dark"] .nav-menu {
        background: rgba(15, 15, 15, 0.95);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        border-radius: var(--radius-md);
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 1rem 2rem !important;
        font-size: 1.125rem;
    }
    
    .nav-toggle {
        display: flex;
    }
}

[data-theme="dark"] .footer-bottom-links a:hover {
    color: var(--text-primary);
}
.waitlist-avatars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.avatars-wrapper {
    display: flex;
    position: relative;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

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

.avatars-wrapper:hover .avatar {
    transform: translateX(-8px);
}

.avatars-wrapper:hover .avatar:nth-child(2) {
    transition-delay: 0.05s;
}

.avatars-wrapper:hover .avatar:nth-child(3) {
    transition-delay: 0.1s;
}

.avatars-wrapper:hover .avatar:nth-child(4) {
    transition-delay: 0.15s;
}

.avatars-wrapper:hover .avatar:nth-child(5) {
    transition-delay: 0.2s;
}

.avatar-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}

.avatar-plus:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.avatars-wrapper:hover .avatar-plus {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.25s;
}

.waitlist-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .waitlist-avatars {
        margin-left: 0;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .waitlist-text {
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .avatar {
        width: 32px;
        height: 32px;
        margin-left: -10px;
    }
    
    .avatar-plus {
        width: 32px;
        height: 32px;
        margin-left: -10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .waitlist-avatars {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .avatars-wrapper {
        justify-content: center;
    }
    
    .waitlist-text {
        font-size: 0.75rem;
    }
}