/* ============================================
   DRIFT - BOLD CINEMATIC DESIGN
   Dark theme with neon purple accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Neon Colors */
    --neon-purple: #A855F7;
    --neon-pink: #EC4899;
    --neon-blue: #3B82F6;
    --neon-cyan: #06B6D4;
    --electric-purple: #8B5CF6;

    /* Dark Theme */
    --dark-900: #030014;
    --dark-800: #0A0A1B;
    --dark-700: #12122A;
    --dark-600: #1A1A3E;
    --dark-500: #2D2D5A;

    /* Light accents */
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-400: #94A3B8;

    /* Glows */
    --glow-purple: 0 0 60px rgba(168, 85, 247, 0.5);
    --glow-pink: 0 0 60px rgba(236, 72, 153, 0.5);
    --glow-strong: 0 0 100px rgba(168, 85, 247, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-900);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glowing cursor */
.glow-cursor {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: opacity 0.3s;
}

/* ============================================
   NAVIGATION - Glassmorphism
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(3, 0, 20, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--glow-purple);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO - Cinematic Impact
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Animated gradient background */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: gradientMove 15s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(2deg); }
    66% { transform: translate(-2%, -1%) rotate(-1deg); }
}

/* Grid pattern overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title .location {
    display: block;
    font-size: clamp(52px, 9vw, 90px);
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(168, 85, 247, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.store-badge {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-badge img {
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s;
}

.store-badge:hover img {
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: scale(1.05);
}

.store-badge.coming-soon {
    opacity: 0.6;
}

.store-badge .badge-label {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-pink);
}

.store-badge.large img {
    height: 70px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 0 60px rgba(168, 85, 247, 0.4),
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(168, 85, 247, 0.3);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a14;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.phone-home-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   TRUST BAR - Glowing
   ============================================ */
.trust-bar {
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.trust-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.trust-text {
    color: var(--gray-400);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.trust-items {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    fill: var(--neon-purple);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

/* ============================================
   SECTION TITLES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title span {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ============================================
   HOW IT WORKS - Bold Cards
   ============================================ */
.how-it-works {
    padding: 120px 40px;
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-800) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-purple);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.step-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--neon-purple);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============================================
   FEATURES - Explosive Grid
   ============================================ */
.features {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(18, 18, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--glow-purple);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============================================
   POPULAR ROUTES
   ============================================ */
.popular-routes {
    padding: 120px 40px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.route-card {
    background: var(--dark-700);
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.route-card:hover {
    border-color: var(--neon-purple);
    background: var(--dark-600);
    transform: translateY(-5px);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.route-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.route-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.route-card p {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============================================
   DOWNLOAD CTA - Epic
   ============================================ */
.download-cta {
    padding: 150px 40px;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
    filter: blur(80px);
}

.download-cta .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.download-content {
    flex: 1;
}

.download-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.download-content h2 span {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-content p {
    font-size: 20px;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-image {
    flex: 0 0 350px;
}

.download-image img {
    max-width: 100%;
    filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.5));
}

/* ============================================
   BECOME A DRIVER
   ============================================ */
.become-driver {
    padding: 150px 40px;
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
}

.become-driver .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.driver-content {
    flex: 1;
}

.driver-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.driver-subtitle {
    font-size: 22px;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.driver-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.driver-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.driver-benefits svg {
    width: 28px;
    height: 28px;
    fill: var(--neon-purple);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
    flex-shrink: 0;
}

.driver-image {
    flex: 0 0 450px;
}

.driver-image img {
    max-width: 100%;
    border-radius: 30px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    color: var(--white);
    box-shadow: var(--glow-purple);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-strong);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 120px 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--dark-700);
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--neon-purple);
    transition: all 0.3s;
}

.faq-item:hover {
    background: var(--dark-600);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.1);
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.faq-item p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-800);
    padding: 100px 40px 50px;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark-600);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-links h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

.seo-text {
    margin-top: 15px;
    font-size: 12px !important;
    color: var(--dark-500) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 50px;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 60px auto 0;
    }

    .download-cta .container,
    .become-driver .container {
        flex-direction: column;
        text-align: center;
    }

    .download-content, .driver-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .download-content p, .driver-benefits {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(3, 0, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 24px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title .location {
        font-size: 42px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .store-badge img {
        height: 55px;
    }

    .stat-number {
        font-size: 36px;
    }

    .download-image, .driver-image {
        flex: 0 0 100%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }
    50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.8), 0 0 60px rgba(236, 72, 153, 0.4); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}
