/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --success-color: #10b981;
    --error-color: #ef4444;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables - Updated for better footer visibility */
[data-theme="dark"] {
    --primary-color: #60a5fa;
    --primary-dark: #3b82f6;
    --secondary-color: #1f2937;
    --text-color: #f9fafb;
    --text-light: #d1d5db;
    --white: #111827;
    --gray-100: #1f2937;
    --gray-200: #374151;
    --gray-300: #4b5563;
    --success-color: #34d399;
    --error-color: #f87171;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: var(--transition);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Debug: Make sure all elements respect rounded corners */
* {
    box-sizing: border-box;
}

/* Main content wrapper with rounded corners */
.main-wrapper {
    background-color: var(--white) !important;
    border-radius: 0 !important;
    margin: 0;
    max-width: none;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

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

/* Header */
.header {
    padding: 20px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 10001;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    font-size: 18px;
    transition: var(--transition);
    display: block;
}

[data-theme="dark"] .theme-toggle {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Theme toggle animation */
.theme-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.theme-toggle:hover::before {
    width: 100%;
    height: 100%;
}

/* Enhanced dark mode styles */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.05));
}

[data-theme="dark"] .feature-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .feature-card:hover {
    background: var(--gray-200);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .step {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px !important;
}

[data-theme="dark"] .waitlist-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

[data-theme="dark"] .footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .footer-brand h3 {
    color: var(--white) !important;
    opacity: 1;
}

[data-theme="dark"] .footer-brand p {
    color: var(--text-light) !important;
    opacity: 0.9;
}

[data-theme="dark"] .footer .footer-links a {
    color: var(--text-light) !important;
    opacity: 0.9 !important;
}

[data-theme="dark"] .footer .footer-links a:hover {
    color: var(--white) !important;
    opacity: 1 !important;
}

[data-theme="dark"] .footer-bottom p {
    color: var(--text-light) !important;
    opacity: 0.8;
}

/* Force dark mode footer text visibility */
[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-bottom p {
    color: #d1d5db !important;
}

/* Smooth transitions for all elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

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

/* Counter Animation */
.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

/* Pulse Animation for Icons */
.feature-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Loading Spinner Enhancement */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

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

/* Scroll-triggered animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Notification System */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left: 4px solid var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.notification.error {
    border-left: 4px solid var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

.notification.info {
    border-left: 4px solid var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    animation: progress 3s linear forwards;
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.notification-close:hover {
    background: var(--gray-100);
    color: var(--text-color);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-radius: 20px 20px 0 0;
    box-shadow: var(--shadow-lg);
    z-index: 10002;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    max-width: 100%;
    width: 100%;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-settings {
    background: var(--gray-100);
    color: var(--text-color);
    border: 1px solid var(--gray-200);
}

.cookie-settings:hover {
    background: var(--gray-200);
}

.cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--gray-300);
}

.cookie-decline:hover {
    background: var(--gray-100);
    color: var(--text-color);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    background: var(--gray-100);
    color: var(--text-color);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.cookie-category p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: var(--transition);
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background-color: var(--gray-200);
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

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

.cookie-save:hover {
    background: var(--primary-dark);
}

.cookie-accept-all {
    background: var(--success-color);
    color: var(--white);
}

.cookie-accept-all:hover {
    background: #059669;
}

/* Dark mode styles for cookies */
[data-theme="dark"] .cookie-banner {
    background: var(--gray-100);
    border-top-color: var(--gray-200);
}

[data-theme="dark"] .cookie-modal-content {
    background: var(--gray-100);
}

[data-theme="dark"] .cookie-modal-header {
    border-bottom-color: var(--gray-200);
}

[data-theme="dark"] .cookie-modal-footer {
    border-top-color: var(--gray-200);
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .floating-shape {
        display: none;
    }
    
    .hero-bg-elements {
        display: none;
    }
    
    .feature-card:hover::before {
        left: -100%;
    }
    
    .notification {
        min-width: 280px;
        margin: 0 10px;
    }
    
    .notification-container {
        right: 10px;
        left: 10px;
        top: 70px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 0;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    transition: var(--transition);
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 500px;
    transition: var(--transition);
}

/* Waitlist Form */
.waitlist-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.waitlist-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.waitlist-form input:invalid {
    border-color: var(--error-color);
}

.waitlist-form input:valid {
    border-color: var(--success-color);
}

/* Input validation styles */
.waitlist-form input:not(:placeholder-shown):invalid {
    border-color: var(--error-color);
    background-color: rgba(239, 68, 68, 0.05);
}

.waitlist-form input:not(:placeholder-shown):valid {
    border-color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.message {
    min-height: 20px;
    font-size: 14px;
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px !important;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.location-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transform: translate(-50%, -50%);
}

.dot-1 {
    top: 35%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 45%;
    right: 25%;
    animation-delay: 0.5s;
}

.dot-3 {
    bottom: 35%;
    left: 45%;
    animation-delay: 1s;
}

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

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    border-radius: 16px !important;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Features */
.features {
    padding: 100px 0;
    background-color: var(--secondary-color);
    border-radius: 20px !important;
    margin: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    border-radius: 20px !important;
    margin: 20px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    background: var(--white);
    border-radius: 16px !important;
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
}

/* Waitlist CTA */
.waitlist-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 20px !important;
    margin: 20px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.waitlist-form-large {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-form-large input {
    flex: 1;
    min-width: 300px;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.waitlist-form-large input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-form-large input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--text-color);
    border-radius: 20px 20px 0 0 !important;
    margin-top: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
    align-items: start;
    padding: 0 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-email {
    margin-top: 10px !important;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    font-size: 0.95rem;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding: 30px 40px 0 40px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

.version-info {
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
    margin-top: 8px !important;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .nav-links a {
        display: none;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--gray-100);
        border: 2px solid var(--gray-200);
        border-radius: 8px;
        cursor: pointer;
        transition: var(--transition);
        gap: 3px;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .hamburger {
        width: 18px;
        height: 2px;
        background: var(--text-color);
        border-radius: 1px;
        transition: var(--transition);
    }
    
    .mobile-menu-toggle:hover .hamburger {
        background: white;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 0;
    }

    .hero-content {
        align-items: center;
    }

    .waitlist-section,
    .waitlist-form-large {
        max-width: 100%;
    }

    .waitlist-form,
    .waitlist-form-large {
        flex-direction: column;
        align-items: stretch;
    }

    .waitlist-form input,
    .waitlist-form-large input {
        min-width: auto;
    }

    .stats {
        justify-content: center;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Success and Error Messages */
.message {
    min-height: 20px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message.success {
    color: var(--success-color);
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success-color);
    padding-left: 12px;
}

.message.error {
    color: var(--error-color);
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--error-color);
    padding-left: 12px;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

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

/* Enhanced animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Modern glassmorphism effect for hero section */
.hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}
