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

:root {
    --primary-color: #FFFFFF;
    --primary-dark: #E5E7EB;
    --primary-light: #374151;
    --accent-color: #10B981;
    --bg-white: #000000;
    --bg-light: #111111;
    --bg-gray: #1A1A1A;
    --bg-section: #0A0A0A;
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-tertiary: #9CA3AF;
    --text-muted: #6B7280;
    --border-light: #2D2D2D;
    --border-medium: #404040;
    --shadow-light: 0 1px 3px rgba(255, 255, 255, 0.05);
    --shadow-medium: 0 4px 6px rgba(255, 255, 255, 0.07);
    --shadow-card: 0 1px 2px rgba(255, 255, 255, 0.03);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.2s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 80px;
    background: var(--bg-white);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.last-updated {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.legal-content {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 8px;
}

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

.legal-section p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

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

.legal-section a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 16px 60px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
    height: 60px;
    display: flex;
    align-items: center;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
}

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

/* Ensure proper mobile menu initial state */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    font-size: 16px;
}

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

.nav-cta {
    background: var(--primary-color) !important;
    color: var(--bg-white) !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    border-radius: 2px;
    display: block;
    pointer-events: none;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 6px 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.language-btn:hover {
    background: var(--border-medium);
    color: var(--text-primary);
}

.language-flag {
    font-size: 16px;
}

.language-code {
    font-weight: 500;
    font-size: 12px;
}

.language-arrow {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.language-selector.open .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

/* Footer language selector positioning */
.footer-language {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer .language-selector {
    position: relative;
    margin: 0;
}

.footer .language-dropdown {
    position: absolute;
    bottom: 100%;
    top: auto;
    right: 0;
    left: auto;
    transform: translateY(10px);
    margin-bottom: 8px;
}

.footer .language-selector.open .language-dropdown {
    transform: translateY(0);
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 10px 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-align: left;
}

.language-option:hover {
    background: var(--border-medium);
    color: var(--text-primary);
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.language-option.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-white);
    padding-top: 120px; /* Increased for better header clearance */
    padding-bottom: 60px;
}

.hero-background {
    display: none;
}

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

.hero-content {
    z-index: 2;
}

.urgency-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 25px;
    padding: 12px 28px;
    margin-bottom: 24px;
    width: fit-content;
    min-width: 300px; /* Increased for longer Spanish text */
    max-width: 450px; /* Added max-width to prevent too wide on desktop */
    box-shadow: 
        0 8px 32px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: urgencyGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* Changed to visible to allow text to show */
}

/* Make beta counter pill accommodate longer Spanish text */
#betaCounter {
    min-width: 320px;
    max-width: 480px;
}

.urgency-pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(76, 175, 80, 0.05) 50%, transparent 70%);
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.urgency-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.3);
}

@keyframes urgencyGlow {
    0% {
        box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
    }
    100% {
        box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4);
    }
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap; /* Keep elements on same line */
    width: 100%;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.urgency-text {
    font-size: 12px;
    font-weight: 600;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-count-display {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    overflow: visible; /* Allow text to show fully */
    text-overflow: visible; /* Don't truncate text */
    max-width: none; /* Remove width restrictions */
}

#userCount {
    color: #4CAF50;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.beta-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}



.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}



.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 400px;
}

.hero-cta {
    margin-bottom: 2rem;
}


.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* New CTA Styles */
.btn-primary-urgent {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-primary-urgent:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-secondary:hover {
    background: var(--border-medium);
    color: var(--text-primary);
}

.cta-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}




.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    align-self: flex-start;
}

.hero-phone {
    display: flex;
    justify-content: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden; /* Ensure nothing spills outside the phone frame */
}

/* Alternative clean phone design without notch */
.phone-mockup.clean {
    border-radius: 28px; /* Slightly less rounded for a more modern look */
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a); /* Darker gradient for better video contrast */
}

.phone-mockup:hover {
    transform: scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Optional: Add a subtle top overlay to mask recording indicators */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0; /* Set to 1 if you want to use this overlay */
}

/* iPhone notch - hidden for clean video recording */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 32px;
    background: transparent; /* Made transparent to avoid interfering with recording icon */
    border-radius: 0 0 20px 20px;
    z-index: 1; /* Reduced z-index to stay behind video */
    box-shadow: none; /* Removed shadow */
    opacity: 0; /* Made completely invisible */
}

/* iPhone home indicator - kept visible as it doesn't interfere with recording */
.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3); /* Slightly more subtle */
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05); /* More subtle shadow */
}

