:root {
    --primary: #FF6B00;
    --primary-light: #FF8C00;
    --primary-glow: rgba(255, 107, 0, 0.4);
    --bg-dark: #050507;
    --bg-surface: #0a0a0e;
    --text-main: #FFFFFF;
    --text-muted: #8F9098;
    --glass-bg: rgba(25, 25, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Effects */
.bg-orbs {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, #15151f 0%, var(--bg-dark) 60%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 { width: 500px; height: 500px; background: var(--primary); top: -200px; left: -100px; }
.orb-2 { width: 600px; height: 600px; background: #9D00FF; bottom: -200px; right: -100px; animation-delay: -5s; opacity: 0.2;}
.orb-3 { width: 400px; height: 400px; background: #FF0055; top: 40%; left: 50%; animation-delay: -10s; opacity: 0.15;}

.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 0; width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}
.accent { color: var(--primary-light); }

.glass-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-highlight);
    transform: translateY(-2px);
}

/* Typography Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), #FF3300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.glow-badge {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

h1 {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* CTA Group */
.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 30px var(--primary-glow), inset 0 2px 0 rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px var(--primary-glow), inset 0 2px 0 rgba(255,255,255,0.3);
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-title { font-weight: 800; font-size: 18px; }
.btn-subtitle { font-size: 12px; opacity: 0.9; font-weight: 500; }

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.avatars { display: flex; align-items: center; }
.avatars img {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #2a2a35;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 10px; font-weight: 800; color: #fff;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    background: #111116;
    border-radius: 45px;
    border: 8px solid #22222a;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
    animation: float-phone 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #0f1016 0%, #050507 100%);
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.mock-radar-ring {
    position: absolute;
    width: 100px; height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: radar 3s infinite linear;
}
.mock-radar-ring.delay { animation-delay: 1.5s; }

.mock-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    width: 80%;
    backdrop-filter: blur(10px);
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    animation: incoming-ride 4s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-price { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 5px; }
.mock-dest { font-size: 12px; color: #aaa; margin-bottom: 15px; }
.mock-btn { height: 40px; background: var(--primary); border-radius: 10px; width: 100%; }

.float-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fb-1 { top: 20%; right: -20px; animation: float 5s infinite; }
.fb-2 { bottom: 25%; left: -40px; animation: float 7s infinite reverse; }

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 30s linear infinite;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 16px;
}

.marquee-content .dot { color: var(--primary); font-size: 24px; line-height: 0; }

/* Bento Features */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 { font-size: 48px; font-weight: 900; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--glass-highlight);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.bento-card.span-2 { grid-column: span 2; }

.card-icon {
    width: 60px; height: 60px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
}

.bento-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 800; }
.bento-card p { color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active { opacity: 1; pointer-events: all; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #121216;
    z-index: 2001;
    transform: scale(0.95) translateY(20px);
    transition: var(--transition-smooth);
    padding: 0;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: -20px; right: -20px;
    width: 44px; height: 44px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.close-btn:hover { background: var(--primary); border-color: var(--primary); }

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
}

.video-wrapper video, .video-wrapper iframe { width: 100%; height: 100%; object-fit: contain; border: none; }

.modal-info { padding: 30px; }
.modal-info h3 { color: var(--primary-light); font-size: 24px; margin-bottom: 8px; }
.modal-info p { color: var(--text-muted); }

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo { font-weight: 900; font-size: 20px; margin-bottom: 10px; }
.copyright { color: var(--text-muted); font-size: 14px; }

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

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

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

@keyframes radar {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; border-color: transparent; }
}

@keyframes incoming-ride {
    0%, 20% { transform: translateY(40px); opacity: 0; }
    30%, 70% { transform: translateY(0); opacity: 1; }
    80%, 100% { transform: translateY(-40px); opacity: 0; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }

/* Pricing Section */
.pricing {
    padding: 120px 0;
    position: relative;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pricing-card {
    max-width: 400px;
    width: 100%;
    padding: 40px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2);
}

.premium-card {
    background: linear-gradient(145deg, rgba(25,25,30,0.8), rgba(15,15,20,0.9));
    border: 1px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), #FF3300);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.plan-header h3 {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price {
    font-size: 64px;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.currency {
    font-size: 32px;
    color: var(--primary);
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-main);
}

.plan-features li svg {
    color: var(--primary);
}

.full-width {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    min-width: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1001;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-light);
    padding-left: 25px;
}

.dropdown-content.show {
    display: block;
    animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar for dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}
.dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

@media (pointer: fine) {
    body, a, button {
        cursor: none;
    }
}
/* Responsive */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { align-items: center; }
    h1 { font-size: 48px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.span-2 { grid-column: span 1; }
    .cta-group { justify-content: center; }
    .float-badge { display: none; }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Disable expensive SVG noise filter */
    .noise-overlay {
        display: none;
    }
    
    /* Reduce or remove heavy background blurs */
    .orb {
        filter: blur(40px); /* Lower blur radius */
        animation: none; /* Disable float animation on orbs to save CPU */
    }
    
    /* Disable expensive backdrop-filters on cards */
    .glass-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(25, 25, 30, 0.95); /* Solidify background to compensate */
    }
    
    header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(5, 5, 7, 0.98);
    }
    
    .dropdown-content {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgb(15, 15, 20);
    }

    /* Simplify phone animation */
    .phone-mockup {
        animation: none;
        transform: none;
    }

    /* Hide custom cursor */
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
}
