        :root {
            --primary: #007aff;
            --primary-dark: #0056b3;
            --text-light: #ffffff;
            --text-dark: #1d1d1f;
            --bg-light: #f5f5f7;
            --bg-dark: #1c1c1e;
            --card-light: #ffffff;
            --card-dark: #2c2c2e;
            --text-secondary-light: #666666;
            --text-secondary-dark: #a1a1a6;
            --overlay-dark: rgba(0, 0, 0, 0.55);
            --overlay-light: rgba(0, 0, 0, 0.3);
        }

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

        html, body {
            height: 100%;
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: linear-gradient(135deg, var(--overlay-dark), var(--overlay-light)),
                        url('/car-bg.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            color: var(--text-light);
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll;
            }
        }

        .hero-content {
            text-align: left;
            padding: 40px 48px;
            max-width: 800px;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 32px 24px;
            }
        }

        /* Logo */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            margin-bottom: 48px;
        }

        .logo-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-text {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* Headlines - Condensed bold style */
        .headline {
            font-size: clamp(2.5rem, 7vw, 4rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 20px;
            letter-spacing: -1px;
            font-stretch: condensed;
        }

        .subheadline {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 400;
            opacity: 0.85;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 520px;
        }

        /* App Store Buttons */
        .store-buttons {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 0;
            flex-wrap: wrap;
        }

        .store-btn-wrapper {
            position: relative;
        }

        .store-btn {
            display: inline-block;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .store-btn:hover {
            transform: scale(1.05);
        }

        .store-btn:active {
            transform: scale(0.98);
        }

        .store-btn img {
            height: 50px;
            width: auto;
        }

        .store-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .coming-soon {
            position: absolute;
            bottom: -16px;
            left: 0;
            font-size: 10px;
            opacity: 0.6;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Features */
        .features {
            display: flex;
            justify-content: flex-start;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            opacity: 0.85;
        }

        .feature-icon {
            width: 22px;
            height: 22px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        /* Footer / Language Switcher */
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 48px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 20px 24px;
            }
        }

        .lang-btn {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .lang-btn:hover {
            background: rgba(255,255,255,0.15);
            color: #fff;
        }

        .lang-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0.5;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-6px); }
            60% { transform: translateX(-50%) translateY(-3px); }
        }

        /* Info Section - Light Mode */
        .info-section {
            padding: 80px 48px;
            background: var(--bg-light);
            text-align: center;
        }

        @media (max-width: 768px) {
            .info-section {
                padding: 60px 24px;
            }
        }

        .info-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-secondary-light);
            line-height: 1.7;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .card {
            background: var(--card-light);
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), #5ac8fa);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px auto;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .card p {
            font-size: 0.9rem;
            color: var(--text-secondary-light);
            line-height: 1.6;
        }

        /* Bottom Footer */
        .bottom-footer {
            padding: 24px 48px;
            background: #000;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        @media (max-width: 768px) {
            .bottom-footer {
                padding: 24px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .bottom-footer-logo {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 2px;
        }

        .bottom-footer p {
            color: rgba(255,255,255,0.4);
            font-size: 12px;
        }

        .bottom-lang {
            display: flex;
            gap: 6px;
        }

        .bottom-lang .lang-btn {
            padding: 5px 10px;
            font-size: 11px;
        }

        .legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .legal-links a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
        }

        .legal-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Dark Mode Support */
        @media (prefers-color-scheme: dark) {
            .hero {
                background: linear-gradient(135deg, var(--overlay-dark), var(--overlay-light)),
                            url('/car-bg.png') no-repeat center center;
                background-size: cover;
                background-attachment: fixed;
            }

            .info-section {
                background: var(--bg-dark);
            }

            .section-title {
                color: var(--text-light);
            }

            .section-desc {
                color: var(--text-secondary-dark);
            }

            .card {
                background: var(--card-dark);
                box-shadow: 0 2px 12px rgba(0,0,0,0.2);
            }

            .card:hover {
                box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            }

            .card h3 {
                color: var(--text-light);
            }

            .card p {
                color: var(--text-secondary-dark);
            }
        }

        /* No-JS fallback: show English by default */
        html:not([data-js-ready="true"]) [data-lang="ka"] { display: none; }