/* Speaker grille - hidden for clean video recording */
.phone-mockup .speaker-grille {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: transparent; /* Made transparent */
    border-radius: 3px;
    z-index: 1; /* Reduced z-index */
    box-shadow: none; /* Removed shadow */
    opacity: 0; /* Made completely invisible */
}

/* Front camera - hidden for clean video recording */
.phone-mockup .front-camera {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(25px);
    width: 8px;
    height: 8px;
    background: transparent; /* Made transparent */
    border-radius: 50%;
    z-index: 1; /* Reduced z-index */
    box-shadow: none; /* Removed shadow */
    opacity: 0; /* Made completely invisible */
}

/* Proximity sensor - hidden for clean video recording */
.phone-mockup .proximity-sensor {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-35px);
    width: 4px;
    height: 4px;
    background: transparent; /* Made transparent */
    border-radius: 50%;
    opacity: 0; /* Made completely invisible */
    z-index: 15;
}

/* Power button */
.phone-mockup .power-button {
    position: absolute;
    top: 120px;
    right: -2px;
    width: 4px;
    height: 60px;
    background: linear-gradient(90deg, #333, #555);
    border-radius: 2px 0 0 2px;
    z-index: 5;
    box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.3);
}

/* Volume up button */
.phone-mockup .volume-up {
    position: absolute;
    top: 180px;
    left: -2px;
    width: 4px;
    height: 40px;
    background: linear-gradient(270deg, #333, #555);
    border-radius: 0 2px 2px 0;
    z-index: 5;
    box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.3);
}

/* Volume down button */
.phone-mockup .volume-down {
    position: absolute;
    top: 230px;
    left: -2px;
    width: 4px;
    height: 40px;
    background: linear-gradient(270deg, #333, #555);
    border-radius: 0 2px 2px 0;
    z-index: 5;
    box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.3);
}

/* Mute switch */
.phone-mockup .mute-switch {
    position: absolute;
    top: 140px;
    left: -2px;
    width: 4px;
    height: 20px;
    background: linear-gradient(270deg, #333, #555);
    border-radius: 0 2px 2px 0;
    z-index: 5;
    box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.3);
}

/* Live Activity Section */
.live-activity {
    padding: 60px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.activity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.activity-ticker {
    display: flex;
    gap: 3rem;
    overflow: hidden;
    position: relative;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: 14px;
    animation: scroll-ticker 20s linear infinite;
}

.activity-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.activity-time {
    color: var(--text-tertiary);
    font-size: 12px;
}

@keyframes scroll-ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

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

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
}


.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.stat-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--bg-white);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.coverage-map {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.map-container {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.city-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.city-marker.london { top: 25%; left: 15%; }
.city-marker.manchester { top: 30%; left: 12%; }
.city-marker.berlin { top: 20%; left: 45%; }
.city-marker.madrid { top: 65%; left: 18%; }
.city-marker.barcelona { top: 72%; left: 25%; }

.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: pulse-marker 2s infinite;
}

.marker-label {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.marker-label span {
    font-size: 0.7rem;
    color: var(--text-gray);
}

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

.coverage-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    text-align: center;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coverage-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.coverage-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: var(--shadow-colored);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.price-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-text h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: var(--text-gray);
    margin: 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.feature-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-light), 0 0 0 1px rgba(16, 185, 129, 0.1);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: center;
}

.step-item:nth-child(even) {
    grid-template-columns: 1fr 100px;
}

.step-item:nth-child(even) .step-content {
    order: -1;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.step-image {
    text-align: left;
}

.step-image img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* For Goalkeepers Section */
.for-goalkeepers {
    padding: 5rem 0;
    background: var(--bg-section);
}

.goalkeeper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.goalkeeper-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.goalkeeper-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
}

.goalkeeper-stats .stat-item {
    text-align: center;
}

.goalkeeper-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.goalkeeper-cta {
    text-align: center;
    margin-top: 3rem;
}

.goalkeeper-cta .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

@media (max-width: 768px) {
    .for-goalkeepers {
        padding: 4rem 0;
    }
    
    .goalkeeper-container {
        padding: 0 1.5rem;
    }
    
    .goalkeeper-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        text-align: center;
        background: var(--bg-light);
        border: 1px solid var(--border-light);
        border-radius: var(--border-radius);
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
    .benefit-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 1rem;
    }
    
    .goalkeeper-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
        padding: 2rem 1.5rem;
        background: var(--bg-darker);
        border-radius: var(--border-radius);
    }
    
    .goalkeeper-stats .stat-item {
        text-align: center;
        padding: 1rem;
    }
    
    .goalkeeper-stats .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--accent-color);
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .goalkeeper-stats .stat-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: var(--bg-light);
}

