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

:root {
    --neon-cyan: #00F3FF;
    --neon-purple: #BD00FF;
    --neon-pink: #FF006E;
    --neon-green: #00FF8C;
    --neon-gold: #FFD700;
    --neon-red: #FF3333;
    --dark-bg: #0a0a0f;
    --dark-card: #12121a;
    --darker-card: #0d0d14;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Oxanium', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -3;
    transform: translateX(-50%) translateY(-50%);
    filter: brightness(0.3) saturate(1.3) hue-rotate(10deg);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85), rgba(15, 10, 30, 0.9));
    z-index: -2;
}

.cyberpunk-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-cyan);
    opacity: 0.12;
    top: -150px;
    right: -150px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    opacity: 0.08;
    bottom: 20%;
    left: -100px;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    opacity: 0.06;
    top: 50%;
    right: 10%;
    animation-delay: -2s;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
}

.logo-roda {
    color: var(--text-primary);
}

.logo-vo {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

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

#lang-switch {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

#lang-switch:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

#lang-switch:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.3);
}

.btn-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.btn-link:hover {
    color: var(--neon-cyan);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-glow {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--dark-bg);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.5), 0 0 60px rgba(189, 0, 255, 0.3);
}

.btn-glow:hover::before {
    left: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 5% 80px;
    gap: 3rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 243, 255, 0); }
}

.hero-badge i {
    color: var(--neon-cyan);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.neon-text-big {
    font-size: 4.5rem;
    display: block;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-cyan);
}

.flicker {
    animation: flicker 4s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.7; }
    94% { opacity: 1; }
    96% { opacity: 0.8; }
    97% { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.badges-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
}

