        @import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800;900&family=Inter:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f1f5f9;
            color: #0f172a;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Archivo', sans-serif;
            text-transform: uppercase;
        }

        .deal-badge {
            background: #dc2626;
            color: #fff;
            font-weight: 900;
            padding: 4px 12px;
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        }

        .car-card {
            background: white;
            border: 1px solid #e2e8f0;
            transition: all 0.2s ease;
        }

        .car-card:hover {
            border-color: #dc2626;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .video-btn {
            background: rgba(30, 58, 138, 0.7);
            backdrop-filter: blur(4px);
            transition: all 0.2s ease;
        }

        .video-btn:hover {
            background: #dc2626;
            color: #fff;
        }

        .btn-primary {
            background: #1e3a8a;
            color: white;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background: #1e40af;
            transform: translateY(-2px);
        }

        .gallery-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            background: rgba(15, 23, 42, 0.9);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .gallery-modal.is-open {
            display: flex;
        }

        .trust-line {
            background: #dc2626;
            height: 4px;
            width: 60px;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 60;
            padding: 2rem 0;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 55;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #0f172a;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .hero-panel {
            background: linear-gradient(145deg, #eff6ff 0%, #ffffff 45%, #fee2e2 100%);
            border: 1px solid #cbd5e1;
        }

        .hero-panel-card {
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid #dbeafe;
            backdrop-filter: blur(6px);
        }

        .card-tag {
            background: #eff6ff;
            color: #1d4ed8;
            border: 1px solid #bfdbfe;
            border-radius: 999px;
            padding: 0.35rem 0.75rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .card-action-pill {
            background: rgba(30, 58, 138, 0.85);
            color: #fff;
            border-radius: 999px;
            padding: 0.5rem 0.9rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            backdrop-filter: blur(4px);
        }

        .card-description {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .gallery-shell {
            width: min(1120px, 100%);
            max-height: calc(100vh - 2rem);
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
        }

        .gallery-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
            max-height: calc(100vh - 2rem);
        }

        .gallery-stage {
            position: relative;
            background: #0f172a;
            min-height: 420px;
            padding: 4.5rem 1.5rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-image-frame {
            width: 100%;
            height: 100%;
            min-height: 340px;
            max-height: calc(100vh - 6rem);
            overflow: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            cursor: zoom-in;
            scroll-behavior: smooth;
        }

        .gallery-image-frame.is-zoomed {
            align-items: flex-start;
            justify-content: flex-start;
            cursor: zoom-out;
        }

        .gallery-image {
            display: block;
            max-width: 100%;
            max-height: calc(100vh - 7rem);
            width: auto;
            height: auto;
            object-fit: contain;
            transition: width 0.25s ease, max-width 0.25s ease;
        }

        .gallery-image.is-zoomed {
            width: 220%;
            max-width: none;
            max-height: none;
        }

        .gallery-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 5;
            width: 3rem;
            height: 3rem;
            border-radius: 999px;
            border: 0;
            background: rgba(15, 23, 42, 0.92);
            color: #fff;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            height: 3rem;
            border-radius: 999px;
            border: 0;
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(6px);
        }

        .gallery-nav-prev {
            left: 1rem;
        }

        .gallery-nav-next {
            right: 1rem;
        }

        .gallery-nav:hover,
        .gallery-close:hover {
            background: #dc2626;
        }

        .gallery-zoom-note {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            border-radius: 999px;
            padding: 0.55rem 0.9rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            backdrop-filter: blur(6px);
        }

        .gallery-sidebar {
            padding: 1.5rem;
            overflow-y: auto;
            background: #fff;
        }

        .gallery-thumb-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .gallery-thumb {
            padding: 0;
            border: 2px solid transparent;
            border-radius: 0.9rem;
            overflow: hidden;
            background: #e2e8f0;
            aspect-ratio: 4 / 3;
            cursor: pointer;
        }

        .gallery-thumb.is-active {
            border-color: #dc2626;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-highlight {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 999px;
            padding: 0.45rem 0.85rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #0f172a;
        }

        @media (max-width: 1024px) {
            .gallery-layout {
                grid-template-columns: 1fr;
            }

            .gallery-stage {
                min-height: 320px;
            }
        }

        @media (max-width: 640px) {
            .gallery-stage {
                padding: 4rem 0.85rem 0.85rem;
            }

            .gallery-shell {
                border-radius: 1.2rem;
            }

            .gallery-nav,
            .gallery-close {
                width: 2.6rem;
                height: 2.6rem;
            }

            .gallery-thumb-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .gallery-image.is-zoomed {
                width: 260%;
            }

            .gallery-zoom-note {
                max-width: calc(100% - 4.2rem);
                line-height: 1.3;
            }
        }