.success-stories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.story-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

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

.story-card.featured {
    grid-row: span 2;
}

.story-video {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-card.featured .story-video {
    height: 300px;
}

.story-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .story-video img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.story-content {
    padding: 2rem;
}

.story-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.story-stats .label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.story-author .name {
    font-weight: 600;
    display: block;
}

.story-author .role {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Keeper Spotlight Section */
.keeper-spotlight {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.keeper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.keeper-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.keeper-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

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

.keeper-avatar {
    position: relative;
    margin-bottom: 1.5rem;
}

.keeper-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    display: block;
}

.availability-badge {
    position: absolute;
    bottom: 0;
    right: calc(50% - 60px);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.availability-badge.available {
    background: var(--primary-green);
    color: white;
}

.availability-badge.busy {
    background: var(--accent-yellow);
    color: var(--bg-dark);
}

.keeper-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.keeper-location {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.keeper-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.keeper-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.keeper-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.keeper-badges .badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-contact-keeper {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-contact-keeper:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.browse-all-keepers {
    text-align: center;
}

.btn-browse-all {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-browse-all:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.testimonial-card.team {
    border-left: 4px solid var(--trust-blue);
}

.testimonial-card.keeper {
    border-left: 4px solid var(--primary-green);
}

.testimonial-type {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-light);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-muted);
    margin-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-white);
}

.author-title {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.author-stats {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

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

/* Beta Signup Section */
.beta-signup {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
}

.signup-background {
    display: none;
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.signup-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.signup-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.beta-benefits {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    margin-bottom: 48px;
    text-align: left;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}


.benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    color: var(--text-secondary);
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary-color);
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.form-submit {
    margin-top: 1rem;
}

.signup-success {
    text-align: center;
    padding: 48px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--accent-color);
    box-shadow: var(--shadow-card);
}

.signup-success h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: var(--accent-color);
}

.signup-success p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateY(-3px) scale(1.1);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-light);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Clean Card Effects */
.feature-card:hover,
.testimonial-card:hover,
.stat-item:hover,
.pricing-card:hover,
.keeper-card:hover,
.story-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-medium);
}

.coverage-map,
.beta-benefits,
.pricing-guarantee {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
}