.badge i {
    color: var(--neon-cyan);
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.store-btn i {
    font-size: 2rem;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-btn-big {
    font-size: 1.1rem;
    font-weight: 700;
}

.store-btn.apple {
    background: var(--text-primary);
    color: var(--dark-bg);
}

.store-btn.apple:hover {
    background: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.store-btn.google {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.store-btn.google:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    transform: translateY(-4px);
}

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

.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a28, #0d0d15);
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 60px rgba(0, 243, 255, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 243, 255, 0.15);
}

.header-float {
    animation: float 5s ease-in-out infinite;
}

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

.widget-float {
    position: absolute;
    background: rgba(18, 18, 26, 0.95);
    padding: 0.9rem 1.4rem;
    border-radius: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(0, 243, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    animation: widgetPulse 3s infinite;
}

@keyframes widgetPulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
        transform: scale(1.02);
    }
}

.widget-parking {
    top: 100px;
    left: -100px;
    animation-delay: 0s;
}

.widget-parking i {
    color: #4CAF50;
    text-shadow: 0 0 10px #4CAF50;
}

.widget-radar {
    top: 220px;
    right: -120px;
    animation-delay: -1s;
}

.widget-radar i {
    color: #FF5722;
    text-shadow: 0 0 10px #FF5722;
}

.widget-fuel {
    bottom: 180px;
    left: -90px;
    animation-delay: -2s;
}

.widget-fuel i {
    color: #FFC107;
    text-shadow: 0 0 10px #FFC107;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a2a3a, #0f1a25);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.screen-glow {
    box-shadow: inset 0 0 60px rgba(0, 243, 255, 0.1);
}

.app-simulation {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(189, 0, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 243, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 243, 255, 0.03) 25%, transparent 25%),
        linear-gradient(180deg, #0d1520, #1a2535);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px, 100% 100%;
}

.map-placeholder.animated {
    animation: mapPulse 4s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.nav-ui-top {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem 1.8rem;
    border-radius: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.nav-ui-top i {
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.speed-widget {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.speed-widget.large {
    padding: 1.5rem 3rem;
    position: relative;
}

.speed-limit {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FF3333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.speed-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.speed-unit {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: -5px;
}

.nav-bottom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn.active {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 5rem 5%;
    background: rgba(0, 243, 255, 0.02);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    flex-wrap: wrap;
    position: relative;
}

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

.counter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    display: block;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: block;
}

.stat-free-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(0, 255, 140, 0.5);
}

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

.section-tag {
    display: inline-block;
    background: rgba(189, 0, 255, 0.1);
    border: 1px solid rgba(189, 0, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.features-section {
    padding: 8rem 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 243, 255, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.card-icon.purple {
    background: rgba(189, 0, 255, 0.1);
    color: var(--neon-purple);
}

.card:hover .card-icon.purple {
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.3);
}

.card-icon.green {
    background: rgba(0, 255, 140, 0.1);
    color: var(--neon-green);
}

.card:hover .card-icon.green {
    box-shadow: 0 0 30px rgba(0, 255, 140, 0.3);
}

.card-icon.pink {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-pink);
}

.card:hover .card-icon.pink {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.card-icon.red {
    background: rgba(255, 51, 51, 0.1);
    color: var(--neon-red);
}

.card:hover .card-icon.red {
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.3);
}

.card-icon.gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--neon-gold);
}

.card:hover .card-icon.gold {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

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

.vehicles-section {
    padding: 8rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.vehicles-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--dark-card);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    width: 320px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.vehicle-card.truck {
    border-color: rgba(255, 152, 0, 0.3);
}

.vehicle-card.truck .vehicle-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.vehicle-card.truck:hover {
    border-color: #FF9800;
    box-shadow: 0 0 40px rgba(255, 152, 0, 0.2);
}

.vehicle-card.taxi {
    border-color: rgba(255, 235, 59, 0.3);
}

.vehicle-card.taxi .vehicle-icon {
    background: rgba(255, 235, 59, 0.1);
    color: #FFEB3B;
}

.vehicle-card.taxi:hover {
    border-color: #FFEB3B;
    box-shadow: 0 0 40px rgba(255, 235, 59, 0.2);
}

.vehicle-card.moto {
    border-color: rgba(156, 39, 176, 0.3);
}

.vehicle-card.moto .vehicle-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.vehicle-card.moto:hover {
    border-color: #9C27B0;
    box-shadow: 0 0 40px rgba(156, 39, 176, 0.2);
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-card:hover .vehicle-icon {
    transform: scale(1.15);
}

.vehicle-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.vehicle-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.vehicle-features {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.vehicle-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vehicle-features i {
    color: var(--neon-green);
    font-size: 0.8rem;
}

.app-preview-section {
    padding: 8rem 5%;
}

.app-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.app-feature-list {
    flex: 1;
    max-width: 300px;
}

.app-feature-list.right {
    text-align: right;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.app-feature-list.right .app-feature {
    transform: translateX(30px);
}

.app-feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.app-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-card);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.app-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.app-feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.app-mockup-center {
    position: relative;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.phone-mockup-large {
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #1a1a28, #0d0d15);
    border-radius: 50px;
    padding: 14px;
    position: relative;
    box-shadow: 
        0 0 80px rgba(0, 243, 255, 0.3),
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 243, 255, 0.2);
    z-index: 1;
}

.cta-section {
    padding: 10rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

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

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.cta-section .store-buttons {
    justify-content: center;
}

.footer {
    background: var(--darker-card);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

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

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .app-preview-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .app-feature-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .app-feature-list.right {
        text-align: left;
    }
    
    .app-feature {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .neon-text-big {
        font-size: 3.5rem;
    }
    
    .badges-container {
        justify-content: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
    
    .phone-mockup {
        width: 260px;
        height: 540px;
    }
    
    .widget-float {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stats-section {
        gap: 3rem;
    }
    
    .counter, .stat-free-text {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .navbar {
        padding: 0.8rem 4%;
    }
    
    .nav-links-container {
        gap: 1rem;
    }
    
    .btn-link {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .neon-text-big {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card {
        width: 100%;
        max-width: 320px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-mockup-large {
        width: 280px;
        height: 580px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    #bg-video {
        display: none;
    }
    
    .video-overlay {
        background: linear-gradient(180deg, #0a0a0f, #0f0a1a);
    }
}
