        /* ═══════════════════════════════════════════
           HONDA V2 — CREATIVE DESIGN SYSTEM
           Glassmorphism + Bold Typography + Scroll Animations
        ═══════════════════════════════════════════ */
        :root {
            --honda-red: #CC0000;
            --honda-red-dark: #A30000;
            --honda-red-light: #FF1A1A;
            --honda-red-rgb: 204, 0, 0;
            --dark: #0f172a;
            --dark-800: #1e293b;
            --dark-700: #334155;
            --dark-600: #475569;
            --dark-500: #64748b;
            --dark-400: #94a3b8;
            --dark-300: #cbd5e1;
            --dark-200: #e2e8f0;
            --dark-100: #f1f5f9;
            --dark-50: #f8fafc;
            --white: #ffffff;
            --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --container: 1320px;
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.2s ease;
            --glass-bg: rgba(255,255,255,0.06);
            --glass-border: rgba(255,255,255,0.1);
            --glass-bg-light: rgba(255,255,255,0.75);
            --glass-border-light: rgba(255,255,255,0.5);
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { font-family: var(--font); line-height: 1.6; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body { background: var(--white); color: var(--dark-800); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }
        ul, ol { list-style: none; }
        button { font-family: var(--font); }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

        /* ═══ SCROLL REVEAL ANIMATIONS ═══ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }
        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-scale.visible { opacity: 1; transform: scale(1); }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* ═══════════ TOP BAR ═══════════ */
        .top-bar {
            background: var(--dark);
            color: var(--dark-400);
            font-size: 0.8rem;
            padding: 0.5rem 0;
            position: relative;
            z-index: 110;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }
        .top-bar-item .material-symbols-outlined {
            font-size: 15px;
            color: var(--honda-red);
        }
        .top-bar-item a {
            color: var(--dark-400);
            transition: color var(--transition-fast);
        }
        .top-bar-item a:hover { color: var(--white); }
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .top-bar-social a {
            color: var(--dark-400);
            font-size: 14px;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
        }
        .top-bar-social a:hover { color: var(--honda-red-light); }
        @media (max-width: 768px) {
            .top-bar-right, .top-bar .top-bar-item:nth-child(2) { display: none; }
        }

        /* ═══════════ HEADER ═══════════ */
        .site-header {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all var(--transition);
        }
        .site-header.scrolled {
            background: rgba(255,255,255,0.97);
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo-honda { height: 42px; width: auto; }
        .logo-text {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--dark-600);
            line-height: 1.3;
            border-left: 2px solid var(--honda-red);
            padding-left: 0.75rem;
        }
        .logo-text span {
            display: block;
            color: var(--honda-red);
            font-weight: 800;
            font-size: 0.8rem;
        }
        .main-nav { display: flex; align-items: center; gap: 0; }
        .main-nav a {
            padding: 0.5rem 1.125rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-700);
            transition: color var(--transition-fast);
            position: relative;
        }
        .main-nav a:hover { color: var(--honda-red); }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 1rem;
            right: 1rem;
            height: 2.5px;
            background: var(--honda-red);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .main-nav a:hover::after { transform: scaleX(1); }
        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.75rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.875rem;
            font-weight: 700;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
        }
        .header-cta:hover {
            background: var(--honda-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(var(--honda-red-rgb), 0.35);
        }
        .header-cta .material-symbols-outlined { font-size: 18px; }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            color: var(--dark-700);
        }
        .mobile-toggle .material-symbols-outlined { font-size: 28px; }
        @media (max-width: 1024px) {
            .main-nav, .header-cta { display: none; }
            .mobile-toggle { display: flex; }
        }

        /* ═══════════ HERO — BANNER SLIDER (Swiper) ═══════════ */
        .hero-slider-sec { padding: 0; background: var(--white); }
        .hero-slider-wrap {
            width: 100%;
            max-width: 2000px;   /* full-width, chặn trần 2000px trên màn siêu rộng */
            margin: 0 auto;
            overflow: hidden;
            background: #0f172a;
        }
        .hero-swiper { width: 100%; aspect-ratio: 1920 / 1080; }
        .hero-swiper .swiper-slide { overflow: hidden; }
        .hero-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
        .hero-slide-link { display: block; width: 100%; height: 100%; }
        /* Pagination bullets */
        .hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .5; width: 9px; height: 9px; transition: all .3s; }
        .hero-swiper .swiper-pagination-bullet-active { background: var(--honda-red); opacity: 1; width: 26px; border-radius: 5px; }
        /* Arrows */
        .hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev {
            color: #fff; background: rgba(0,0,0,.30); backdrop-filter: blur(6px);
            width: 46px; height: 46px; border-radius: 50%; transition: all .25s;
        }
        .hero-swiper .swiper-button-next:after, .hero-swiper .swiper-button-prev:after { font-size: 1.05rem; font-weight: 700; }
        .hero-swiper .swiper-button-next:hover, .hero-swiper .swiper-button-prev:hover { background: var(--honda-red); transform: scale(1.08); }

        /* Nội dung dưới slider (H1 + CTA) */
        .hero-below { text-align: center; max-width: 760px; margin: 2.25rem auto 0; }
        .hero-below-badge {
            display: inline-flex; align-items: center; gap: .4rem;
            padding: .4rem 1rem; background: rgba(var(--honda-red-rgb),.08);
            color: var(--honda-red); border-radius: 100px;
            font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
            margin-bottom: 1rem;
        }
        .hero-below-badge .material-symbols-outlined { font-size: 15px; }
        .hero-below-title { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 900; color: var(--dark); letter-spacing: -.02em; line-height: 1.12; margin-bottom: .85rem; }
        .hero-below-desc { font-size: 1.05rem; color: var(--dark-500); line-height: 1.7; max-width: 620px; margin: 0 auto 1.75rem; }
        .hero-below-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.25rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.9375rem;
            font-weight: 700;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .btn-hero-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        .btn-hero-primary:hover::before { transform: translateX(100%); }
        .btn-hero-primary:hover {
            background: var(--honda-red-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(var(--honda-red-rgb), 0.4);
        }
        /* Nút phụ — dùng trên NỀN SÁNG (hero-below, spec-sidebar trang xe) */
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.25rem;
            background: #fff;
            color: var(--dark);
            font-size: 0.9375rem;
            font-weight: 700;
            border-radius: 100px;
            border: 1.5px solid var(--dark-200);
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-hero-secondary:hover {
            border-color: var(--honda-red);
            color: var(--honda-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(15,23,42,.10);
        }
        .btn-hero-primary .material-symbols-outlined,
        .btn-hero-secondary .material-symbols-outlined { font-size: 20px; }

        @media (max-width: 768px) {
            .hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev { display: none; }
            .hero-below { margin-top: 1.5rem; }
            .hero-below-desc { font-size: 1rem; }
        }
        /* Chỉ ĐIỆN THOẠI mới dùng banner dọc 9:16 — tablet vẫn dùng banner ngang */
        @media (max-width: 600px) {
            .hero-swiper { aspect-ratio: 1080 / 1920; }
        }

        /* ═══════════ CAR LINEUP — GLASSMORPHISM CARDS ═══════════ */
        .section-lineup {
            padding: 6rem 0;
            background: var(--dark-50);
            position: relative;
        }
        .section-lineup::before { display: none; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--honda-red);
            margin-bottom: 1rem;
        }
        .section-tag .material-symbols-outlined { font-size: 18px; }
        .section-title-v2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--dark);
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 0.75rem;
        }
        .section-title-v2.text-white { color: var(--white); }
        .section-subtitle {
            font-size: 1.0625rem;
            font-weight: 400;
            color: var(--dark-500);
            max-width: 560px;
            line-height: 1.7;
        }
        .section-subtitle.text-light { color: var(--dark-400); }
        .section-header-v2 {
            margin-bottom: 3.5rem;
        }
        .section-header-v2.center { text-align: center; }
        .section-header-v2.center .section-subtitle { margin: 0 auto; }

        /* Car grid */
        .car-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }
        .car-card-v2 {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            border: 1px solid var(--dark-200);
            transition: all var(--transition);
            cursor: pointer;
            group: true;
        }
        .car-card-v2:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.12);
            border-color: transparent;
        }
        .car-card-img {
            position: relative;
            padding: 2rem 1.5rem 1rem;
            background: linear-gradient(135deg, var(--dark-50) 0%, var(--dark-100) 100%);
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .car-card-img img {
            width: 85%;
            height: auto;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
        }
        .car-card-v2:hover .car-card-img img {
            transform: scale(1.08) translateX(8px);
        }
        /* Specs overlay on hover */
        .car-card-specs-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15,23,42,0.88);
            backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity var(--transition);
        }
        .car-card-v2:hover .car-card-specs-overlay { opacity: 1; }
        .specs-overlay-title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .specs-overlay-list {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
        }
        .specs-overlay-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            color: var(--dark-300);
        }
        .specs-overlay-item .material-symbols-outlined {
            font-size: 16px;
            color: var(--honda-red-light);
        }
        .car-card-body {
            padding: 1.5rem;
        }
        .car-card-name {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }
        .car-card-tagline {
            font-size: 0.8125rem;
            color: var(--dark-500);
            margin-bottom: 1rem;
        }
        .car-card-price-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid var(--dark-100);
        }
        .car-card-price {
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--honda-red);
        }
        .car-card-price small {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--dark-500);
        }
        .car-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--honda-red);
            transition: gap var(--transition);
        }
        .car-card-v2:hover .car-card-cta { gap: 0.5rem; }
        .car-card-cta .material-symbols-outlined { font-size: 18px; }

        /* Horizontal scroll on mobile */
        @media (max-width: 1024px) {
            .car-grid {
                grid-template-columns: none;
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1.25rem;
                padding-bottom: 1rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .car-grid::-webkit-scrollbar { display: none; }
            .car-card-v2 {
                min-width: 300px;
                flex-shrink: 0;
                scroll-snap-align: start;
            }
            .car-card-specs-overlay { display: none; }
        }

        /* ═══════════ WHY HONDA — DARK SECTION WITH COUNTERS ═══════════ */
        .section-usp {
            padding: 6rem 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .section-usp::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(var(--honda-red-rgb), 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .usp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .usp-image-side {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .usp-image-side img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }
        .usp-image-badge {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .usp-image-badge .material-symbols-outlined {
            font-size: 28px;
            color: var(--honda-red-light);
        }
        .usp-image-badge-text {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
        }
        .usp-image-badge-text small {
            display: block;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--dark-400);
        }
        .usp-content-side { }
        .usp-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        .usp-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 1.75rem;
            transition: all var(--transition);
        }
        .usp-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.18);
            transform: translateY(-4px);
        }
        .usp-card-icon {
            width: 52px;
            height: 52px;
            background: rgba(var(--honda-red-rgb), 0.12);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .usp-card-icon .material-symbols-outlined {
            font-size: 26px;
            color: var(--honda-red-light);
        }
        .usp-card-counter {
            font-size: 2rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .usp-card-label {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--dark-300);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .usp-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .usp-image-side img { height: 300px; }
        }
        @media (max-width: 640px) {
            .usp-cards { grid-template-columns: 1fr; }
        }

        /* ═══════════ SERVICES — EDITORIAL ALTERNATING LAYOUT ═══════════ */
        .section-services {
            padding: 6rem 0;
            background: var(--white);
        }
        .service-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            margin-bottom: 0;
            min-height: 420px;
        }
        .service-block:nth-child(even) .service-img-side { order: 2; }
        .service-block:nth-child(even) .service-text-side { order: 1; }
        .service-img-side {
            position: relative;
            overflow: hidden;
        }
        .service-img-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .service-block:hover .service-img-side img {
            transform: scale(1.05);
        }
        .service-text-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3.5rem 4rem;
            background: var(--dark-50);
        }
        .service-block:nth-child(2) .service-text-side { background: var(--white); }
        .service-block:nth-child(3) .service-text-side { background: var(--dark-50); }
        .service-num {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(var(--honda-red-rgb), 0.1);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .service-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .service-desc {
            font-size: 0.9375rem;
            color: var(--dark-600);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .service-features {
            display: flex;
            flex-direction: column;
            gap: 0.625rem;
        }
        .service-feature {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark-700);
        }
        .service-feature .material-symbols-outlined {
            font-size: 18px;
            color: var(--honda-red);
        }
        /* Nút dẫn tới 2 trang dịch vụ chi tiết của mỗi khối */
        .service-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.75rem;
        }
        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.75rem 1.375rem;
            min-height: 44px;
            background: #fff;
            color: var(--dark);
            font-size: 0.875rem;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
            border: 1.5px solid var(--dark-200);
            border-radius: 100px;
            transition: all var(--transition);
        }
        .service-btn .material-symbols-outlined {
            font-size: 18px;
            transition: transform var(--transition);
        }
        .service-btn:hover {
            background: var(--honda-red);
            border-color: var(--honda-red);
            color: #fff;
        }
        .service-btn:hover .material-symbols-outlined { transform: translateX(3px); }
        @media (max-width: 1024px) {
            .service-block {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .service-block:nth-child(even) .service-img-side { order: 0; }
            .service-block:nth-child(even) .service-text-side { order: 0; }
            .service-img-side { height: 280px; }
            .service-text-side { padding: 2.5rem 1.5rem; }
        }

        /* ═══════════ CALCULATOR — VISUAL WITH CAR SILHOUETTE ═══════════ */
        .section-calc {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }
        .section-calc::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(var(--honda-red-rgb), 0.06) 0%, transparent 70%);
        }
        .calc-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .calc-price-col {}
        .price-table {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .price-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .price-row:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.1);
        }
        .price-row.active {
            background: rgba(204,0,0,0.1);
            border-color: var(--honda-red);
        }
        .price-car-thumb {
            width: 80px;
            height: 48px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .price-info { flex: 1; }
        .price-car-name {
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.125rem;
        }
        .price-car-price {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--honda-red-light);
        }
        .calc-form-v2 {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
        }
        .calc-form-title-v2 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .calc-form-title-v2 .material-symbols-outlined {
            font-size: 24px;
            color: var(--honda-red-light);
        }
        .form-group-v2 { margin-bottom: 1.75rem; }
        .form-label-v2 {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--dark-300);
            margin-bottom: 0.625rem;
        }
        .form-label-v2 strong { color: var(--honda-red-light); }
        .form-select-v2 {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-sm);
            color: var(--white);
            font-family: var(--font);
            font-size: 0.875rem;
            font-weight: 600;
            appearance: none;
            cursor: pointer;
            transition: border-color var(--transition-fast);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
        }
        .form-select-v2:focus {
            outline: none;
            border-color: var(--honda-red);
        }
        .form-select-v2 option { background: var(--dark); color: var(--white); }
        .form-range-v2 {
            width: 100%;
            -webkit-appearance: none;
            appearance: none;
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            outline: none;
        }
        .form-range-v2::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            background: var(--honda-red);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(var(--honda-red-rgb), 0.4);
            transition: all var(--transition-fast);
        }
        .form-range-v2::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            box-shadow: 0 4px 16px rgba(var(--honda-red-rgb), 0.5);
        }
        .form-range-v2::-moz-range-thumb {
            width: 22px;
            height: 22px;
            background: var(--honda-red);
            border: none;
            border-radius: 50%;
            cursor: pointer;
        }
        .form-range-labels-v2 {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--dark-500);
            margin-top: 0.375rem;
        }
        .btn-calc-v2 {
            width: 100%;
            padding: 0.875rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.9375rem;
            font-weight: 700;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn-calc-v2:hover {
            background: var(--honda-red-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(var(--honda-red-rgb), 0.35);
        }
        .btn-calc-v2 .material-symbols-outlined { font-size: 20px; }
        .btn-calc-policy {
            width: 100%;
            margin-top: 1rem;
            padding: 0.8rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 700;
            border: none;
            border-radius: 100px;
            transition: all var(--transition);
        }
        .btn-calc-policy:hover {
            background: var(--honda-red-light);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(var(--honda-red-rgb), 0.35);
        }
        .btn-calc-policy .material-symbols-outlined { font-size: 18px; color: var(--white); }

        /* Calc result */
        .calc-result-v2 {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .calc-result-label-v2 {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        .calc-result-amount-v2 {
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 1.5rem;
            transition: all var(--transition);
        }
        .calc-result-amount-v2 span {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark-400);
        }
        .calc-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .calc-detail-v2 {
            background: rgba(255,255,255,0.04);
            border-radius: var(--radius-sm);
            padding: 0.875rem 1rem;
        }
        .calc-detail-v2 .label {
            font-size: 0.6875rem;
            font-weight: 500;
            color: var(--dark-500);
            display: block;
            margin-bottom: 0.25rem;
        }
        .calc-detail-v2 .value {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--dark-200);
        }
        .calc-note-v2 {
            margin-top: 1.25rem;
            font-size: 0.6875rem;
            color: var(--dark-500);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .calc-price-col .calc-form-v2 { padding: 1.5rem; }
            .calc-layout {
                grid-template-columns: 1fr;
            }
            .calc-visual { padding: 2rem 1rem; }
            .calc-car-img { max-width: 360px; }
        }
        @media (max-width: 480px) {
            .calc-details-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════ CTA — FULL BLEED VIDEO PLACEHOLDER ═══════════ */
        .section-cta {
            position: relative;
            min-height: 480px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .cta-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(var(--honda-red-rgb), 0.85) 0%, rgba(15,23,42,0.9) 100%),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80') center/cover no-repeat;
        }
        .cta-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .section-cta .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .cta-play-btn {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }
        .cta-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }
        .cta-play-btn .material-symbols-outlined {
            font-size: 36px;
            color: var(--honda-red);
            margin-left: 4px;
        }
        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.15;
        }
        .cta-desc {
            font-size: 1.125rem;
            font-weight: 400;
            color: rgba(255,255,255,0.8);
            max-width: 560px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }
        .cta-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2.25rem;
            background: var(--white);
            color: var(--dark);
            font-size: 0.9375rem;
            font-weight: 700;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .btn-cta-white .material-symbols-outlined { font-size: 20px; }
        .btn-cta-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2.25rem;
            background: transparent;
            color: var(--white);
            font-size: 0.9375rem;
            font-weight: 600;
            border-radius: 100px;
            border: 2px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-cta-ghost:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }
        .btn-cta-ghost .material-symbols-outlined { font-size: 20px; }

        /* ═══════════ NEWS — MAGAZINE LAYOUT ═══════════ */
        .section-news {
            padding: 6rem 0;
            background: var(--dark-50);
        }
        .news-magazine {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .news-featured {
            grid-row: span 2;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            min-height: 480px;
            cursor: pointer;
            transition: all var(--transition);
        }
        .news-featured:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
        .news-featured img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .news-featured:hover img { transform: scale(1.05); }
        .news-featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 60%, transparent 100%);
        }
        .news-tag {
            display: inline-block;
            align-self: flex-start;
            width: fit-content;
            padding: 0.25rem 0.75rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            margin-bottom: 0.75rem;
        }
        .news-featured-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .news-featured-excerpt {
            font-size: 0.875rem;
            color: var(--dark-300);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-side {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .news-side-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 1.25rem;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--dark-200);
            transition: all var(--transition);
            cursor: pointer;
        }
        .news-side-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
            border-color: transparent;
        }
        .news-side-img {
            overflow: hidden;
        }
        .news-side-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
            min-height: 180px;
        }
        .news-side-card:hover .news-side-img img { transform: scale(1.05); }
        .news-side-body {
            padding: 1.5rem 1.5rem 1.5rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-side-title {
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.4;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-side-excerpt {
            font-size: 0.8125rem;
            color: var(--dark-500);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }
        .news-side-meta {
            font-size: 0.75rem;
            color: var(--dark-400);
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }
        .news-side-meta .material-symbols-outlined { font-size: 14px; }

        @media (max-width: 768px) {
            .news-magazine {
                grid-template-columns: 1fr;
            }
            .news-featured { min-height: 320px; }
            .news-side-card { grid-template-columns: 120px 1fr; }
            .news-side-img img { min-height: 140px; }
        }

        /* ═══════════ DEALER / CONTACT + MAP ═══════════ */
        .section-dealer {
            padding: 6rem 0;
            background: var(--white);
        }
        .dealer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .dealer-info { }
        .dealer-card {
            background: var(--dark-50);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid var(--dark-200);
        }
        .dealer-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .dealer-auth {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--honda-red);
            margin-bottom: 2rem;
        }
        .dealer-auth .material-symbols-outlined { font-size: 16px; }
        .dealer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .dealer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .dealer-contact-icon {
            width: 44px;
            height: 44px;
            background: rgba(var(--honda-red-rgb), 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .dealer-contact-icon .material-symbols-outlined {
            font-size: 20px;
            color: var(--honda-red);
        }
        .dealer-contact-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark-500);
            margin-bottom: 0.125rem;
        }
        .dealer-contact-value {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--dark);
        }
        .dealer-contact-value a {
            color: var(--dark);
            transition: color var(--transition-fast);
        }
        .dealer-contact-value a:hover { color: var(--honda-red); }
        .dealer-hours {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--dark-200);
        }
        .dealer-hours-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }
        .dealer-hours-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.8125rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--dark-100);
        }
        .dealer-hours-row .day { color: var(--dark-600); }
        .dealer-hours-row .time { font-weight: 600; color: var(--dark); }
        .dealer-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 2rem;
        }
        .btn-dealer-primary {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--honda-red);
            color: var(--white);
            font-size: 0.875rem;
            font-weight: 700;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-dealer-primary:hover {
            background: var(--honda-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(var(--honda-red-rgb), 0.3);
        }
        .btn-dealer-primary .material-symbols-outlined { font-size: 18px; }
        .btn-dealer-outline {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--white);
            color: var(--dark);
            font-size: 0.875rem;
            font-weight: 700;
            border-radius: 100px;
            border: 2px solid var(--dark-200);
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-dealer-outline:hover {
            border-color: var(--honda-red);
            color: var(--honda-red);
        }
        .btn-dealer-outline .material-symbols-outlined { font-size: 18px; }
        .dealer-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--dark-200);
            height: 100%;
            min-height: 480px;
        }
        .dealer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            min-height: 480px;
        }
        @media (max-width: 1024px) {
            .dealer-grid { grid-template-columns: 1fr; }
            .dealer-map { min-height: 360px; }
            .dealer-map iframe { min-height: 360px; }
        }

        /* ═══════════ FOOTER ═══════════ */
        .site-footer {
            background: var(--dark);
            padding: 4rem 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
        }
        .footer-brand-desc {
            font-size: 0.8125rem;
            color: var(--dark-400);
            line-height: 1.7;
            margin-top: 1.25rem;
            max-width: 280px;
        }
        .footer-logo { height: 36px; width: auto; margin-bottom: 0; }
        .footer-heading {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.25rem;
        }
        .footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
        .footer-links a {
            font-size: 0.875rem;
            color: var(--dark-400);
            transition: color var(--transition-fast);
        }
        .footer-links a:hover { color: var(--white); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-copy {
            font-size: 0.8125rem;
            color: var(--dark-500);
        }
        .footer-socials {
            display: flex;
            gap: 0.75rem;
        }
        .footer-social-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.06);
            border-radius: 8px;
            color: var(--dark-400);
            transition: all var(--transition-fast);
        }
        .footer-social-link:hover {
            background: var(--honda-red);
            color: var(--white);
        }
        .footer-social-link .material-symbols-outlined { font-size: 18px; }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ═══════════ STICKY MOBILE BAR ═══════════ */
        .mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid var(--dark-200);
            z-index: 90;
            padding: 0.5rem 0;
            padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
        }
        .mobile-bar-inner {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .mobile-bar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.125rem;
            font-size: 0.625rem;
            font-weight: 600;
            color: var(--dark-500);
            cursor: pointer;
            padding: 0.375rem 0.75rem;
            border-radius: 8px;
            transition: all var(--transition-fast);
            background: none;
            border: none;
            text-decoration: none;
        }
        .mobile-bar-item:hover, .mobile-bar-item.active {
            color: var(--honda-red);
        }
        .mobile-bar-item .material-symbols-outlined { font-size: 22px; }
        .mobile-bar-item.primary {
            background: var(--honda-red);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
        }
        .mobile-bar-item.primary:hover {
            background: var(--honda-red-dark);
            color: var(--white);
        }
        @media (max-width: 768px) {
            .mobile-bar { display: block; }
            body { padding-bottom: 72px; }
        }
        /* Thanh dưới co giãn được — 5 mục vẫn vừa trên máy nhỏ (360px) */
        .mobile-bar-inner { gap: 2px; justify-content: space-between; }
        .mobile-bar-item { flex: 1 1 0; min-width: 0; padding: 0.375rem 0.25rem; white-space: nowrap; }
        .mobile-bar-item.primary { flex: 1.4 1 0; padding: 0.5rem 0.5rem; }

        /* ── Tinh chỉnh cho màn hình nhỏ ≤400px ── */
        @media (max-width: 400px) {
            .mobile-bar-item { font-size: 0.56rem; }
            .mobile-bar-item .material-symbols-outlined { font-size: 20px; }
            .dealer-card { padding: 1.5rem 1.25rem; }
            .dealer-name { font-size: 1.25rem; }
            .dealer-contact-item { gap: 0.75rem; }
            .dealer-contact-icon { width: 38px; height: 38px; }
            .dealer-contact-value, .dealer-contact-value a, .footer-links a { overflow-wrap: anywhere; }
        }

        /* ═══════════ USP NỀN TRẮNG + VIDEO (merge với "Vì sao chọn chúng tôi") ═══════════ */
        .section-usp--light { background: var(--white); }
        .section-usp--light::before { display: none; }
        .section-usp--light .section-title-v2 { color: var(--dark); }
        .section-usp--light .section-subtitle { color: var(--dark-500); }
        .section-usp--light .usp-card {
            background: var(--white);
            border: 1px solid var(--dark-200);
            box-shadow: 0 4px 20px rgba(15,23,42,0.05);
        }
        .section-usp--light .usp-card:hover {
            background: var(--white);
            border-color: var(--honda-red);
            box-shadow: 0 12px 32px rgba(15,23,42,0.10);
            transform: translateY(-4px);
        }
        .section-usp--light .usp-card-counter { color: var(--dark); }
        .section-usp--light .usp-card-label { color: var(--dark-500); }
        .usp-video {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #0f172a center/cover no-repeat;
            box-shadow: 0 26px 70px rgba(15,23,42,0.18);
        }
        .usp-video iframe, .usp-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
        @media (max-width: 1024px) { .usp-video { height: 320px; } }

        /* ═══════════ CTA — FORM ĐĂNG KÝ NHÚNG THẲNG ═══════════ */
        .cta-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 3rem;
            align-items: center;
            text-align: left;
        }
        .cta-copy .cta-title { text-align: left; }
        .cta-copy .cta-desc { text-align: left; margin: 0 0 1.5rem; }
        .cta-phone-link {
            display: inline-flex; align-items: center; gap: 0.5rem;
            color: var(--white); font-weight: 700; font-size: 1.05rem;
        }
        .cta-phone-link .material-symbols-outlined { color: var(--white); }
        .cta-form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: 0 30px 70px rgba(0,0,0,0.30);
        }
        .cta-form-title {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 1.15rem; font-weight: 800; color: var(--dark);
            margin-bottom: 1.25rem;
        }
        .cta-form-title .material-symbols-outlined { color: var(--honda-red); }
        .lead-form .lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .lead-field { margin-bottom: 1rem; display: flex; flex-direction: column; }
        .lead-field label { font-size: 0.8rem; font-weight: 600; color: var(--dark-600); margin-bottom: 0.35rem; }
        .lead-field input, .lead-field select {
            width: 100%; padding: 0.7rem 0.9rem;
            border: 1px solid var(--dark-200); border-radius: var(--radius-sm);
            font-family: var(--font); font-size: 0.9rem; color: var(--dark);
            background: var(--white); outline: none; transition: border-color var(--transition-fast);
        }
        .lead-field input:focus, .lead-field select:focus { border-color: var(--honda-red); }
        .lead-submit {
            width: 100%; margin-top: 0.5rem; padding: 0.85rem;
            display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
            background: var(--honda-red); color: var(--white);
            font-weight: 700; font-size: 0.95rem; border: none; border-radius: 100px;
            cursor: pointer; transition: all var(--transition);
        }
        .lead-submit:hover { background: var(--honda-red-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(var(--honda-red-rgb),0.35); }
        .lead-note { margin-top: 0.75rem; font-size: 0.72rem; color: var(--dark-500); text-align: center; }
        .lead-ok {
            display: flex; align-items: center; gap: 0.5rem;
            background: rgba(22,163,74,0.10); color: #15803d;
            border: 1px solid rgba(22,163,74,0.30); border-radius: var(--radius-sm);
            padding: 0.7rem 0.9rem; margin-bottom: 1rem; font-size: 0.85rem; font-weight: 600;
        }
        .lead-ok .material-symbols-outlined { font-size: 20px; }
        @media (max-width: 900px) {
            .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
            .cta-copy { text-align: center; }
            .cta-copy .cta-title, .cta-copy .cta-desc { text-align: center; }
            .cta-copy .cta-desc { margin-left: auto; margin-right: auto; }
        }
        @media (max-width: 480px) { .lead-form .lead-row { grid-template-columns: 1fr; } }

        /* ═══════════ SHOWROOM — ẢNH THAY BẢN ĐỒ ═══════════ */
        .dealer-photo {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--dark-200);
            height: 100%;
            min-height: 480px;
        }
        .dealer-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; display: block; }
        .dealer-photo-ph {
            width: 100%; height: 100%; min-height: 480px;
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
            background: linear-gradient(160deg, var(--dark-50), var(--dark-100));
            color: var(--dark-500);
        }
        .dealer-photo-ph .material-symbols-outlined { font-size: 48px; color: var(--honda-red); }
        .dealer-photo-ph em { font-style: normal; font-size: 0.9rem; }
        @media (max-width: 1024px) {
            .dealer-photo, .dealer-photo img, .dealer-photo-ph { min-height: 320px; }
        }

        /* ═══════════ UTILITY ═══════════ */
        .text-center { text-align: center; }
        .mb-0 { margin-bottom: 0; }