/* Sticky Mobile CTA */
.mobile-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.mobile-cta-sticky .btn-primary-urgent {
    width: 100%;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 3.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .keeper-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .step-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step-item:nth-child(even) .step-content {
        order: 0;
    }
    
    .step-number {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
        min-height: 60px;
    }
    
    /* Ensure logo doesn't get squeezed */
    .nav-logo {
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    /* Position right elements properly */
    .language-selector {
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border-light);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    
    /* Content push animation */
    body {
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    body.menu-open {
        transform: translateX(-280px);
        -webkit-transform: translateX(-280px);
    }
    
    /* iOS Safari specific fixes */
    @supports (-webkit-touch-callout: none) {
        .nav-menu {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        
        .nav-menu.active {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 1rem 0;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
        white-space: normal;
        display: block;
        width: 100%;
        color: var(--text-secondary);
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.2s ease;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-cta {
        margin-top: 1rem;
        padding: 12px 24px;
        font-size: 16px;
        text-align: center;
        width: 100%;
        justify-content: center;
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Hamburger animation styles */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .language-selector {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        order: -1; /* Show language selector first in mobile menu */
    }
    
    .language-btn {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .language-flag {
        font-size: 14px;
    }
    
    .language-dropdown {
        min-width: 120px;
        right: -10px;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding-left: 1rem;
        transform: translateX(5px);
    }
    
    .nav-cta {
        background: var(--primary-color) !important;
        color: white !important;
        border-radius: 8px !important;
        text-align: center !important;
        margin-top: 2rem;
        border: none !important;
        font-weight: 600;
    }
    
    .nav-cta:hover,
    .nav-cta:active {
        background: var(--accent-color) !important;
        transform: translateX(0) !important;
        padding-left: 0 !important;
    }
    
    /* Ensure nav menu is hidden by default on mobile */
    body .nav-menu:not(.active) {
        display: none !important;
    }
    
    /* Mobile menu overlay for right-slide menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 280px);
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Content push and scroll prevention when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        transform: translateX(-280px);
        -webkit-transform: translateX(-280px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media (max-width: 768px) {
    .mobile-cta-sticky {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 4rem; /* Increased top padding to clear header */
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1.5rem;
        min-height: auto;
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        justify-self: center;
    }
    
    .urgency-pill {
        padding: 12px 20px;
        gap: 6px;
        margin-bottom: 24px;
        margin-top: 2rem; /* Add top margin to ensure separation from header */
        width: 100%;
        max-width: 350px; /* Increased for Spanish text */
        min-width: auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        overflow: visible; /* Allow text to show */
        position: relative;
        z-index: 10; /* Ensure it appears above other elements */
    }
    
    #betaCounter {
        min-width: auto;
        width: 100%;
        max-width: 350px; /* Increased for Spanish text */
    }
    
    .urgency-text {
        font-size: 11px;
        text-align: center;
        white-space: normal; /* Allow text wrapping */
        overflow: visible; /* Show all text */
        text-overflow: visible; /* Don't truncate */
        max-width: 100%;
        line-height: 1.3;
    }
    
    .user-count-display {
        font-size: 13px;
        text-align: center;
        white-space: normal; /* Allow text wrapping */
        overflow: visible; /* Show all text */
        text-overflow: visible; /* Don't truncate */
        max-width: 100%;
        line-height: 1.4;
    }
    
    #userCount {
        font-size: 15px;
    }
    
    .urgency-indicator {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }
    
    .activity-ticker {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .activity-item {
        animation: none;
        position: static;
        transform: none;
    }
    
    .stats {
        padding: 3rem 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-marker {
        position: static;
        margin: 1rem 0;
    }
    
    .map-container {
        height: auto;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .keeper-profiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features,
    .how-it-works,
    .testimonials,
    .faq,
    .beta-signup,
    .social-proof,
    .pricing,
    .success-stories,
    .keeper-spotlight {
        padding: 4rem 0;
    }
    
    .features-container,
    .how-container,
    .testimonials-container,
    .faq-container,
    .signup-container,
    .social-proof-container,
    .pricing-container,
    .success-stories-container,
    .keeper-container {
        padding: 0 1.5rem;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card,
    .keeper-card,
    .story-card {
        padding: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        width: 100%;
        padding: 32px 0 16px;
    }
    
    .footer-container {
        padding: 0 1.5rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .signup-content h2 {
        font-size: 2.25rem;
    }
    
    .beta-benefits {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .story-stats {
        gap: 1rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Adjust for smaller screens */
    .nav-menu {
        width: 250px;
    }
    
    body.menu-open {
        transform: translateX(-250px);
        -webkit-transform: translateX(-250px);
    }
    
    .mobile-menu-overlay {
        width: calc(100% - 250px) !important;
    }
    
    .hero {
        padding: 7rem 0 3rem; /* Even more top padding for small screens */
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .urgency-pill {
        padding: 8px 12px;
        gap: 4px;
        max-width: 95vw; /* Increased to allow more text */
        margin: 0 auto 20px;
        min-height: 60px; /* Added min-height for wrapped text */
    }
    
    .urgency-text {
        font-size: 10px;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }
    
    .user-count-display {
        font-size: 12px;
        line-height: 1.3; /* Better line height for wrapped text */
    }
    
    #userCount {
        font-size: 14px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 0.5rem 0;
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    .nav-cta {
        font-size: 15px;
        padding: 10px 20px;
        word-break: keep-all;
    }
    
    .for-goalkeepers {
        padding: 3rem 0;
    }
    
    .goalkeeper-container {
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.25rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .goalkeeper-stats {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .goalkeeper-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .goalkeeper-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .features-container,
    .how-container,
    .testimonials-container,
    .faq-container,
    .signup-container {
        padding: 0 1rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 3.5rem;
    }
    
    .step-content h3 {
        font-size: 1.375rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .signup-content h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Accessibility & Focus States */
.btn-primary:focus,
.nav-cta:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.social-links a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-gray: #E2E8F0;
        --text-muted: #F1F5F9;
        --border-opacity: 0.3;
    }
    
    .feature-card,
    .testimonial-cards,
    .stat-item,
    .faq-item {
        border-width: 2px;
    }
}

/* Layout Protection - Ensure layouts persist after translation updates */
.nav-menu {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
}

.stats-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

.footer-links {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

.coverage-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
}

.beta-benefits {
    display: flex !important;
    flex-direction: column !important;
}

.benefit-item {
    display: flex !important;
    align-items: center !important;
}

/* Mobile overrides */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr !important;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr !important;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .footer {
        width: 100%;
        padding: 24px 0 12px;
    }
    
    .footer-container {
        padding: 0 1rem;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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