/* Map Landing Page - Cute 2D Style */

:root {
    --primary: #ff6b9d;
    --secondary: #ffa94d;
    --accent: #ffd93d;
    --success: #95e1d3;
    --bg-darker: #0a0a0f;
    --bg-dark: #0f0f23;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: rgba(148, 163, 184, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Neural Background */
#neuralBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none; /* CRITICAL: Allow clicks to pass through */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-image {
    width: 40px;
    height: 40px;
}

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

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

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

.btn-create {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    color: white !important;
    font-weight: 600;
}

/* Hero Compact */
.hero-compact {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-content-compact {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title-compact {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle-compact {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats-compact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.stat-number-compact {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.pulse-live {
    color: #22c55e;
    animation: pulse 2s infinite;
}

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

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.6);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-primary-hero:hover .btn-arrow {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    position: relative;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.main-map {
    width: 100%;
    height: 700px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.map-legend {
    position: absolute;
    top: 6rem;
    right: 3rem;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    min-width: 200px;
}

.legend-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

/* How It Works */
.how-it-works-simple {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-simple h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

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

.step-simple {
    padding: 2rem;
    background: rgba(255, 107, 157, 0.05);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 16px;
    transition: transform 0.3s;
}

.step-simple:hover {
    transform: translateY(-5px);
}

.step-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-simple h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Pricing */
.pricing-simple {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-simple h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pricing-single {
    display: flex;
    justify-content: center;
}

.price-card-single {
    max-width: 400px;
    width: 100%;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

.price-badge {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount-large {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d, #ffa94d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-subtitle-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary-pricing {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b9d, #ffa94d);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-primary-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.price-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.price-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features-list div {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.price-zone {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price-cities {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA */
.cta-simple {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 169, 77, 0.1));
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.cta-simple h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.6);
}

/* Footer */
.footer-simple {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content-simple {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

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

.footer-links-simple a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom-simple {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-compact {
        font-size: 2.5rem;
    }
    
    .hero-stats-compact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-map {
        height: 500px;
    }
    
    .map-legend {
        position: static;
        margin-top: 1rem;
    }
    
    .footer-content-simple {
        flex-direction: column;
        gap: 2rem;
    }
}
