:root {
            --navy: #0F2440;
            --navy-mid: #1A3558;
            --navy-light: #264B73;
            --gold: #F5C542;
            --gold-light: #FFEAA0;
            --gold-dim: #C9A235;
            --white: #FFFFFF;
            --off-white: #F4F6F9;
            --gray-100: #E8ECF1;
            --gray-300: #B0BAC9;
            --gray-500: #6B7A90;
            --gray-700: #3A4A5E;
            --green: #22C55E;
            --red: #EF4444;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'DM Sans', sans-serif; color: var(--gray-700); background: var(--off-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .fade-up { animation: fadeUp 0.7s ease-out both; }

        /* Header */
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(15,36,64,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 2rem; height: 72px; display: flex; align-items: center; }
        .nav { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--white); }
        .logo-img { height: 48px; width: auto; object-fit: contain; }
        .logo-img-sm { height: 36px; }
        .logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
        .logo-text span { color: var(--gold); }
        .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
        .nav-links a { color: var(--gray-300); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.25s; }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.55rem 1.25rem; border-radius: 8px; font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.2s !important; }
        .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,197,66,0.35); }
        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 110; }
        .mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }
        .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 105; padding: 7rem 2rem 2rem; }
        .mobile-nav.active { display: flex; flex-direction: column; gap: 0.5rem; }
        .mobile-nav a { color: var(--white); text-decoration: none; font-size: 1.3rem; font-weight: 600; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }

        /* Article Hero */
        .article-hero {
            position: relative;
            background: var(--navy);
            padding: 7.5rem 2rem 3rem;
            overflow: hidden;
        }
        .article-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 60%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(245,197,66,0.07) 0%, transparent 65%);
            pointer-events: none;
        }
        .article-hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .article-hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 0 0 0;
            position: relative;
            z-index: 1;
        }
        .article-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 1rem;
        }
        .article-breadcrumb a {
            color: var(--gray-300);
            text-decoration: none;
            transition: color 0.2s;
        }
        .article-breadcrumb a:hover { color: var(--gold); }
        .article-breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }
        .article-meta-top {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .article-category {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(245,197,66,0.12);
            color: var(--gold);
            padding: 0.35rem 0.9rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .article-date {
            font-size: 0.85rem;
            color: var(--gray-500);
        }
        .article-hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.12;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
            max-width: 700px;
        }
        .article-hero h1 em { font-style: normal; color: var(--gold); }
        .article-hero-sub {
            font-size: 1.05rem;
            color: var(--gray-300);
            line-height: 1.7;
            max-width: 620px;
        }
        .article-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .article-stat {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        .article-stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gold);
        }
        .article-stat-label {
            font-size: 0.78rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Article Body */
        .article-layout {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 4rem;
            align-items: start;
        }
        .article-content {
            max-width: 760px;
        }
        .article-content h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.02em;
            margin: 3rem 0 1.25rem;
            padding-top: 1rem;
        }
        .article-content h2:first-of-type { margin-top: 0; }
        .article-content h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin: 2rem 0 0.75rem;
        }
        .article-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--gray-700);
            margin-bottom: 1.25rem;
        }
        .article-content ul, .article-content ol {
            margin: 1rem 0 1.5rem 1.25rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--gray-700);
        }
        .article-content li { margin-bottom: 0.5rem; }
        .article-content strong {
            color: var(--navy);
            font-weight: 700;
        }

        /* Vehicle Cards */
        .vehicle-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 16px;
            padding: 1.75rem;
            margin: 1.5rem 0 2rem;
            transition: transform 0.25s, box-shadow 0.25s;
            position: relative;
            overflow: hidden;
        }
        .vehicle-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
        }
        .vehicle-card.gold::before { background: linear-gradient(90deg, var(--gold), var(--gold-dim)); }
        .vehicle-card.silver::before { background: linear-gradient(90deg, #B0BAC9, #8899AA); }
        .vehicle-card.bronze::before { background: linear-gradient(90deg, #CD7F32, #A0622E); }
        .vehicle-card.neutral::before { background: var(--gray-100); }
        .vehicle-card.danger::before { background: linear-gradient(90deg, var(--red), #DC2626); }
        .vehicle-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

        .vc-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1rem;
            gap: 1rem;
        }
        .vc-rank {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .vc-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.02em;
        }
        .vc-score {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
        }
        .vc-score-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1;
        }
        .vc-score-num.high { color: var(--green); }
        .vc-score-num.mid { color: var(--gold-dim); }
        .vc-score-num.low { color: var(--red); }
        .vc-score-label {
            font-size: 0.65rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .vc-stats {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--gray-100);
        }
        .vc-stat {
            font-size: 0.85rem;
            color: var(--gray-500);
        }
        .vc-stat b {
            color: var(--navy);
            font-weight: 700;
        }
        .vc-bar-wrap { margin-bottom: 0.75rem; }
        .vc-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--gray-500);
            margin-bottom: 0.3rem;
        }
        .vc-bar-track {
            height: 8px;
            background: var(--gray-100);
            border-radius: 8px;
            overflow: hidden;
        }
        .vc-bar {
            height: 100%;
            border-radius: 8px;
            transition: width 1.2s ease-out;
        }
        .vc-bar.green { background: var(--green); }
        .vc-bar.gold { background: var(--gold); }
        .vc-bar.red { background: var(--red); }
        .vc-defects {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.6;
        }
        .vc-defects strong { color: var(--gray-700); }

        /* Verdict Box */
        .verdict-box {
            background: var(--navy);
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            color: var(--white);
        }
        .verdict-box h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--gold);
            margin: 0 0 1.25rem;
        }
        .verdict-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--gray-300);
        }
        .verdict-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            margin-top: 0.15rem;
        }
        .verdict-icon.buy { background: rgba(34,197,94,0.15); color: var(--green); }
        .verdict-icon.avoid { background: rgba(239,68,68,0.15); color: var(--red); }
        .verdict-icon.warn { background: rgba(245,197,66,0.15); color: var(--gold); }

        /* Callout / Insight Box */
        .insight-box {
            background: linear-gradient(135deg, rgba(245,197,66,0.08), rgba(245,197,66,0.03));
            border-left: 4px solid var(--gold);
            border-radius: 0 12px 12px 0;
            padding: 1.5rem 1.75rem;
            margin: 2rem 0;
        }
        .insight-box p {
            font-size: 1rem;
            color: var(--gray-700);
            margin: 0;
            line-height: 1.7;
        }
        .insight-box strong { color: var(--navy); }

        /* CTA Box */
        .article-cta {
            background: var(--navy);
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
            text-align: center;
        }
        .article-cta h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .article-cta p {
            color: var(--gray-300);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold); color: var(--navy); padding: 0.95rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 1.05rem; transition: transform 0.2s, box-shadow 0.2s; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,66,0.35); }
        .btn-primary svg { width: 20px; height: 20px; }

        /* Sidebar */
        .article-sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-toc {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-toc h4 {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gray-500);
            margin-bottom: 1rem;
        }
        .toc-list {
            list-style: none;
        }
        .toc-list li { margin-bottom: 0.5rem; }
        .toc-list a {
            font-size: 0.88rem;
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.2s;
            display: block;
            padding: 0.25rem 0;
            line-height: 1.4;
        }
        .toc-list a:hover,
        .toc-list a.active { color: var(--gold-dim); font-weight: 600; }

        .sidebar-cta {
            background: var(--navy);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
        }
        .sidebar-cta h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 0.5rem;
        }
        .sidebar-cta p {
            font-size: 0.85rem;
            color: var(--gray-300);
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .sidebar-cta .btn-sm {
            display: inline-flex;
            background: var(--gold);
            color: var(--navy);
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .sidebar-cta .btn-sm:hover { transform: translateY(-1px); }

        /* Footer */
        .footer { background: #0A1929; color: var(--gray-300); padding: 4rem 2rem 2rem; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
        .footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-top: 1rem; color: var(--gray-500); }
        .footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 1.25rem; font-size: 0.95rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.65rem; }
        .footer-col a { color: var(--gray-500); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
        .footer-col a:hover { color: var(--gold); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; max-width: 1200px; margin: 0 auto; }
        .footer-bottom p { font-size: 0.85rem; color: var(--gray-500); }
        .footer-bottom-links { display: flex; gap: 1.5rem; }
        .footer-bottom-links a { color: var(--gray-500); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
        .footer-bottom-links a:hover { color: var(--gold); }

        /* Responsive */
        @media (max-width: 1024px) {
            .article-layout { grid-template-columns: 1fr; }
            .article-sidebar { display: none; }
        }
        @media (max-width: 768px) {
            .header { padding: 0 1.25rem; }
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .article-hero { padding: 6.5rem 1.5rem 2.5rem; }
            .article-hero h1 { font-size: 2.1rem; }
            .article-hero-sub { font-size: 1.02rem; }
            .article-stats { gap: 1.25rem; flex-wrap: wrap; }
            .article-layout { padding: 2.5rem 1.5rem 4rem; }
            .article-content h2 { font-size: 1.45rem; }
            .vc-header { flex-direction: column; }
            .vc-stats { gap: 1rem; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .article-hero { padding: 6rem 1.25rem 2rem; }
            .article-hero h1 { font-size: 1.75rem; }
            .article-stats { gap: 1rem; }
            .article-stat-num { font-size: 1.25rem; }
            .vehicle-card { padding: 1.25rem; }
            .footer-inner { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
