        :root {
            --base-bg: #000000; 
            --cyan: #00E5FF;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --app-bg: #000000;
            --app-card: #121212;
            --app-text: #ffffff;
            --app-text-muted: #888888;
        }

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

        body {
            background-color: var(--base-bg);
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
            min-height: 100dvh;
            overflow-x: hidden;
            overscroll-behavior: none;
        }

        .scroll-track {
            height: 180dvh; 
            width: 100%;
            position: relative;
            pointer-events: none; /* Absolutely prevents any invisible elements from intercepting clicks */
        }

        .hero {
            position: relative;
            height: 100dvh;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px;
        }

        .hero-logo {
            width: 200px;
            margin-bottom: 24px;
            z-index: 10;
            position: absolute;
            top: 10%;
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            text-align: center;
            z-index: 10;
            background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: absolute;
            top: 20%;
        }

        .scene {
            perspective: 1200px;
            height: 75vh;
            max-height: 720px;
            aspect-ratio: 340 / 720;
            z-index: 5;
            margin-top: 10vh;
        }

        .phone {
            width: 100%;
            height: 100%;
            border-radius: 48px;
            background: #000;
            border: 4px solid #333;
            padding: 8px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255,255,255,0.2);
            transform-style: preserve-3d;
            transform: rotateX(25deg) rotateY(-20deg) rotateZ(5deg);
        }

        .screen {
            width: 100%;
            height: 100%;
            border-radius: 40px;
            background-color: var(--app-bg);
            overflow: hidden;
            position: relative;
            color: var(--app-text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        /* Overlay removed for cleaner design */

        .dynamic-island {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 35px;
            background: #000;
            border-radius: 20px;
            z-index: 30; /* Above the overlay */
        }

        .app-top-bar {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            padding: 0 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        .app-selector {
            background: var(--app-card);
            border-radius: 24px;
            padding: 8px 12px 8px 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .brand-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .app-search {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--app-card);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .app-content-scroll {
            position: absolute;
            top: 120px;
            left: 0;
            width: 100%;
            padding: 0 16px 120px 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .app-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--app-text-muted);
            margin-top: 8px;
        }

        .view-all { font-size: 9px; }

        .garage-card {
            background: var(--app-card);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            border: 1px solid rgba(255,255,255,0.03);
        }

        .progress-ring {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .progress-ring::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            padding: 3px;
            background: conic-gradient(var(--cyan) 100%, transparent 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .progress-ring .brand-logo {
            font-size: 14px;
            font-weight: bold;
        }

        .garage-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .garage-title {
            font-size: 14px;
            font-weight: 600;
        }

        .garage-status {
            font-size: 11px;
            color: var(--app-text-muted);
        }

        .featured-card {
            border-radius: 16px;
            overflow: hidden;
            background: var(--app-card);
            position: relative;
        }

        .featured-img {
            width: 100%;
            height: 140px;
            background-image: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
        }

        .featured-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #000 0%, transparent 100%);
        }

        .featured-info {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 16px;
            width: 100%;
            z-index: 2;
        }

        .featured-title {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .featured-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--cyan);
        }

        .radar-card {
            background: var(--app-card);
            border-radius: 16px;
            height: 200px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.03);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .radar-grid {
            position: absolute;
            inset: 0;
            background-size: 20px 20px;
            background-image: 
                linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
        }

        .radar-rings {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .radar-rings .ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .radar-rings .r1 { width: 40px; height: 40px; }
        .radar-rings .r2 { width: 80px; height: 80px; }
        .radar-rings .r3 { width: 120px; height: 120px; }
        
        .radar-dot {
            width: 10px;
            height: 10px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--cyan);
        }

        .fuel-marker {
            position: absolute;
            background: #000;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 4px 8px;
            display: flex;
            flex-direction: column;
            font-size: 9px;
            gap: 2px;
            z-index: 2;
        }

        .fuel-marker .price { font-weight: 700; font-size: 10px; }
        .fuel-marker .station { color: var(--app-text-muted); }

        .m1 { top: 20px; left: 20px; }
        .m2 { top: 40px; right: 20px; border-color: rgba(57, 255, 20, 0.5); }
        .m3 { bottom: 30px; left: 30px; }

        .location-chip {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: #000;
            border-radius: 12px;
            padding: 6px 10px;
            font-size: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .app-bottom-nav {
            position: absolute;
            bottom: 24px;
            left: 16px;
            right: 16px;
            display: flex;
            gap: 12px;
            align-items: center;
            z-index: 20;
        }

        .nav-ds-btn {
            width: 50px;
            height: 50px;
            background: var(--app-card);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            font-style: italic;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .nav-pill {
            flex: 1;
            height: 60px;
            background: var(--app-card);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0 8px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 9px;
            color: var(--app-text-muted);
            font-weight: 500;
        }

        .nav-item.active { color: var(--cyan); }

        .nav-icon {
            width: 18px;
            height: 18px;
            background: currentColor;
            -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4" fill="white"/></svg>') center/contain no-repeat;
        }

        /* Static CTA Section */
        .cta-section {
            width: 100%;
            padding: 40px 20px 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--base-bg);
            position: relative;
            z-index: 10;
        }

        .cta-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: max-content;
        }

        .cta-button {
            pointer-events: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 229, 255, 0.1);
            color: #00e5ff;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 16px 36px;
            border-radius: 100px;
            font-size: 14px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 229, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-button:hover {
            background: rgba(0, 229, 255, 0.2);
            border-color: rgba(0, 229, 255, 0.5);
            box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Desktop QR Code Container */
        .desktop-qr-container {
            display: none;
            flex-direction: column;
            align-items: center;
            pointer-events: auto;
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 24px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .qr-image-wrapper {
            background: #ffffff;
            padding: 8px;
            border-radius: 16px;
            margin-top: 12px;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
        }

        /* Install Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 20000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .install-modal {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            width: 90%;
            max-width: 340px;
            padding: 32px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transform: scale(0.96) translateY(16px);
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

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

        .modal-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            height: 50%;
            background: rgba(0, 229, 255, 0.03);
            filter: blur(40px);
            pointer-events: none;
        }

        .modal-icon {
            position: relative;
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #00e5ff;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
            font-family: 'Space Grotesk', sans-serif;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .modal-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 32px;
            padding: 0 8px;
            font-weight: 500;
        }

        .desktop-qr-container {
            width: 100%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
            margin-bottom: 32px;
        }

        .qr-image-wrapper img {
            display: block;
            border-radius: 8px;
            opacity: 0.9;
        }

        .modal-btn {
            width: 100%;
            background: rgba(0, 229, 255, 0.1);
            color: #00E5FF;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            padding: 16px 0;
            border-radius: 12px;
            border: 1px solid rgba(0, 229, 255, 0.3);
            font-size: 12px;
            font-family: 'Space Grotesk', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }

        .modal-btn:hover {
            background: rgba(0, 229, 255, 0.2);
            border-color: rgba(0, 229, 255, 0.5);
        }

        .modal-btn:active {
            transform: scale(0.97);
        }

/* Premium Footer Styles */
.site-footer {
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 40px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-link {
    color: var(--app-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    opacity: 0.9;
}

.footer-desc {
    color: var(--app-text-muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--app-text-muted);
    font-size: 12px;
}

/* Secondary Pages Specific Styles */
.page-container {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 24px;
}

.page-header {
    margin-bottom: 48px;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.content-section {
    background: var(--app-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #e0e0e0;
    font-weight: 600;
}

.content-section p, .content-section li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-header img {
    height: 24px;
}

.back-link {
    color: var(--app-text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #fff;
}
