/*  GoldenLaneAuto v3 — Brighter, Editorial, Hero with imagery
======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Brighter palette */
  --ink:       #1A1F22;     /* warmer deep green, less dead */
  --ink-2:     #2A2F32;
  --text:      #46594F;
  --text-2:    #6B7E73;
  --subtle:    #9AA8A1;
  --line:      #E3E8E4;
  --line-2:    #EEF2EE;
  --bg:        #FFFFFF;
  --bg-soft:   #FBF7F1;   /* warmer cream-green */
  --bg-soft-2: #F2ECE2;
  --bg-cream:  #FAF8F2;   /* warm cream for editorial */

  --green:     #F26B26;    /* brighter emerald */
  --green-d:   #D85A14;
  --green-l:   #FF8C42;
  --green-bg:  #FFF4ED;
  --green-line:#FCD9C0;

  --bg-dark:   #1A1F22;    /* dark hero bg, not black */
  --bg-dark-2: #232A2E;

  --amber:     #D4842B;
  --amber-l:   #ECA248;
  --amber-bg:  #FBF1E1;
  --red:       #C84352;

  --s-1:4;--s-2:8;--s-3:12;--s-4:16;--s-5:20;--s-6:24;--s-8:32;--s-10:40;--s-12:48;--s-14:56;--s-16:64;--s-20:80;--s-24:96;--s-28:112;--s-32:128;
  --r-1:4px;--r-2:6px;--r-3:10px;--r-4:14px;--r-5:20px;--r-pill:999px;

  --shadow-1: 0 1px 2px rgba(26,31,34,.05);
  --shadow-2: 0 4px 14px rgba(26,31,34,.06);
  --shadow-3: 0 20px 48px rgba(26,31,34,.10);
  --shadow-4: 0 36px 90px rgba(26,31,34,.16);

  --ease:     cubic-bezier(.22,.85,.25,1);
  --ease-out: cubic-bezier(.32,.72,0,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15.5px; line-height: 1.6; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11','ss01','ss03';
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
svg.icon { flex-shrink: 0; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* Type */
.t-up { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.t-mono { font-family: var(--font-mono); letter-spacing: -.02em; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 36px; }
@media (max-width: 768px){ .container { padding: 0 20px; } }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 14px; height: 14px; min-width: 14px; }
.icon-md { width: 18px; height: 18px; min-width: 18px; }
.icon-lg { width: 24px; height: 24px; min-width: 24px; }
.icon-xl { width: 36px; height: 36px; min-width: 36px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .18em;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: currentColor; opacity: .6; }
.dark .eyebrow { color: #FFB37A; }
.dark .eyebrow::before { background: currentColor; opacity: .5; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(26,31,34,.07);
}
.nav-row { display: flex; align-items: center; height: 76px; gap: 20px; flex-wrap: nowrap; }
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 22px; color: var(--ink); letter-spacing: -.02em;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  color: white; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 19px; font-weight: 400; letter-spacing: -.04em;
  box-shadow: 0 4px 12px rgba(242,107,38,.28);
}
.nav-links { display: flex; gap: 0; flex: 1 1 auto; margin-left: 4px; flex-wrap: nowrap; min-width: 0; }
.nav-links a {
  padding: 8px 11px; border-radius: var(--r-2);
  font-size: 14px; font-weight: 500; color: var(--text);
  white-space: nowrap; flex-shrink: 0;
  transition: all .15s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--ink); position: relative; }
.nav-links a.active::after { content:''; position:absolute; left:14px; right:14px; bottom:4px; height:2px; background: var(--green); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-lang { display: flex; padding: 3px; background: var(--bg-soft); border-radius: var(--r-2); }
.nav-lang a { padding: 5px 9px; font-size: 12px; font-weight: 600; color: var(--text-2); border-radius: var(--r-1); }
.nav-lang a.active { color: var(--ink); background: var(--bg); box-shadow: var(--shadow-1); }
.nav-cta {
  background: var(--ink); color: var(--bg) !important;
  padding: 11px 20px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
  transition: all .18s var(--ease);
}
.nav-cta:hover { background: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-2); }
@media (max-width: 1080px){ .nav-links { display: none; } }

/* ============ HERO BASE (each page has bg variant) ============ */
.hero {
  position: relative; overflow: hidden;
  color: white;
  padding: 128px 0 112px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,31,34,.55) 0%, rgba(26,31,34,.78) 60%, rgba(26,31,34,.92) 100%),
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(242,107,38,.20), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
}

.hero-wrap { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 10px;
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin-bottom: 22px; color: rgba(255,255,255,.95);
}
.hero-eyebrow .live-dot {
  width: 8px; height: 8px; background: #34D399; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52,211,153,.22); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 8.2vw, 104px); line-height: 1;
  letter-spacing: -.035em; color: white; margin: 0 0 18px;
}
.hero h1 .it { font-style: italic; color: #FFB37A; }
.hero p.lead {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.74);
  max-width: 580px; margin: 0 auto 28px;
}
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: white; color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 14px 36px rgba(0,0,0,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 20px 48px rgba(0,0,0,.4); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: white;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.36); }
.btn-solid { background: var(--ink); color: white; box-shadow: var(--shadow-2); }
.btn-solid:hover { background: var(--green); transform: translateY(-1px); }
.btn-outline { background: white; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }

.hero-search {
  max-width: 1080px; margin: 32px auto 0; padding: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: var(--r-5);
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto; gap: 6px;
}
.hero-search .f {
  padding: 13px 18px; border-radius: var(--r-3);
  background: rgba(255,255,255,.05); text-align: left;
  transition: background .15s var(--ease);
}
.hero-search .f:hover { background: rgba(255,255,255,.1); }
.hero-search .f label {
  display: block; font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 4px;
}
.hero-search select, .hero-search input {
  background: transparent; border: none; color: white; outline: none;
  font-size: 14px; font-weight: 500; width: 100%; padding: 0; cursor: pointer;
}
.hero-search select option { background: var(--ink); color: white; }
.hero-search .submit {
  padding: 0 30px; border-radius: var(--r-3);
  background: white; color: var(--ink);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-search .submit:hover { background: var(--green-l); color: var(--ink); }
@media (max-width: 1000px){ .hero-search { grid-template-columns: 1fr 1fr; } .hero-search .submit { grid-column: 1/-1; padding: 14px; } }

.hero-meta {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  margin-top: 40px; font-size: 12.5px; color: rgba(255,255,255,.6);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item svg { color: #FFB37A; }

/* Hero floating badges */
.hero-float {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 32px; color: rgba(255,255,255,.7);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}

/* ============ Page-specific Hero backgrounds (parallax / blur) ============ */
.hero.var-home .hero-bg {
  background-image:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(242,107,38,.20), transparent 70%),
    url('/assets/img/hero/hero-home.jpg');
  filter: brightness(.55) saturate(1.1);
}
.hero.var-used .hero-bg { background-image: url('/assets/img/hero/hero-used.jpg'); filter: brightness(.55) saturate(1.1); }
.hero.var-new  .hero-bg { background-image: url('/assets/img/hero/hero-new.jpg');  filter: brightness(.55) saturate(1.1); }
.hero.var-shipping     .hero-bg { background-image: url('/assets/img/hero/hero-shipping.jpg'); filter: brightness(.50); }
.hero.var-dealer       .hero-bg { background-image: url('/assets/img/hero/hero-dealer.jpg');   filter: brightness(.55); }
.hero.var-about        .hero-bg { background-image: url('/assets/img/hero/hero-about.jpg');    filter: brightness(.55); }
.hero.var-news         .hero-bg { background-image: url('/assets/img/hero/hero-news.jpg');     filter: brightness(.55); }
.hero.var-faq          .hero-bg { background-image: url('/assets/img/hero/hero-faq.jpg');      filter: brightness(.55); }
.hero.var-markets      .hero-bg { background-image: url('/assets/img/hero/hero-markets.jpg');  filter: brightness(.55); }
.hero.var-brands       .hero-bg { background-image: url('/assets/img/hero/hero-brands.jpg');   filter: brightness(.55); }
.hero.var-body         .hero-bg { background-image: url('/assets/img/hero/hero-body.jpg');     filter: brightness(.55); }
.hero.var-detail       .hero-bg { background-image: url('/assets/img/hero/hero-detail.jpg');   filter: brightness(.55); }
.hero.var-compare      .hero-bg { background-image: url('/assets/img/hero/hero-tools.jpg');    filter: brightness(.55); }
.hero.var-tools        .hero-bg { background-image: url('/assets/img/hero/hero-tools.jpg');    filter: brightness(.55); }
.hero.var-inquiry      .hero-bg { background-image: url('/assets/img/hero/hero-inquiry.jpg');  filter: brightness(.55); }
.hero.var-404          .hero-bg { background-image: linear-gradient(135deg, #1A1F22, #F26B26); }

/* Page hero (shorter) */
.page-hero { position: relative; overflow: hidden; padding: 88px 0 72px; color: white; isolation: isolate; }
.page-hero .hero-bg, .page-hero .hero-overlay, .page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero .hero-bg { z-index: -2; background-size: cover; background-position: center; }
.page-hero .hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,31,34,.62), rgba(26,31,34,.88));
}
.page-hero .hero-grid {
  z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02;
  letter-spacing: -.03em; color: white;
}
.page-hero h1 .it { font-style: italic; color: #FFB37A; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 720px; margin-top: 14px; line-height: 1.55; }
.page-hero .eyebrow { color: #FFB37A; }
.page-hero .eyebrow::before { background: #FFB37A; opacity: .6; }

/* Stat under hero */
.hero-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 960px; margin: 32px auto 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-4); backdrop-filter: blur(10px);
}
.hero-stats .cell { padding: 16px 22px; border-right: 1px solid rgba(255,255,255,.1); text-align: left; }
.hero-stats .cell:last-child { border-right: none; }
.hero-stats .num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; color: white; letter-spacing: -.03em; line-height: 1;
}
.hero-stats .lbl {
  margin-top: 8px; font-size: 11px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}

/* ============ STAT BAR ============ */
.stat-bar { background: var(--bg); border-bottom: 1px solid var(--line); padding: 40px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 0 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4vw, 52px); color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.stat-lbl { margin-top: 10px; font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
@media (max-width: 720px){ .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; } .stat { border-right: none; } }

/* ============ SECTION ============ */
.section { padding: 128px 0; }
.section.tight { padding: 88px 0; }
.section.compact { padding: 64px 0; }
.section.soft { background: var(--bg-soft); }
.section.cream { background: var(--bg-cream); }
.section.dark { background: var(--bg-dark); color: rgba(255,255,255,.86); position: relative; overflow: hidden; }
.section.dark::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(242,107,38,.22), transparent 60%),
              radial-gradient(ellipse 50% 40% at 0% 100%, rgba(212,132,43,.10), transparent 60%);
}
.section.dark > * { position: relative; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: white; }
.section.dark .section-sub { color: rgba(255,255,255,.62); }

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -.025em; margin-top: 14px; }
.section-head h2 .it { font-style: italic; color: var(--green); }
.section-head .section-sub { font-size: 17px; color: var(--text-2); margin-top: 16px; line-height: 1.55; }

.section-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-row h2 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.025em; line-height: 1.1; }
.section-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; transition: gap .2s var(--ease); }
.section.dark .section-link { color: white; border-bottom-color: rgba(255,255,255,.5); }
.section-link:hover { gap: 10px; }

/* ============ CAR CARD ============ */
.cars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.cars.four { grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cars.two  { grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 1100px){ .cars, .cars.four { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 600px){ .cars, .cars.four, .cars.two { grid-template-columns: 1fr; } }

.car { display: block; color: inherit; transition: all .35s var(--ease); position: relative; }
.car:hover { transform: translateY(-4px); }
.car-img-wrap {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--bg-soft); border-radius: var(--r-4);
}
.car-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.car:hover .car-img { transform: scale(1.045); }
.car-img-wrap::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, transparent 60%, rgba(26,31,34,.45) 100%);
}
.car-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.car-bd {
  padding: 5px 11px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.94); color: var(--ink); backdrop-filter: blur(10px);
}
.car-bd.ev { background: var(--green); color: white; box-shadow: 0 4px 12px rgba(242,107,38,.32); }
.car-bd.new { background: var(--amber); color: white; }
.car-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.96); display: grid; place-items: center;
  cursor: pointer; transition: all .2s var(--ease);
  backdrop-filter: blur(10px); border: none;
}
.car-fav:hover { background: white; transform: scale(1.08); }
.car-fav svg { width: 17px; height: 17px; stroke: var(--ink); fill: none; stroke-width: 2; }
.car-fav.on svg { fill: var(--red); stroke: var(--red); }

.car-body { padding: 20px 4px 4px; }
.car-title {
  font-size: 18px; font-weight: 600; color: var(--ink);
  letter-spacing: -.014em; line-height: 1.25; margin: 0 0 4px;
  display: flex; justify-content: space-between; align-items: start; gap: 12px;
}
.car-sub {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-2);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em;
}
.car-meta {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  font-size: 12.5px; color: var(--text);
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
}
.car-meta span { display: inline-flex; align-items: center; gap: 5px; }
.car-meta svg { color: var(--text-2); }
.car-foot { display: flex; align-items: end; justify-content: space-between; }
.car-price {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; color: var(--ink); letter-spacing: -.025em; line-height: 1;
}
.car-price small {
  display: block; font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; color: var(--text-2);
  margin-top: 5px; letter-spacing: .12em; text-transform: uppercase;
}
.car-inquire {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--r-pill);
  transition: all .15s var(--ease);
}
.car:hover .car-inquire { background: var(--ink); color: white; border-color: var(--ink); }

/* Compact card variant (for editorial side panel) */
.car.compact { background: rgba(255,255,255,.04); border-radius: var(--r-4); overflow: hidden; padding: 14px; }
.car.compact .car-img-wrap { border-radius: var(--r-3); aspect-ratio: 16/10; }
.car.compact .car-body { padding: 14px 4px 4px; }
.car.compact .car-title { color: white; font-size: 16px; }
.car.compact .car-sub { color: rgba(255,255,255,.5); }
.car.compact .car-meta { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.08); }
.car.compact .car-meta svg { color: rgba(255,255,255,.5); }
.car.compact .car-price { color: white; }
.car.compact .car-price small { color: rgba(255,255,255,.5); }
.car.compact .car-inquire { color: white; border-color: rgba(255,255,255,.18); }
.car.compact:hover .car-inquire { background: white; color: var(--ink); border-color: white; }

/* ============ BRAND WALL ============ */
.brand-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-4); overflow: hidden; }
@media (max-width: 900px){ .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px){ .brand-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-cell { background: var(--bg); padding: 28px 12px; text-align: center; transition: all .15s var(--ease); color: inherit; }
.brand-cell:hover { background: var(--bg-soft); }
.brand-cell-name { font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -.012em; }
.brand-cell-count { margin-top: 4px; font-family: var(--font-mono); font-size: 11px; color: var(--text-2); }

/* ============ CATEGORY ============ */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 900px){ .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-4); padding: 32px 26px; transition: all .2s var(--ease); position: relative; color: inherit; }
.cat:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cat svg { width: 30px; height: 30px; color: var(--green); margin-bottom: 20px; stroke-width: 1.5; }
.cat h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; line-height: 1; margin: 0 0 6px; letter-spacing: -.02em; color: var(--ink); }
.cat .ct { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.cat .arrow { position: absolute; top: 32px; right: 26px; opacity: .35; transition: all .2s var(--ease); color: var(--ink); }
.cat:hover .arrow { opacity: 1; transform: translateX(4px); }
.cat.featured {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-d) 100%);
  border-color: transparent; color: white; box-shadow: 0 12px 32px rgba(242,107,38,.25);
}
.cat.featured h3, .cat.featured svg, .cat.featured .arrow { color: white; }
.cat.featured .ct { color: rgba(255,255,255,.7); }
.cat.featured svg { color: #FFB37A; }
.cat.featured:hover { box-shadow: 0 20px 50px rgba(242,107,38,.4); }

/* ============ EDITORIAL ============ */
.editorial { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 1000px){ .editorial { grid-template-columns: 1fr; gap: 48px; } }
.editorial-text h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -.025em; margin: 16px 0 22px; color: white; }
.editorial-text h2 .it { font-style: italic; color: #FFB37A; }
.editorial-text p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.74); margin-bottom: 16px; }
.editorial-bullets { list-style: none; margin: 28px 0 0; }
.editorial-bullets li {
  display: flex; gap: 14px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.76);
}
.editorial-bullets li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.editorial-bullets li strong { color: white; font-weight: 600; }
.editorial-bullets li > svg { color: #34D399; margin-top: 2px; }

/* ============ MARKETS ============ */
.markets { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px){ .markets { grid-template-columns: repeat(2, 1fr); } }
.market-cell { padding: 32px 28px; border-right: 1px solid var(--line); transition: background .15s var(--ease); color: inherit; }
.market-cell:last-child { border-right: none; }
.market-cell:hover { background: var(--bg-soft); }
@media (max-width: 900px){ .market-cell:nth-child(even){ border-right: none; } .market-cell { border-bottom: 1px solid var(--line); } }
.market-cell .flag { font-size: 32px; line-height: 1; margin-bottom: 16px; }
.market-cell .name { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; }
.market-cell .port { margin-top: 6px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-2); text-transform: uppercase; letter-spacing: .08em; }
.market-cell .days { margin-top: 16px; font-size: 13px; color: var(--text); display: inline-flex; align-items: center; gap: 6px; }
.market-cell .days svg { color: var(--green); }

/* ============ PROCESS ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
@media (max-width: 900px){ .process { grid-template-columns: 1fr 1fr; gap: 28px; } }
.process-step { position: relative; padding-top: 28px; border-top: 2px solid var(--ink); }
.section.dark .process-step { border-top-color: #34D399; }
.process-step .num { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--green); margin-bottom: 10px; }
.section.dark .process-step .num { color: #FFB37A; }
.process-step h3 { font-size: 19px; margin: 0 0 10px; letter-spacing: -.015em; }
.process-step p { font-size: 14px; color: var(--text); line-height: 1.6; }
.section.dark .process-step p { color: rgba(255,255,255,.62); }

/* ============ MEDIA MENTIONS (社会证明) ============ */
.media-band { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.media-row { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; opacity: .55; }
.media-row .m-item { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ink); letter-spacing: -.02em; transition: opacity .2s; }
.media-row .m-item:hover { opacity: 1; }
.media-band .m-lbl { text-align: center; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-bottom: 24px; font-weight: 600; }

/* ============ TESTIMONIAL ============ */
.testimonial { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
@media (max-width: 900px){ .testimonial { grid-template-columns: 1fr; } }
.testimonial-quote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(28px, 3vw, 42px); line-height: 1.25; letter-spacing: -.02em; color: var(--ink); }
.testimonial-quote::before { content: '"'; font-size: 4em; line-height: 0; color: var(--green); margin-right: -.1em; vertical-align: -.4em; }
.testimonial-by { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.testimonial-by .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-bg); display: grid; place-items: center; font-family: var(--font-display); color: var(--green); font-style: italic; font-size: 20px; }
.testimonial-by .who { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-by .who small { display: block; font-weight: 500; color: var(--text-2); font-size: 12.5px; margin-top: 2px; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 96px 0 28px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1320px; height: 1px; background: linear-gradient(90deg, transparent, rgba(242,107,38,.5), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 800px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 22px; }
.footer .logo-big { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 32px; color: white; letter-spacing: -.02em; line-height: 1; margin-bottom: 20px; }
.footer p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.58); margin-bottom: 12px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .15s var(--ease); }
.footer ul li a:hover { color: #FFB37A; }
.footer-bot { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,.4); }
.seo-cluster { margin-top: 24px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
.seo-cluster summary { cursor: pointer; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em; list-style: none; text-align: center; }
.seo-cluster summary::-webkit-details-marker { display: none; }
.seo-cluster .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; justify-content: center; }
.seo-cluster .chips a { font-size: 11px; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-pill); padding: 5px 10px; transition: all .15s var(--ease); }
.seo-cluster .chips a:hover { color: white; border-color: rgba(255,255,255,.3); }

/* ============ LIST PAGE ============ */
.list-page { display: grid; grid-template-columns: 290px 1fr; gap: 40px; padding: 56px 0 96px; }
@media (max-width: 900px){ .list-page { grid-template-columns: 1fr; gap: 24px; } }
.filters { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-4); padding: 28px; height: fit-content; position: sticky; top: 96px; }
.filters h4 { font-size: 11px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.fgroup { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line-2); }
.fgroup:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fgroup select { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-2); background: white; font-size: 14px; }
.fchips { display: flex; flex-wrap: wrap; gap: 6px; }
.fchips a { padding: 7px 13px; font-size: 12.5px; border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--text); }
.fchips a.active { background: var(--ink); color: white; border-color: var(--ink); }
.fchips a:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

.list-top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.list-top .count { font-family: var(--font-display); font-weight: 400; font-size: 40px; color: var(--ink); letter-spacing: -.025em; line-height: 1; }
.list-top .count small { display: block; margin-top: 6px; font-family: var(--font-sans); font-size: 13px; color: var(--text-2); }
.list-top select { padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--r-2); font-size: 13.5px; background: white; }

/* ============ DETAIL ============ */
.breadcrumb { padding: 28px 0; font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { color: var(--subtle); }
.breadcrumb .now { color: var(--ink); font-weight: 500; }

.detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; padding-bottom: 96px; }
@media (max-width: 1000px){ .detail { grid-template-columns: 1fr; } }

.gallery-main { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: var(--r-4); position: relative; overflow: hidden; box-shadow: var(--shadow-3); }
.gallery-main .ovrly { position: absolute; left: 20px; bottom: 20px; padding: 8px 16px; background: rgba(26,31,34,.85); color: white; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600; backdrop-filter: blur(10px); display: inline-flex; align-items: center; gap: 8px; }
.thumb-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 12px; }
.thumb { aspect-ratio: 1/1; background-size: cover; background-position: center; border-radius: var(--r-2); cursor: pointer; opacity: .7; transition: all .2s var(--ease); border: 2px solid transparent; }
.thumb:hover { opacity: 1; }
.thumb.on { opacity: 1; border-color: var(--ink); }
.media-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.media-tool { padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-3); font-size: 13px; color: var(--text); cursor: pointer; background: white; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .15s var(--ease); }
.media-tool:hover { border-color: var(--ink); color: var(--ink); }
.media-tool svg { color: var(--green); }

.d-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.d-bd { padding: 6px 12px; border-radius: 4px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.d-bd.ev { background: var(--green); color: white; }
.d-bd.gray { background: var(--bg-soft); color: var(--text); }
.d-bd.live { background: var(--amber-bg); color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
.d-bd.live::before { content:''; width:6px; height:6px; background: var(--amber); border-radius:50%; }

.d-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; letter-spacing: -.025em; color: var(--ink); margin: 4px 0 16px; }
.d-meta { display: flex; flex-wrap: wrap; gap: 14px 28px; font-size: 14px; color: var(--text); padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.d-meta span { display: inline-flex; align-items: center; gap: 6px; }
.d-meta svg { color: var(--green); }

.price-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--r-4); margin-bottom: 16px; box-shadow: var(--shadow-1); }
.fx-tabs { display: inline-flex; padding: 3px; background: var(--bg-soft); border-radius: var(--r-pill); margin-bottom: 16px; }
.fx-tabs button { padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--text-2); border-radius: var(--r-pill); }
.fx-tabs button.on { background: var(--ink); color: white; }
.fx-label { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: .14em; text-transform: uppercase; }
.fx-price { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5vw, 56px); color: var(--ink); margin: 8px 0 18px; letter-spacing: -.04em; line-height: 1; }
.fx-price small { font-family: var(--font-sans); font-size: 14px; color: var(--text-2); font-weight: 600; letter-spacing: .08em; }
.fx-break { padding-top: 18px; border-top: 1px solid var(--line); }
.fx-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; color: var(--text); }
.fx-row strong { color: var(--ink); font-weight: 600; }

.why-block { background: var(--bg-soft); border-radius: var(--r-4); padding: 22px 26px; margin-bottom: 16px; }
.why-block h4 { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.why-block ul { list-style: none; }
.why-block li { display: flex; gap: 10px; padding: 6px 0; font-size: 13.5px; line-height: 1.55; color: var(--text); }
.why-block li svg { color: var(--green); margin-top: 3px; }

.talk-card { background: var(--ink); color: white; border-radius: var(--r-4); padding: 26px; box-shadow: var(--shadow-3); }
.talk-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: white; }
.ch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ch { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); border-radius: var(--r-3); color: white; transition: all .2s var(--ease); }
.ch:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.ch-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; }
.ch.wa .ch-icon { background: #25D366; }
.ch.tg .ch-icon { background: #229ED9; }
.ch.wc .ch-icon { background: #07C160; }
.ch.em .ch-icon { background: var(--amber); }
.ch-name { font-size: 13.5px; font-weight: 600; }
.ch-sub { font-size: 11px; opacity: .65; }
.talk-foot { font-size: 11px; opacity: .55; margin-top: 14px; text-align: center; letter-spacing: .08em; }

.specs { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.specs h3 { font-size: 11px; font-weight: 700; color: var(--text-2); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 56px; }
@media (max-width: 800px){ .specs-grid { grid-template-columns: 1fr; gap: 0; } }
.specs-grid .row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.specs-grid .row .k { color: var(--text-2); }
.specs-grid .row .v { color: var(--ink); font-weight: 600; }

/* ============ LONGFORM ============ */
.longform { max-width: 760px; margin: 0 auto; padding: 64px 0; }
.longform h2 { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); margin: 56px 0 16px; }
.longform h3 { font-size: 20px; margin: 36px 0 12px; color: var(--ink); }
.longform p { font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 16px; }
.longform ul, .longform ol { padding-left: 28px; margin: 16px 0 20px; }
.longform li { margin-bottom: 8px; font-size: 16px; line-height: 1.65; color: var(--text); }
.longform strong { color: var(--ink); font-weight: 600; }
.longform a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 350ms; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

[dir="rtl"] .car-meta { direction: rtl; }
::selection { background: var(--green); color: white; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ====== HERO MEGA (luxury / editorial) ====== */
.hero.hero-mega { padding: 100px 0 56px; min-height: auto; }
.hero.hero-mega .hero-bg { filter: brightness(.48) saturate(1.05) contrast(1.05); transform: scale(1.04); }
.hero.hero-mega .hero-overlay {
  background:
    linear-gradient(180deg, rgba(26,31,34,.42) 0%, rgba(26,31,34,.70) 55%, rgba(26,31,34,.92) 100%),
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(242,107,38,.20), transparent 60%);
}
.hero-mega-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 6.4vw, 88px); line-height: 1;
  letter-spacing: -.04em; color: white; margin: 0 0 28px;
}
.hero-mega-h1 .line { display: block; }
.hero-mega-h1 .it { font-style: italic; color: #FFB37A; }

/* Hero scrolling ticker */
.hero-ticker { display: none !important;
  
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0; overflow: hidden; backdrop-filter: blur(6px);
}
.ticker-track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.62); letter-spacing: .08em; text-transform: uppercase;
  animation: ticker-scroll 56s linear infinite;
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker-scroll {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ====== LOGO RIBBON ====== */
.logo-ribbon {
  background: var(--bg); padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.logo-ribbon .m-lbl {
  text-align: center; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-2);
  margin-bottom: 32px; font-weight: 700;
}
.logo-row {
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap; opacity: .55;
}
.logo-row span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--ink); letter-spacing: -.02em;
  transition: opacity .2s var(--ease); cursor: default;
}
.logo-row span:hover { opacity: 1; }

/* ====== WORLD MAP STYLE — region cards ====== */
.world-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1000px){ .world-grid { grid-template-columns: 1fr 1fr; } }
.region-card {
  padding: 32px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-4);
  transition: all .25s var(--ease);
}
.region-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,179,122,.4);
  transform: translateY(-3px);
}
.region-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 56px; color: #FFB37A; letter-spacing: -.03em; line-height: 1;
}
.region-num small {
  display: block; margin-top: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600;
}
.region-card h3 {
  margin: 24px 0 18px;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 22px; color: white; letter-spacing: -.015em;
}
.region-card ul {
  list-style: none; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.region-card ul li {
  padding: 5px 0; font-size: 13.5px;
  color: rgba(255,255,255,.75);
}

/* ====== NEWS MODULE (home) ====== */
.news-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
}
@media (max-width: 900px){ .news-grid { grid-template-columns: 1fr; } }
.news-hero {
  display: block; color: inherit; text-decoration: none;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-4);
  overflow: hidden; transition: all .3s var(--ease);
}
.news-hero:hover { box-shadow: var(--shadow-3); transform: translateY(-4px); border-color: var(--green-line); }
.news-hero-img {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  background-color: var(--bg-soft-2);
}
.news-hero-body { padding: 28px 32px 32px; }
.news-hero .news-cat {
  display: inline-block; padding: 4px 10px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--green-bg); color: var(--green);
  border-radius: var(--r-1); margin-bottom: 16px;
}
.news-hero h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px;
}
.news-hero p {
  font-size: 15px; color: var(--text); line-height: 1.55; margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-hero .news-meta {
  display: flex; gap: 8px; font-family: var(--font-mono); font-size: 11px;
  color: var(--text-2); letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
.news-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-4); overflow: hidden; }
.news-item {
  padding: 22px 24px; background: var(--bg); color: inherit;
  transition: background .15s var(--ease);
  display: block;
}
.news-item:hover { background: var(--bg-soft); }
.news-item-cat {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green);
  margin-bottom: 8px;
}
.news-item-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 16px; line-height: 1.3; color: var(--ink); letter-spacing: -.015em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 6px;
}
.news-item-meta {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--text-2); letter-spacing: .08em; text-transform: uppercase;
}

/* ====== HERO FLOATS ====== */
.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-float-chip { display: none !important;
  /* hidden for clarity */
  
  position: absolute;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.85);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: float-up 6s var(--ease) infinite;
}
@keyframes float-up {
  0%,100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(-8px); opacity: 1; }
}
@media (max-width: 1000px){ .hero-float-chip { display: none !important;
  /* hidden for clarity */
   display: none; } }

/* ====== LIVE FEED ticker (just arrived) ====== */
.live-feed {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lf-row { position: relative; overflow: hidden; padding-left: 220px; height: 48px; }
.lf-pulse {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 10;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: var(--bg-dark);
  border-right: 1px solid rgba(255,255,255,.1);
  height: 100%;
  border-radius: 0;
}
.lf-pulse-tmp {
  border: 1px solid rgba(255,179,122,.3);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFB37A;
  font-weight: 700;
}
.pulse-dot {
  width: 7px; height: 7px; background: #FFB37A; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,179,122,.2);
  animation: pulse 1.8s infinite;
}
.lf-track {
  display: flex; gap: 32px;
  animation: ticker-scroll 60s linear infinite;
  white-space: nowrap;
  position: relative; z-index: 1;
  align-items: center;
  height: 100%;
}
.lf-item {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); text-decoration: none;
}
.lf-thumb {
  width: 48px; height: 36px;
  background-size: cover; background-position: center;
  border-radius: var(--r-2);
  flex-shrink: 0;
}
.lf-title {
  font-size: 13px; font-weight: 600; color: white;
  letter-spacing: -.01em;
}
.lf-meta {
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,.55); letter-spacing: .04em;
}
.lf-meta strong { color: #FFB37A; font-weight: 700; }

/* ====== SHOWCASE SPLIT ====== */
.showcase { padding: 96px 0; background: var(--bg); }
.showcase-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 1000px){ .showcase-grid { grid-template-columns: 1fr; gap: 40px; } }
.showcase-image {
  aspect-ratio: 5/4;
  background-size: cover; background-position: center;
  border-radius: var(--r-5);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-3);
}
.showcase-badge {
  position: absolute; top: 28px; left: 28px;
  padding: 8px 16px;
  background: rgba(26,31,34,.85);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}

/* ====== BRAND WALL V2 — wordmark transparency ====== */
.brand-wall-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
@media (max-width: 1000px){ .brand-wall-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px){ .brand-wall-v2 { grid-template-columns: 1fr; } }
.brand-tile {
  aspect-ratio: 5/3;
  position: relative; overflow: hidden;
  border-radius: var(--r-4);
  text-decoration: none; color: white;
  transition: all .35s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, #1A1F22 0%, #2A2F32 60%, #0B4830 100%);
  border: 1px solid rgba(255,255,255,.06);
}
.brand-tile::before {
  content: ; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255,179,122,.18), transparent 60%),
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,.02) 50%, transparent 100%);
  pointer-events: none; transition: opacity .35s var(--ease);
}
.brand-tile:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #0B6B47 0%, #F26B26 60%, #34D399 100%);
  border-color: rgba(255,179,122,.4);
  box-shadow: 0 24px 60px rgba(242,107,38,.30);
}
.brand-tile:hover::before { opacity: 0; }

.brand-tile-wordmark {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -.025em; line-height: 1.05;
  color: rgba(255,255,255,.5);
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.brand-tile:hover .brand-tile-wordmark {
  color: rgba(255,255,255,.95);
}

.brand-tile-bottom {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
}
.brand-tile-count {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
  transition: color .3s var(--ease);
}
.brand-tile:hover .brand-tile-count { color: rgba(255,255,255,.85); }
.brand-tile-arrow {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; display: grid; place-items: center;
  transition: all .3s var(--ease);
  color: rgba(255,255,255,.6);
}
.brand-tile:hover .brand-tile-arrow {
  background: white; color: var(--ink); border-color: white;
  transform: rotate(-25deg) scale(1.08);
}

/* Variant subtle backgrounds (6 styles) — geometric / typography emphasis */
.brand-tile.brand-style-0 { background: linear-gradient(135deg, #1A1F22 0%, #2A2F32 100%); }
.brand-tile.brand-style-1 { background: linear-gradient(135deg, #0B4830 0%, #1A1F22 100%); }
.brand-tile.brand-style-2 { background: linear-gradient(160deg, #0F2D24 0%, #163E32 50%, #1A1F22 100%); }
.brand-tile.brand-style-3 { background: linear-gradient(135deg, #1A1F22 0%, #0B4830 60%, #0B6B47 100%); }
.brand-tile.brand-style-4 { background: linear-gradient(135deg, #163E32 0%, #1A1F22 100%); }
.brand-tile.brand-style-5 { background: linear-gradient(135deg, #1A1F22 0%, #2A2F32 60%, #1A1F22 100%); }

/* Optional decoration: large faded character behind wordmark */
.brand-tile-wordmark::before {
  content: ; /* keep empty; could add monogram via JS */
}


/* ====== BRAND WALL V3 — compact aggregated brand cards ====== */
.brand-wall-v3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1200px){ .brand-wall-v3 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px){  .brand-wall-v3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px){  .brand-wall-v3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px){  .brand-wall-v3 { grid-template-columns: 1fr; } }

.brand-card {
  display: flex; flex-direction: column;
  padding: 18px 20px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  text-decoration: none; color: inherit;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
  aspect-ratio: 1/1;
  min-height: 200px;
}
.brand-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}
.brand-card::after {
  content: ; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.brand-card:hover::after { transform: scaleX(1); }

.brand-card-top {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--text-2);
  margin-bottom: 16px;
}
.brand-code { color: var(--ink); }
.brand-est { opacity: .7; }

.brand-card-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.05; letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 4px;
}

.brand-card-country {
  font-size: 12.5px; color: var(--text-2);
  line-height: 1.4;
  margin-bottom: auto;
  padding-bottom: 14px;
}

.brand-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1;
}
.brand-card-count {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -.01em;
  line-height: 1;
  flex-shrink: 0;
}
.brand-card-wordmark {
  flex: 1;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--text-2);
  opacity: .28;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .3s ease;
}
.brand-card:hover .brand-card-wordmark { opacity: .22; }

.brand-card-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2, #f4f4f4);
  color: var(--text-2);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.brand-card:hover .brand-card-arrow {
  background: var(--ink); color: white;
  transform: translateX(2px);
}

/* Brand card logo background — semi-transparent */
.brand-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: 26%;
  background-image: var(--logo-url);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: .72;
  pointer-events: none;
  filter: grayscale(.1);
  transition: transform .4s ease, opacity .3s ease, filter .3s ease;
}
.brand-card-top, .brand-card-name, .brand-card-country, .brand-card-bottom {
  position: relative; z-index: 1;
}
.brand-card:hover::before {
  opacity: .95;
  transform: translate(-50%, -50%) scale(1.05);
  filter: grayscale(0);
}
.brand-card-wordmark { display: none; }

/* logo-center-override-2026-06-13-v3 */
.brand-card-top,
.brand-card-name,
.brand-card-country { position: relative; z-index: 2; }
.brand-card:hover .brand-card-wordmark { opacity: .55; }
.brand-card:hover .brand-card-arrow { background: var(--ink); color: #fff; transform: translateX(2px); }

/* cat-grid-v2 magazine cards 2026-06-13 */
.cat-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cat-v2 {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 2px 8px rgba(26,31,34,.08);
}
.cat-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(26,31,34,.18);
}
.cat-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cat-img);
  background-size: cover;
  background-position: center;
  background-color: #1A1F22;
  transition: transform .7s ease;
  z-index: 0;
}
.cat-v2:hover::before { transform: scale(1.07); }
.cat-v2-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(26,31,34,.92) 0%, rgba(26,31,34,.55) 38%, rgba(26,31,34,.08) 70%, rgba(26,31,34,.0) 100%);
  transition: background .35s ease;
}
.cat-v2:hover .cat-v2-mask {
  background:
    linear-gradient(to top, rgba(26,31,34,.96) 0%, rgba(26,31,34,.70) 40%, rgba(26,31,34,.20) 75%, rgba(26,31,34,.05) 100%);
}
.cat-v2.is-ev::before { background-color: var(--green,#F26B26); }
.cat-v2.is-ev .cat-v2-mask {
  background:
    linear-gradient(to top, rgba(8,80,53,.92) 0%, rgba(8,80,53,.45) 50%, rgba(8,80,53,.0) 100%);
}
.cat-v2-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 20px;
}
.cat-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-v2-num {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: .12em;
  opacity: .65;
}
.cat-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.cat-v2-pill .icon { width: 11px; height: 11px; }
.cat-v2-text {
  display: flex;
  flex-direction: column;
}
.cat-v2 h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 6px;
  color: #fff;
}
.cat-v2-tag {
  font-size: 12px;
  letter-spacing: .02em;
  opacity: .72;
  margin: 0 0 14px;
  line-height: 1.35;
}
.cat-v2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.cat-v2-count {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .82;
}
.cat-v2-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.cat-v2:hover .cat-v2-arrow {
  background: #fff;
  color: var(--ink, #1A1F22);
  transform: translateX(2px);
}
.cat-v2:hover .cat-v2-arrow .icon { color: var(--ink, #1A1F22); }
@media (max-width: 1100px) { .cat-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cat-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px)  { .cat-grid-v2 { grid-template-columns: 1fr; } .cat-v2 { aspect-ratio: 16/10; } }
/* cat-grid-v2-end */

/* ===== news pages v2 2026-06-13 ===== */
.news-hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink, #1A1F22);
}
.news-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.36) saturate(1.05);
}
.news-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,31,34,.4) 0%, rgba(26,31,34,.85) 100%);
}
.news-hero-wrap { position: relative; z-index: 2; }
.breadcrumb-light {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono,monospace);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.6); margin-bottom: 28px;
}
.breadcrumb-light a { color: rgba(255,255,255,.78); text-decoration: none; }
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-light .now { color: rgba(255,255,255,.5); }
.breadcrumb-light .icon { width: 12px; height: 12px; opacity: .5; }
.news-hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.8);
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  margin-bottom: 24px;
}
.news-hero-meta .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FFB37A;
  box-shadow: 0 0 8px #FFB37A;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% {opacity:1} 50% {opacity:.4} }
.news-hero-h1 {
  font-family: var(--font-display);
  font-weight: 400; font-size: clamp(40px,6vw,80px); line-height: 1.02;
  letter-spacing: -.025em; margin: 0 0 20px; color: #fff;
}
.news-hero-h1 .it { font-style: italic; color: #FFB37A; }
.news-hero-sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.78);
  max-width: 680px; margin: 0;
}
.news-hero-sub a { color: #FFB37A; text-decoration: none; border-bottom: 1px solid rgba(255,179,122,.4); }
.news-hero-sub a:hover { border-color: #FFB37A; }

/* Featured */
.news-feat {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px;
  align-items: center; color: inherit; text-decoration: none;
}
.news-feat-img {
  position: relative; aspect-ratio: 5/3; border-radius: 16px;
  background-size: cover; background-position: center;
  box-shadow: 0 12px 36px rgba(26,31,34,.18);
  overflow: hidden;
}
.news-feat-img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,31,34,.85));
}
.news-feat-pill {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  border-radius: 999px; backdrop-filter: blur(10px);
}
.news-feat-pill .dot { width: 7px; height: 7px; background: #FFB37A; border-radius: 50%; }
.news-feat-cat {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.75);
}
.news-feat-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px,3.6vw,48px); line-height: 1.06;
  letter-spacing: -.025em; color: var(--ink); margin: 16px 0 18px;
}
.news-feat-excerpt {
  font-size: 16px; line-height: 1.65; color: var(--text,#3a4540); margin: 0 0 22px;
}
.news-feat-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--text-2,#6b7570);
}
.news-feat-cta {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 2px;
}
.news-feat:hover .news-feat-cta .icon { transform: translateX(4px); }

/* Sticky filter */
.news-filter {
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; position: sticky; top: 76px; z-index: 50;
}
.news-filter .container {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: center;
}
.news-filter-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-2); font-weight: 700; margin-right: 12px;
}
.news-pill {
  padding: 7px 14px; font-size: 12.5px; font-weight: 600;
  color: var(--ink); border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; transition: all .15s ease;
}
.news-pill.is-active { color: #fff; background: var(--ink); border-color: var(--ink); }
.news-pill:hover { border-color: var(--ink); }

/* Grid */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 32px;
}
@media (max-width:1100px) { .news-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:700px)  { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.news-card:hover {
  transform: translateY(-4px); border-color: rgba(26,31,34,.18);
  box-shadow: 0 14px 32px rgba(26,31,34,.1);
}
.news-card-img {
  position: relative; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--bg-soft,#f4f4f0);
}
.news-card-img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,31,34,.55));
}
.news-card-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 10px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  font-family: var(--font-mono,monospace); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  border-radius: 4px; backdrop-filter: blur(8px);
}
.news-card-body { padding: 20px 22px 22px; }
.news-card-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 19px; line-height: 1.25; letter-spacing: -.012em;
  color: var(--ink); margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-excerpt {
  font-size: 14px; line-height: 1.55; color: var(--text);
  margin: 0 0 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.news-card-date {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--text-2);
}
.news-card-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft,#f4f4f0); display: inline-flex;
  align-items: center; justify-content: center; color: var(--text-2);
  transition: all .25s ease;
}
.news-card:hover .news-card-arrow { background: var(--ink); color: #fff; transform: translateX(2px); }

/* Keyword cluster */
.news-kwc {
  background: var(--bg-soft,#f4f4f0); padding: 28px 32px; border-radius: 14px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.news-kwc-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-right: 14px;
}
.news-kwc a {
  padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; transition: all .15s ease;
}
.news-kwc a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Newsletter */
.news-letter {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.news-letter-h {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px,4vw,48px); letter-spacing: -.025em;
  margin: 16px 0 14px; line-height: 1.06;
}
.news-letter-h .it { font-style: italic; color: var(--green,#F26B26); }
.news-letter p { font-size: 15px; color: var(--text-2); margin: 0 0 4px; line-height: 1.55; }
.news-letter form {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px;
}
.news-letter form label {
  font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-2); font-weight: 700;
  display: block; margin-bottom: 8px;
}
.news-letter form input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14.5px; margin-bottom: 14px;
}
.news-letter form .btn { width: 100%; justify-content: center; padding: 13px; }
.news-letter form .muted { font-size: 11.5px; color: var(--text-2); text-align: center; margin-top: 12px; }
.news-letter form .muted a { color: var(--green); }

@media (max-width:900px) {
  .news-feat { grid-template-columns: 1fr; gap: 28px; }
  .news-letter { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== article detail v2 ===== */
.article-hero {
  position: relative; padding: 96px 0 64px; overflow: hidden;
  isolation: isolate; color: #fff; background: var(--ink);
}
.article-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.32) saturate(1.05);
}
.article-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,31,34,.55) 0%, rgba(26,31,34,.95) 100%);
}
.article-hero-wrap { position: relative; z-index: 2; max-width: 920px; }
.article-hero-cat {
  display: inline-block; padding: 5px 12px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; font-family: var(--font-mono,monospace);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.85); margin-bottom: 22px;
}
.article-hero-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px,5vw,68px); line-height: 1.06;
  letter-spacing: -.025em; color: #fff; margin: 0 0 28px;
}
.article-hero-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono,monospace); font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.55);
}

/* Body grid */
.article-body-wrap { padding: 72px 0 56px; }
.article-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 64px;
  align-items: start;
}
@media (max-width:1000px) { .article-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Sticky aside */
.article-aside {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (max-width:1000px) { .article-aside { position: static; } }
.article-toc {
  background: var(--bg-soft,#f4f4f0); border-radius: 12px; padding: 20px 22px;
}
.article-toc-lbl {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 14px;
}
.article-toc ol {
  padding: 0; margin: 0; list-style: none; counter-reset: toc;
}
.article-toc li {
  counter-increment: toc; padding: 8px 0; border-bottom: 1px solid rgba(26,31,34,.06);
  font-size: 13.5px; line-height: 1.4;
}
.article-toc li:last-child { border-bottom: none; }
.article-toc li a {
  color: var(--ink); text-decoration: none; display: block;
  padding-left: 28px; position: relative;
}
.article-toc li a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono,monospace); font-size: 10.5px; font-weight: 700;
  color: var(--green); letter-spacing: .04em;
}
.article-toc li a:hover { color: var(--green); }

.article-share, .article-cta {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px;
}
.article-share-lbl, .article-cta-h {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 12px;
}
.article-share-row { display: flex; gap: 10px; }
.article-share-row a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s ease;
}
.article-share-row a:hover { background: var(--ink); color: #fff; }

.article-cta-h { color: var(--ink); font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: -.01em; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.article-cta p { font-size: 13px; color: var(--text-2); line-height: 1.55; margin: 0 0 14px; }
.article-cta a { color: var(--green); }
.article-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; border-radius: 999px;
  text-decoration: none !important;
}
.article-cta-btn .icon { width: 13px; height: 13px; }

/* Body typography */
.article-body { max-width: 100%; }
.article-body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px,2.6vw,36px); letter-spacing: -.02em; line-height: 1.15;
  color: var(--ink); margin: 56px 0 18px; scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1.25; color: var(--ink); margin: 32px 0 12px;
}
.article-body p { font-size: 17px; line-height: 1.75; color: var(--text); margin: 0 0 22px; }
.article-body ul, .article-body ol { font-size: 16px; line-height: 1.75; color: var(--text); margin: 0 0 22px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a.inline-link {
  color: var(--green,#F26B26); text-decoration: none;
  border-bottom: 1.5px dotted var(--green); padding-bottom: 1px;
  font-weight: 500;
}
.article-body a.inline-link:hover { border-bottom-style: solid; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14.5px; }
.article-body th, .article-body td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.article-body th { background: var(--bg-soft); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--green); padding: 4px 24px;
  font-style: italic; color: var(--text); margin: 28px 0; font-size: 18px;
}

.article-foot {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.article-foot-pub {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2);
}
.article-foot-share { display: flex; gap: 10px; align-items: center; }
.article-foot-share span { font-size: 13px; color: var(--text-2); margin-right: 6px; }
.article-foot-share a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-soft);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
/* ===== /news v2 ===== */

/* ===== about page stats + trust 2026-06-13 ===== */
.stats-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.stat-tile {
  padding: 28px 24px; border-right: 1px solid var(--line);
  text-align: left;
}
.stat-tile:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px,4vw,54px); line-height: 1; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 12px;
}
.stat-num .plus { color: var(--green,#F26B26); }
.stat-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--ink); margin-bottom: 4px;
}
.stat-sub {
  font-size: 12.5px; color: var(--text-2); line-height: 1.4;
}
@media (max-width:1100px) { .stats-strip { grid-template-columns: repeat(3,1fr); } .stat-tile:nth-child(3n) { border-right: none; } .stat-tile:nth-child(n+4) { border-top: 1px solid var(--line); } }
@media (max-width:600px) { .stats-strip { grid-template-columns: repeat(2,1fr); } .stat-tile:nth-child(2n) { border-right: none; } .stat-tile:nth-child(odd) { border-right: 1px solid var(--line); } .stat-tile:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* Trust tiles */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-top: 48px; border-radius: 16px; overflow: hidden;
}
.trust-tile {
  background: var(--bg); padding: 32px 28px;
  position: relative;
  transition: background .2s ease;
}
.trust-tile:hover { background: var(--bg-soft, #f4f4f0); }
.trust-num {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; color: var(--green,#F26B26); font-weight: 700;
  margin-bottom: 12px;
}
.trust-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1.2; letter-spacing: -.015em;
  color: var(--ink); margin-bottom: 12px;
}
.trust-tile p {
  font-size: 14px; line-height: 1.6; color: var(--text); margin: 0;
}
.trust-tile p strong { color: var(--ink); font-weight: 600; }
@media (max-width:900px)  { .trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px)  { .trust-grid { grid-template-columns: 1fr; } }
/* ===== /about stats+trust ===== */

/* ===== dealer page v2 2026-06-13 ===== */
/* Hero */
.dealer-hero {
  position: relative; padding: 96px 0 72px; overflow: hidden;
  isolation: isolate; color: #fff; background: var(--ink, #1A1F22);
}
.dealer-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.36) saturate(1.05);
}
.dealer-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,31,34,.35) 0%, rgba(26,31,34,.92) 100%);
}
.dealer-hero-wrap { position: relative; z-index: 2; }
.dealer-hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; margin-bottom: 24px;
}
.dealer-hero-pill .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FFB37A;
  box-shadow: 0 0 8px #FFB37A;
}
.dealer-hero-h1 {
  font-family: var(--font-display);
  font-weight: 400; font-size: clamp(40px, 7vw, 96px); line-height: 1.02;
  letter-spacing: -.025em; margin: 0 0 20px; color: #fff;
}
.dealer-hero-h1 .it { font-style: italic; color: #FFB37A; }
.dealer-hero-sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.78);
  max-width: 720px; margin: 0 0 32px;
}
.dealer-hero-sub a { color: #FFB37A; text-decoration: none; border-bottom: 1px solid rgba(255,179,122,.4); }
.dealer-hero-sub a:hover { border-color: #FFB37A; }
.dealer-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-on-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-size: 14px; font-weight: 600;
  color: #fff; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  text-decoration: none; transition: all .2s ease;
}
.btn-ghost-on-dark:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* Stats strip */
.dealer-stats { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.dealer-stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px;
}
.dealer-stats-grid > div { text-align: center; }
.dealer-stats-grid .num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 10px;
}
.dealer-stats-grid .plus { color: var(--green); }
.dealer-stats-grid .lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--text-2);
}
@media (max-width:1000px) { .dealer-stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:600px) { .dealer-stats-grid { grid-template-columns: repeat(2,1fr); } }

.dealer-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.06; letter-spacing: -.028em;
  margin-top: 14px;
}
.dealer-h2 .it { font-style: italic; color: var(--green); }
.dealer-sub {
  font-size: 15.5px; color: var(--text-2); margin-top: 18px;
  max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.55;
}

/* Compare table */
.compare-table {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  margin-top: 40px; background: #fff;
}
.compare-head, .compare-row {
  display: grid; grid-template-columns: 1.5fr 1.2fr 1.4fr;
}
.compare-head {
  background: var(--ink); color: #fff;
}
.compare-head > div {
  padding: 16px 24px; font-family: var(--font-mono,monospace);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.compare-head .col-retail { color: rgba(255,255,255,.6); }
.compare-head .col-dealer { color: #FFB37A; }
.compare-row { border-top: 1px solid var(--line); transition: background .15s ease; }
.compare-row:hover { background: var(--bg-soft, #f9f9f6); }
.compare-row > div { padding: 16px 24px; font-size: 14.5px; line-height: 1.45; }
.cell-feat { font-weight: 600; color: var(--ink); }
.cell-retail { color: var(--text-2); display: flex; gap: 8px; align-items: flex-start; }
.cell-retail .icon { color: #aaa; flex-shrink: 0; margin-top: 3px; }
.cell-dealer { color: var(--ink); display: flex; gap: 8px; align-items: flex-start; }
.cell-dealer .icon { color: var(--green); flex-shrink: 0; margin-top: 3px; }
@media (max-width:800px) {
  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; gap: 0; padding: 18px 22px; }
  .compare-row > div { padding: 6px 0; }
  .cell-feat { font-size: 15px; }
}

/* Calculator */
.calc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; margin-top: 40px; max-width: 1100px; margin-left: auto; margin-right: auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px;
}
.calc-controls > .calc-field { margin-bottom: 22px; }
.calc-field label {
  display: block; font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 12px;
}
.calc-field input[type="range"] {
  width: 100%; accent-color: var(--green);
}
.calc-volume-display, .calc-price-display {
  margin-top: 8px; font-family: var(--font-display);
  font-size: 22px; color: var(--ink); letter-spacing: -.015em;
}
.calc-toggle { display: flex; gap: 16px; }
.calc-toggle label {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--ink); text-transform: none; letter-spacing: 0;
}
.calc-toggle input { accent-color: var(--green); }
.calc-results {
  background: var(--bg-soft, #f4f4f0); border-radius: 12px;
  padding: 26px; display: flex; flex-direction: column; gap: 18px;
}
.calc-result-item {
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.calc-result-item:last-child { border-bottom: none; padding-bottom: 0; }
.calc-result-item.highlight {
  background: var(--ink); color: #fff; padding: 18px 22px;
  border-radius: 10px; border: none;
}
.calc-result-lbl {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 6px;
}
.calc-result-item.highlight .calc-result-lbl { color: #FFB37A; }
.calc-result-val {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; line-height: 1; letter-spacing: -.025em;
  color: var(--ink);
}
.calc-result-item.highlight .calc-result-val { color: #fff; font-size: 36px; }
.calc-result-note {
  margin-top: 4px; font-size: 11.5px; color: rgba(255,255,255,.65);
}
.calc-disclaimer {
  grid-column: 1 / -1; margin: 14px 0 0; padding: 14px 18px;
  background: var(--bg-soft, #f4f4f0); border-left: 3px solid var(--green);
  border-radius: 6px; font-size: 13px; color: var(--text-2); line-height: 1.55;
  display: flex; gap: 10px; align-items: flex-start;
}
.calc-disclaimer .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
@media (max-width:900px) { .calc-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; } }

/* Benefits grid */
.dealer-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px;
}
.dealer-benefit {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px; transition: all .25s ease;
}
.dealer-benefit:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,31,34,.08); border-color: var(--ink); }
.dealer-benefit .icon { color: var(--green); }
.dealer-benefit h3 {
  margin: 18px 0 8px; font-family: var(--font-display); font-weight: 400;
  font-size: 20px; letter-spacing: -.015em; color: var(--ink); line-height: 1.2;
}
.dealer-benefit p { font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width:1000px) { .dealer-benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px)  { .dealer-benefits { grid-template-columns: 1fr; } }

/* Tiers */
.dealer-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1180px; margin: 40px auto 0;
}
.dealer-tier {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 30px; position: relative; transition: all .25s ease;
}
.dealer-tier:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(26,31,34,.1); }
.dealer-tier.is-featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 14px 32px rgba(26,31,34,.18); }
.dealer-tier-flag {
  position: absolute; top: -12px; left: 30px;
  background: var(--green); color: #fff; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 999px;
}
.dealer-tier-name {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--green);
}
.dealer-tier.is-featured .dealer-tier-name { color: #FFB37A; }
.dealer-tier-discount {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; letter-spacing: -.022em; line-height: 1.1;
  margin: 14px 0 8px;
}
.dealer-tier-vol {
  font-size: 13px; color: var(--text-2); margin-bottom: 24px;
}
.dealer-tier.is-featured .dealer-tier-vol { color: rgba(255,255,255,.65); }
.dealer-tier ul {
  list-style: none; padding: 18px 0 0; margin: 0;
  border-top: 1px solid var(--line-2);
}
.dealer-tier.is-featured ul { border-top-color: rgba(255,255,255,.12); }
.dealer-tier li {
  display: flex; gap: 10px; padding: 8px 0; font-size: 13.5px; line-height: 1.4;
}
.dealer-tier li.is-minus { opacity: .35; }
.dealer-tier li .icon { flex-shrink: 0; margin-top: 1px; color: var(--green); }
.dealer-tier.is-featured li .icon { color: #FFB37A; }
.dealer-tier.is-featured li.is-minus .icon { color: rgba(255,255,255,.4); }
@media (max-width:900px) { .dealer-tiers { grid-template-columns: 1fr; gap: 18px; } }

/* Process */
.dealer-process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 40px;
}
.dealer-step {
  background: var(--bg); border-radius: 14px; padding: 28px 26px;
  border: 1px solid var(--line); transition: all .2s ease;
}
.dealer-step:hover { border-color: var(--green); }
.dealer-step .step-num {
  font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em;
  color: var(--green); font-weight: 700; margin-bottom: 14px;
}
.dealer-step h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; letter-spacing: -.015em; color: var(--ink); margin: 0 0 10px;
}
.dealer-step p { font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width:900px) { .dealer-process { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .dealer-process { grid-template-columns: 1fr; } }

/* Markets 19 */
.dealer-markets {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin-top: 40px;
}
.dealer-market {
  background: var(--bg); padding: 22px 16px; text-align: center;
  transition: background .15s ease;
}
.dealer-market:hover { background: var(--bg-soft, #f4f4f0); }
.dealer-market.is-open { background: rgba(242,107,38,.06); }
.dealer-market.is-open:hover { background: rgba(242,107,38,.12); }
.dealer-market-flag { font-size: 28px; margin-bottom: 8px; }
.dealer-market-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 16px; letter-spacing: -.015em; color: var(--ink);
}
.dealer-market-status {
  font-family: var(--font-mono,monospace); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--text-2); margin-top: 6px;
}
.dealer-market.is-open .dealer-market-status { color: var(--green); font-weight: 700; }
@media (max-width:900px) { .dealer-markets { grid-template-columns: repeat(3,1fr); } }
@media (max-width:560px) { .dealer-markets { grid-template-columns: repeat(2,1fr); } }

/* Requirements + sidebar */
.dealer-req { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.dealer-req-text p { font-size: 15.5px; color: var(--text); line-height: 1.65; margin: 14px 0 0; }
.dealer-req-list { list-style: none; padding: 0; margin: 28px 0; }
.dealer-req-list li {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 0;
  border-top: 1px solid var(--line-2); font-size: 14.5px; color: var(--text);
}
.dealer-req-list li:last-child { border-bottom: 1px solid var(--line-2); }
.dealer-req-list strong { color: var(--ink); }
.dealer-req-list .icon { color: var(--green); flex-shrink: 0; margin-top: 4px; }
.dealer-req-btn { margin-top: 8px; }

.dealer-req-side { display: flex; flex-direction: column; gap: 14px; }
.dealer-req-fact {
  background: var(--bg-soft, #f4f4f0); border-left: 3px solid var(--green);
  border-radius: 10px; padding: 22px 26px;
}
.dealer-req-fact-num {
  font-family: var(--font-display); font-weight: 400; font-size: 38px;
  line-height: 1; letter-spacing: -.025em; color: var(--ink);
}
.dealer-req-fact-num span { font-size: 18px; color: var(--text-2); margin-left: 4px; }
.dealer-req-fact-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-top: 8px;
}
@media (max-width:900px) { .dealer-req { grid-template-columns: 1fr; gap: 28px; } }

/* FAQ */
.dealer-faq {
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0;
}
.dealer-faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.dealer-faq summary::-webkit-details-marker { display: none; }
.dealer-faq-num {
  font-family: var(--font-mono,monospace); color: var(--text-2);
  font-size: 13px; margin-right: 14px;
}
.dealer-faq-icon { color: var(--text-2); transition: transform .2s ease; flex-shrink: 0; }
.dealer-faq[open] .dealer-faq-icon { transform: rotate(45deg); color: var(--green); }
.dealer-faq-body { padding: 14px 0 4px 36px; font-size: 15px; line-height: 1.7; color: var(--text); }

/* Apply form */
.dealer-apply-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.dealer-apply-left .dealer-h2 { color: #fff; }
.dealer-apply-left .dealer-h2 .it { color: #FFB37A !important; }
.dealer-apply-alt { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.dealer-apply-altbtn {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 20px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  color: #fff; text-decoration: none; transition: all .2s ease;
}
.dealer-apply-altbtn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); transform: translateX(3px); }
.dealer-apply-altbtn .icon { color: #FFB37A; flex-shrink: 0; }
.dealer-apply-altbtn strong { display: block; font-size: 15px; font-weight: 600; }
.dealer-apply-altbtn span { display: block; font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 2px; }

.dealer-apply-form {
  background: #fff; border-radius: 16px; padding: 32px;
}
.dealer-apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.dealer-apply-field { display: flex; flex-direction: column; }
.dealer-apply-field.full { grid-column: 1 / -1; }
.dealer-apply-field label {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 7px;
}
.dealer-apply-field .req { color: var(--green); }
.dealer-apply-field input, .dealer-apply-field select, .dealer-apply-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14.5px; font-family: inherit;
  color: var(--ink); background: #fff; transition: border-color .15s ease;
}
.dealer-apply-field input:focus, .dealer-apply-field select:focus, .dealer-apply-field textarea:focus {
  outline: none; border-color: var(--ink);
}
.dealer-apply-field textarea { resize: vertical; min-height: 80px; }
.dealer-apply-submit { width: 100%; padding: 14px; justify-content: center; margin-top: 8px; }
.dealer-apply-fine { font-size: 12px; color: var(--text-2); margin: 12px 0 0; line-height: 1.5; text-align: center; }
.dealer-apply-err {
  background: rgba(220, 70, 70, .08); color: #9B2B2B;
  padding: 12px 14px; border-radius: 8px; font-size: 13.5px; margin-bottom: 16px;
}
.dealer-apply-success {
  background: rgba(242,107,38,.08); border: 1px solid rgba(242,107,38,.2);
  border-radius: 16px; padding: 40px 32px; text-align: center; color: var(--ink);
}
.dealer-apply-success .icon { color: var(--green); width: 48px; height: 48px; margin-bottom: 12px; }
.dealer-apply-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 0 0 12px; }
.dealer-apply-success p { font-size: 15px; line-height: 1.65; color: var(--text); margin: 0 0 22px; max-width: 380px; margin-left: auto; margin-right: auto; }

@media (max-width:1000px) { .dealer-apply-wrap { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width:600px)  { .dealer-apply-row { grid-template-columns: 1fr; } }

/* Keyword cluster */
.dealer-kwc {
  background: var(--bg-soft, #f4f4f0); padding: 28px 32px; border-radius: 14px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.dealer-kwc-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-right: 14px;
}
.dealer-kwc a {
  padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; transition: all .15s ease;
}
.dealer-kwc a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
/* ===== /dealer v2 ===== */

/* ===== shipping page v2 2026-06-13 ===== */
.ship-hero {
  position: relative; padding: 96px 0 56px; overflow: hidden;
  isolation: isolate; color: #fff; background: var(--ink, #1A1F22);
}
.ship-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.32) saturate(1.05);
}
.ship-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,31,34,.42) 0%, rgba(26,31,34,.92) 100%);
}
.ship-hero-wrap { position: relative; z-index: 2; }
.ship-hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; margin-bottom: 22px;
}
.ship-hero-pill .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FFB37A; box-shadow: 0 0 8px #FFB37A;
}
.ship-hero-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px); line-height: 1.02;
  letter-spacing: -.025em; margin: 0 0 18px; color: #fff;
}
.ship-hero-h1 .it { font-style: italic; color: #FFB37A; }
.ship-hero-sub {
  font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.78);
  max-width: 760px; margin: 0 0 28px;
}
.ship-hero-sub a { color: #FFB37A; text-decoration: none; border-bottom: 1px solid rgba(255,179,122,.4); }
.ship-hero-sub a:hover { border-color: #FFB37A; }
.ship-hero-toc {
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: baseline;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
}
.ship-hero-toc > span {
  font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.5); margin-right: 8px;
}
.ship-hero-toc a {
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.85);
  padding: 5px 11px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  text-decoration: none; transition: all .15s ease;
}
.ship-hero-toc a:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); color: #fff; }

/* Stats */
.ship-stats { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 38px 0; }
.ship-stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; text-align: center;
}
.ship-stats-grid .num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1; letter-spacing: -.025em;
  color: var(--ink); margin-bottom: 8px;
}
.ship-stats-grid .lbl {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--text-2);
  line-height: 1.4;
}
@media (max-width:1100px) { .ship-stats-grid { grid-template-columns: repeat(3,1fr); gap: 22px; } }
@media (max-width:600px) { .ship-stats-grid { grid-template-columns: repeat(2,1fr); } }

.ship-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -.028em;
  margin-top: 14px;
}
.ship-h2 .it { font-style: italic; color: var(--green); }
.ship-sub {
  font-size: 15px; color: var(--text-2); margin: 16px auto 0;
  max-width: 680px; line-height: 1.55; text-align: center;
}

/* Calculator */
.ship-calc {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px; margin-top: 36px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: start;
}
.ship-calc-controls {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ship-calc-field { display: flex; flex-direction: column; }
.ship-calc-field label {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 8px;
}
.ship-calc-field select, .ship-calc-field input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  background: #fff; color: var(--ink);
}
.ship-calc-result {
  background: var(--bg-soft, #f4f4f0); border-radius: 12px;
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.ship-calc-item { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ship-calc-item:last-child { border-bottom: none; padding-bottom: 0; }
.ship-calc-item.highlight {
  background: var(--ink); color: #fff; padding: 16px 20px; border-radius: 10px;
  border: none;
}
.ship-calc-lbl {
  font-family: var(--font-mono,monospace); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 6px;
}
.ship-calc-item.highlight .ship-calc-lbl { color: #FFB37A; }
.ship-calc-val {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1; letter-spacing: -.02em; color: var(--ink);
}
.ship-calc-item.highlight .ship-calc-val { color: #fff; font-size: 32px; }
.ship-calc-disclaimer {
  margin: 16px auto 0; padding: 12px 16px;
  background: var(--bg-soft, #f4f4f0); border-left: 3px solid var(--green);
  border-radius: 6px; font-size: 13px; color: var(--text-2); line-height: 1.55;
  display: flex; gap: 10px; align-items: flex-start; max-width: 800px;
}
.ship-calc-disclaimer .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
@media (max-width:1000px) { .ship-calc { grid-template-columns: 1fr; gap: 24px; padding: 24px; } .ship-calc-controls { grid-template-columns: 1fr 1fr; } }
@media (max-width:520px)  { .ship-calc-controls { grid-template-columns: 1fr; } }

/* Modes */
.ship-modes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px;
}
.ship-mode {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 26px; transition: all .25s ease;
}
.ship-mode:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,31,34,.08); }
.ship-mode > .icon { color: var(--green); margin-bottom: 14px; }
.ship-mode h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; letter-spacing: -.02em; color: var(--ink); margin: 0 0 4px;
}
.ship-mode-sub {
  font-size: 13px; color: var(--text-2); font-style: italic; margin-bottom: 18px;
}
.ship-mode-spec {
  width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 13px;
}
.ship-mode-spec th, .ship-mode-spec td {
  text-align: left; padding: 7px 0; border-top: 1px solid var(--line-2);
  vertical-align: top; line-height: 1.45;
}
.ship-mode-spec th {
  width: 38%; font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-2);
  font-weight: 700;
}
.ship-mode-spec td { color: var(--text); padding-left: 8px; }
.ship-mode-pros, .ship-mode-cons {
  padding: 14px 16px; border-radius: 8px; margin-bottom: 10px;
}
.ship-mode-pros { background: rgba(242,107,38,.06); }
.ship-mode-cons { background: rgba(220,70,70,.05); }
.ship-mode-lbl {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.ship-mode-pros .ship-mode-lbl { color: var(--green); }
.ship-mode-cons .ship-mode-lbl { color: #C04848; }
.ship-mode-pros ul, .ship-mode-cons ul {
  list-style: none; padding: 0; margin: 0; font-size: 13px; line-height: 1.55; color: var(--text);
}
.ship-mode-pros li, .ship-mode-cons li { padding: 3px 0; }
@media (max-width:1000px) { .ship-modes { grid-template-columns: 1fr; gap: 18px; } }

/* Matrix table */
.ship-matrix-wrap { overflow-x: auto; margin-top: 36px; }
.ship-matrix {
  width: 100%; min-width: 800px; border-collapse: collapse; background: #fff;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(26,31,34,.04);
}
.ship-matrix thead { background: var(--ink); color: #fff; }
.ship-matrix th {
  padding: 14px 18px; font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  text-align: center;
}
.ship-matrix th.dest-col { text-align: left; }
.ship-matrix td {
  padding: 13px 18px; border-top: 1px solid var(--line);
  font-size: 14px; text-align: center; color: var(--ink);
}
.ship-matrix tr:hover td { background: rgba(242,107,38,.04); }
.ship-matrix td.dest-cell { text-align: left; font-weight: 600; color: var(--ink); }
.ship-matrix td.time-cell { font-family: var(--font-mono,monospace); font-size: 13px; color: var(--text); }
.ship-matrix td.na { color: var(--text-2); opacity: .4; }

/* Ports */
.ship-ports-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px;
}
.ship-port {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 20px; transition: all .2s ease;
}
.ship-port:hover { border-color: var(--ink); transform: translateY(-2px); }
.ship-port.is-yard { border-left: 3px solid var(--green); }
.ship-port-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ship-port-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 19px; letter-spacing: -.015em; color: var(--ink);
}
.ship-port-code {
  font-family: var(--font-mono,monospace); font-size: 11.5px;
  color: var(--text-2); margin-top: 3px;
}
.ship-port-badge {
  font-family: var(--font-mono,monospace); font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.ship-port-badge.yard { background: rgba(242,107,38,.12); color: var(--green); }
.ship-port-badge.partner { background: var(--bg-soft); color: var(--text-2); }
.ship-port-lane {
  font-size: 13px; color: var(--text); line-height: 1.5;
  padding: 10px 12px; background: var(--bg-soft, #f4f4f0); border-radius: 6px;
  margin-bottom: 12px;
}
.ship-port-lbl {
  font-family: var(--font-mono,monospace); font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 4px;
}
.ship-port-val { font-size: 12.5px; color: var(--ink); line-height: 1.5; font-weight: 500; }
@media (max-width:1000px) { .ship-ports-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px)  { .ship-ports-grid { grid-template-columns: 1fr; } }

/* Compliance */
.ship-comply-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px;
}
.ship-comply {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 22px;
}
.ship-comply:hover { border-color: var(--ink); }
.ship-comply-head { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
.ship-comply-flag { font-size: 30px; line-height: 1; }
.ship-comply-country {
  font-family: var(--font-display); font-weight: 400; font-size: 19px;
  letter-spacing: -.015em; color: var(--ink); line-height: 1.1;
}
.ship-comply-cert {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--green); margin-top: 4px;
}
.ship-comply p { font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width:1000px) { .ship-comply-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:600px)  { .ship-comply-grid { grid-template-columns: 1fr; } }

/* EV */
.ship-ev { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.ship-ev-text p { font-size: 15.5px; line-height: 1.7; color: var(--text); margin: 14px 0 0; }
.ship-ev-list { list-style: none; padding: 0; margin: 24px 0 0; }
.ship-ev-list li {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 0;
  border-top: 1px solid var(--line-2); font-size: 14.5px; color: var(--text); line-height: 1.55;
}
.ship-ev-list strong { color: var(--ink); }
.ship-ev-list .icon { color: var(--green); flex-shrink: 0; margin-top: 4px; }
.ship-ev-side { display: flex; flex-direction: column; gap: 14px; }
.ship-ev-card {
  background: var(--bg-soft, #f4f4f0); border-radius: 12px; padding: 22px 24px;
  border-left: 3px solid var(--green);
}
.ship-ev-card-num {
  font-family: var(--font-mono,monospace); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; color: var(--green);
}
.ship-ev-card-lbl {
  font-family: var(--font-display); font-weight: 400; font-size: 20px;
  letter-spacing: -.015em; color: var(--ink); margin: 4px 0 10px;
}
.ship-ev-card p { font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width:1000px) { .ship-ev { grid-template-columns: 1fr; gap: 28px; } }

/* Documents */
.ship-docs-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 36px;
}
.ship-doc {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 18px; position: relative; transition: all .2s ease;
}
.ship-doc:hover { border-color: var(--ink); transform: translateY(-2px); }
.ship-doc-num {
  font-family: var(--font-mono,monospace); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; color: var(--green); margin-bottom: 10px;
}
.ship-doc > .icon { color: var(--ink); margin-bottom: 12px; }
.ship-doc h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 15.5px;
  letter-spacing: -.012em; color: var(--ink); margin: 0 0 8px; line-height: 1.25;
}
.ship-doc p { font-size: 12px; line-height: 1.5; color: var(--text); margin: 0; }
@media (max-width:1100px) { .ship-docs-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .ship-docs-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .ship-docs-grid { grid-template-columns: 1fr; } }

/* Insurance */
.ship-ins-lead { font-size: 16px; line-height: 1.65; color: var(--text); margin: 14px 0 0; max-width: 720px; }
.ship-ins-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px;
}
.ship-ins-grid h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px;
  letter-spacing: -.015em; color: var(--ink); margin: 0 0 14px;
}
.ship-ins-grid ul, .ship-ins-grid ol {
  padding: 0; margin: 0; list-style: none; counter-reset: ins;
}
.ship-ins-grid ul li {
  display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line-2);
  font-size: 14px; color: var(--text); line-height: 1.55;
}
.ship-ins-grid ul li:last-child { border-bottom: 1px solid var(--line-2); }
.ship-ins-grid ul li .icon { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.ship-ins-grid ol li {
  counter-increment: ins; padding: 8px 0 8px 32px; position: relative;
  border-top: 1px solid var(--line-2); font-size: 14px; color: var(--text); line-height: 1.55;
}
.ship-ins-grid ol li:last-child { border-bottom: 1px solid var(--line-2); }
.ship-ins-grid ol li::before {
  content: counter(ins, decimal-leading-zero);
  position: absolute; left: 0; top: 8px;
  font-family: var(--font-mono,monospace); font-size: 11px; font-weight: 700;
  color: var(--green);
}
.ship-ins-grid strong { color: var(--ink); }
@media (max-width:900px) { .ship-ins-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Timeline */
.ship-timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px;
}
.ship-step {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 20px; position: relative;
}
.ship-step:hover { border-color: var(--green); }
.ship-step-day {
  font-family: var(--font-mono,monospace); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.ship-step-num {
  font-family: var(--font-display); font-weight: 400; font-size: 28px;
  line-height: 1; letter-spacing: -.025em; color: var(--ink);
  margin: 8px 0 12px;
}
.ship-step h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 17px;
  letter-spacing: -.012em; color: var(--ink); margin: 0 0 6px; line-height: 1.25;
}
.ship-step p { font-size: 12.5px; line-height: 1.5; color: var(--text); margin: 0; }
@media (max-width:1100px) { .ship-timeline { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .ship-timeline { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .ship-timeline { grid-template-columns: 1fr; } }

/* Tracking */
.ship-track { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.ship-track p { font-size: 15px; line-height: 1.65; color: var(--text); margin: 14px 0 18px; }
.ship-track-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ship-track-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 14px; background: var(--bg-soft, #f4f4f0); border: 1px solid var(--line);
  border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; transition: all .15s ease;
}
.ship-track-links a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.ship-track-links .icon { color: var(--green); }
.ship-track-links a:hover .icon { color: #FFB37A; }
.ship-track-help {
  background: var(--bg-soft, #f4f4f0); border-radius: 12px; padding: 26px;
  border-left: 3px solid var(--green);
}
.ship-track-help h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 20px;
  letter-spacing: -.015em; color: var(--ink); margin: 0 0 12px;
}
.ship-track-help p { font-size: 14px; line-height: 1.6; color: var(--text); margin: 0 0 18px; }
@media (max-width:900px) { .ship-track { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width:500px) { .ship-track-links { grid-template-columns: 1fr; } }

/* FAQ */
.ship-faq { border-bottom: 1px solid var(--line-2); padding: 18px 0; }
.ship-faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 16.5px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.ship-faq summary::-webkit-details-marker { display: none; }
.ship-faq-num {
  font-family: var(--font-mono,monospace); color: var(--text-2);
  font-size: 13px; margin-right: 14px;
}
.ship-faq-icon { color: var(--text-2); transition: transform .2s ease; flex-shrink: 0; }
.ship-faq[open] .ship-faq-icon { transform: rotate(45deg); color: var(--green); }
.ship-faq-body { padding: 14px 0 4px 36px; font-size: 14.5px; line-height: 1.7; color: var(--text); }

/* Keyword cluster */
.ship-kwc {
  background: var(--bg-soft, #f4f4f0); padding: 24px 30px; border-radius: 14px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.ship-kwc-lbl {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-right: 14px;
}
.ship-kwc a {
  padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; transition: all .15s ease;
}
.ship-kwc a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
/* ===== /shipping v2 ===== */

/* ===== shipping v3 expand 2026-06-13 ===== */
.ship-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px; }

/* Incoterms cards */
.incoterms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px;
}
.incoterm-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px; transition: all .25s ease; position: relative;
}
.incoterm-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(26,31,34,.08); }
.incoterm-card.is-default { background: var(--ink); color: #fff; border-color: var(--ink); }
.incoterm-flag {
  position: absolute; top: -12px; left: 24px;
  background: var(--green); color: #fff; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}
.incoterm-code {
  font-family: var(--font-display); font-weight: 400;
  font-size: 38px; letter-spacing: -.025em; line-height: 1; color: var(--green);
}
.incoterm-card.is-default .incoterm-code { color: #FFB37A; }
.incoterm-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 17px; letter-spacing: -.012em; margin: 6px 0 4px; line-height: 1.2;
}
.incoterm-tag {
  font-family: var(--font-mono,monospace); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 12px;
}
.incoterm-card.is-default .incoterm-tag { color: rgba(255,255,255,.6); }
.incoterm-desc {
  font-size: 13px; line-height: 1.55; margin: 0 0 16px;
  color: var(--text);
}
.incoterm-card.is-default .incoterm-desc { color: rgba(255,255,255,.78); }
.incoterm-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-2); }
.incoterm-card.is-default .incoterm-list { border-top-color: rgba(255,255,255,.12); }
.incoterm-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; font-size: 12.5px; border-bottom: 1px dotted var(--line-2);
}
.incoterm-list li:last-child { border-bottom: none; }
.incoterm-card.is-default .incoterm-list li { border-bottom-color: rgba(255,255,255,.08); }
.kv-k { color: var(--text-2); }
.incoterm-card.is-default .kv-k { color: rgba(255,255,255,.55); }
.kv-v { font-weight: 600; }
.kv-v.is-seller { color: var(--green); }
.kv-v.is-buyer  { color: var(--text); }
.incoterm-card.is-default .kv-v.is-seller { color: #FFB37A; }
.incoterm-card.is-default .kv-v.is-buyer  { color: rgba(255,255,255,.78); }
@media (max-width:1100px) { .incoterms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:560px)  { .incoterms-grid { grid-template-columns: 1fr; } }

/* Cost breakdown */
.breakdown-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 36px; margin-top: 36px; max-width: 880px; margin-left: auto; margin-right: auto;
}
.breakdown-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
  padding-bottom: 24px; margin-bottom: 12px; border-bottom: 2px solid var(--ink);
}
.breakdown-lbl {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--text-2); margin-bottom: 6px;
}
.breakdown-val { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.breakdown-table { width: 100%; border-collapse: collapse; }
.breakdown-table tr.cat td {
  padding-top: 16px; padding-bottom: 4px;
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--green);
}
.breakdown-table tr:not(.cat):not(.subtotal):not(.grand) td {
  padding: 8px 0; font-size: 14.5px; color: var(--text); border-top: 1px dotted var(--line-2);
}
.breakdown-table td.amt { text-align: right; font-family: var(--font-mono,monospace); font-weight: 600; color: var(--ink); }
.breakdown-table tr.subtotal td {
  padding: 14px 0; font-size: 15.5px; font-weight: 700; color: var(--ink);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  background: rgba(242,107,38,.04);
}
.breakdown-table tr.grand td {
  padding: 18px 0; font-family: var(--font-display); font-size: 22px;
  font-weight: 400; letter-spacing: -.015em; color: var(--ink);
  border-top: 2px solid var(--ink);
}
.breakdown-table tr.grand td.amt { color: var(--green); font-size: 26px; }
.breakdown-fine { margin: 16px 0 0; font-size: 12px; color: var(--text-2); text-align: center; font-style: italic; }
@media (max-width:600px) { .breakdown-head { grid-template-columns: 1fr; gap: 16px; } .breakdown-card { padding: 24px 22px; } }

/* Mistakes */
.mistakes-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 36px;
}
.mistake-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 18px; position: relative; transition: all .2s ease;
}
.mistake-card:hover { border-color: #C04848; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(192,72,72,.08); }
.mistake-num {
  font-family: var(--font-mono,monospace); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; color: #C04848; margin-bottom: 10px;
}
.mistake-head { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 10px; }
.mistake-x { color: #C04848; flex-shrink: 0; margin-top: 2px; }
.mistake-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 16px;
  letter-spacing: -.012em; color: var(--ink); margin: 0; line-height: 1.25;
}
.mistake-card p { font-size: 12.5px; line-height: 1.5; color: var(--text); margin: 0; }
@media (max-width:1100px) { .mistakes-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .mistakes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .mistakes-grid { grid-template-columns: 1fr; } }

/* Glossary */
.glossary-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin-top: 36px;
}
.glossary-item {
  background: #fff; padding: 18px 16px; transition: background .15s ease;
}
.glossary-item:hover { background: var(--bg-soft, #f4f4f0); }
.glossary-term {
  font-family: var(--font-mono,monospace); font-size: 12px;
  letter-spacing: .08em; font-weight: 700; color: var(--green); margin-bottom: 6px;
}
.glossary-def { font-size: 12.5px; line-height: 1.5; color: var(--text); }
@media (max-width:1100px) { .glossary-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .glossary-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .glossary-grid { grid-template-columns: 1fr; } }
/* ===== /shipping v3 ===== */

/* ===== cars list + detail v2 2026-06-13 ===== */

/* Compact hero */
.cars-hero { position: relative; padding: 80px 0 56px; overflow: hidden; isolation: isolate; color: #fff; background: var(--ink,#1A1F22); }
.cars-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: brightness(.32) saturate(1.05); }
.cars-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,31,34,.45) 0%, rgba(26,31,34,.92) 100%); }
.cars-hero-wrap { position: relative; z-index: 2; }
.cars-hero-pill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.85); padding: 6px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; margin-bottom: 20px; }
.cars-hero-pill .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #FFB37A; box-shadow: 0 0 8px #FFB37A; }
.cars-hero-h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px,6.5vw,88px); line-height: 1.02; letter-spacing: -.025em; margin: 0 0 16px; color: #fff; }
.cars-hero-h1 .it { font-style: italic; color: #FFB37A; }
.cars-hero-sub { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 760px; margin: 0 0 26px; }
.cars-hero-sub a { color: #FFB37A; text-decoration: none; border-bottom: 1px solid rgba(255,179,122,.4); }
.cars-hero-sub a:hover { border-color: #FFB37A; }
.cars-hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.cars-hero-trust > div { display: flex; flex-direction: column; }
.cars-hero-trust .num { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: -.025em; line-height: 1; color: #fff; }
.cars-hero-trust .num small { font-size: .55em; color: #FFB37A; margin-left: 2px; }
.cars-hero-trust span:last-child { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; font-weight: 600; }
@media (max-width:700px) { .cars-hero-trust { grid-template-columns: repeat(2,1fr); gap: 16px; } }

/* Control bar */
.cars-control { background: #fff; border-bottom: 1px solid var(--line); padding: 24px 0; }
.cars-filter-form { display: flex; flex-direction: column; gap: 14px; }
.cars-search { display: flex; align-items: center; gap: 10px; background: var(--bg-soft,#f4f4f0); border: 1px solid var(--line); border-radius: 999px; padding: 6px 8px 6px 18px; transition: border-color .15s ease; }
.cars-search:focus-within { border-color: var(--ink); background: #fff; }
.cars-search .icon { color: var(--text-2); flex-shrink: 0; }
.cars-search input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; color: var(--ink); padding: 8px 0; min-width: 0; }
.cars-search input::placeholder { color: var(--text-2); }
.cars-search-clr { color: var(--text-2); padding: 8px; line-height: 0; }
.cars-search-go { padding: 9px 22px; background: var(--ink); color: #fff; border: none; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cars-search-go:hover { background: var(--green); }

.cars-filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cars-filter-row select { padding: 9px 32px 9px 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; color: var(--ink); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7570' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 10px center; background-size: 12px; }
.cars-filter-row select:focus { outline: none; border-color: var(--ink); }
.cars-range { display: flex; gap: 6px; align-items: center; padding: 0 6px; background: var(--bg-soft,#f4f4f0); border-radius: 8px; }
.cars-range > span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); padding: 0 6px; }
.cars-range select { background: transparent; border: none; padding: 9px 22px 9px 6px; font-size: 13px; }
.cars-ev-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--bg-soft,#f4f4f0); border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; user-select: none; transition: all .15s ease; }
.cars-ev-toggle:hover { border-color: var(--green); }
.cars-ev-toggle input { accent-color: var(--green); }
.cars-ev-toggle input:checked + span { color: var(--green); }
.cars-ev-toggle .icon { color: var(--green); }

/* Active chips */
.cars-chips-wrap { background: rgba(242,107,38,.05); border-bottom: 1px solid var(--line); padding: 14px 0; }
.cars-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cars-chips-lbl { font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); }
.cars-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: var(--ink); text-decoration: none; transition: all .15s ease; }
.cars-chip:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.cars-chip:hover .icon { color: #fff; }
.cars-chip .icon { color: var(--text-2); }
.cars-chip-clr { color: var(--green); font-weight: 700; font-size: 13px; text-decoration: none; padding: 6px 8px; }
.cars-chip-clr:hover { text-decoration: underline; }

/* Toolbar */
.cars-toolbar { background: #fff; border-bottom: 1px solid var(--line); padding: 16px 0; position: sticky; top: 76px; z-index: 40; }
.cars-toolbar-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cars-count { font-size: 14.5px; color: var(--text-2); }
.cars-count strong { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-right: 4px; }
.cars-count span { font-size: 12.5px; }
.cars-toolbar-right { display: flex; gap: 14px; align-items: center; }
.cars-sort select { padding: 8px 32px 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; background: #fff; cursor: pointer; }
.cars-view-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cars-view-toggle button { width: 36px; height: 36px; background: #fff; border: none; cursor: pointer; color: var(--text-2); transition: all .15s ease; }
.cars-view-toggle button.on { background: var(--ink); color: #fff; }
.cars-view-toggle button:hover { background: var(--bg-soft); }
.cars-view-toggle button.on:hover { background: var(--ink); }

/* Empty state */
.cars-empty { text-align: center; padding: 80px 32px; background: var(--bg-soft,#f4f4f0); border-radius: 16px; }
.cars-empty .icon { color: var(--text-2); width: 48px; height: 48px; margin-bottom: 16px; }
.cars-empty h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -.015em; color: var(--ink); margin: 0 0 10px; }
.cars-empty p { font-size: 15px; color: var(--text-2); line-height: 1.6; margin: 0 0 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cars-empty-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Promise + KWC */
.cars-h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px,4.2vw,52px); line-height: 1.06; letter-spacing: -.028em; margin-top: 14px; }
.cars-h2 .it { font-style: italic; color: var(--green); }
.cars-promise { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 36px; }
.cars-promise-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; transition: all .2s ease; }
.cars-promise-item:hover { border-color: var(--ink); transform: translateY(-3px); }
.cars-promise-item .icon { color: var(--green); margin-bottom: 12px; }
.cars-promise-item h3 { font-family: var(--font-display); font-weight: 400; font-size: 17px; letter-spacing: -.012em; color: var(--ink); margin: 0 0 8px; line-height: 1.25; }
.cars-promise-item p { font-size: 13px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width:1100px) { .cars-promise { grid-template-columns: repeat(3,1fr); } }
@media (max-width:700px)  { .cars-promise { grid-template-columns: repeat(2,1fr); } }
@media (max-width:480px)  { .cars-promise { grid-template-columns: 1fr; } }

.cars-kwc { background: var(--bg-soft,#f4f4f0); padding: 26px 32px; border-radius: 14px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cars-kwc-lbl { font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-right: 14px; }
.cars-kwc a { padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; transition: all .15s ease; }
.cars-kwc a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Compare drawer */
.cmp-drawer { position: fixed; left: 0; right: 0; bottom: -100px; z-index: 100; background: var(--ink); color: #fff; padding: 14px 0; box-shadow: 0 -8px 24px rgba(26,31,34,.2); transition: bottom .25s ease; }
.cmp-drawer.on { bottom: 0; }
.cmp-drawer-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cmp-lbl { font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.6); }
.cmp-slots { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.cmp-slot { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px 6px 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 12.5px; max-width: 280px; }
.cmp-slot-i { font-family: var(--font-mono,monospace); font-size: 10px; font-weight: 700; color: #FFB37A; }
.cmp-slot-t { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cmp-slot-x { background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 12px; padding: 4px; }
.cmp-slot-x:hover { color: #fff; }
.cmp-clear { color: rgba(255,255,255,.6) !important; background: transparent !important; border-color: rgba(255,255,255,.2) !important; }
.cmp-clear:hover { color: #fff !important; }
#cmpGo.disabled { opacity: .45; pointer-events: none; }

/* Car card additions (compare check + quick wa) */
.car-wrap { position: relative; }
.car-quick { display: flex; gap: 8px; align-items: center; justify-content: space-between; padding: 8px 14px 14px; background: #fff; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0 0 14px 14px; margin-top: -1px; }
.car-compare { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12.5px; font-weight: 600; color: var(--text-2); user-select: none; }
.car-compare input { accent-color: var(--green); }
.car-compare:hover { color: var(--ink); }
.car-compare .icon { color: var(--green); }
.car-wa { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; text-decoration: none; transition: transform .2s ease; }
.car-wa:hover { transform: scale(1.1); }

/* List view */
.cars.view-list { display: flex !important; flex-direction: column; gap: 14px; }
.cars.view-list .car-wrap .car { display: grid; grid-template-columns: 280px 1fr; gap: 0; }
.cars.view-list .car-img-wrap { aspect-ratio: auto; height: 100%; min-height: 200px; }
.cars.view-list .car-body { padding: 22px 26px; display: flex; flex-direction: column; justify-content: center; }
.cars.view-list .car-title { font-size: 22px; }
@media (max-width:700px) { .cars.view-list .car-wrap .car { grid-template-columns: 1fr; } }

/* ===== Detail v2 ===== */
.detail-v2 { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 24px 0 56px; }
@media (max-width:1100px) { .detail-v2 { grid-template-columns: 1fr; } }

.gallery-v2 { position: relative; }
.gallery-v2 .gallery-main { aspect-ratio: 16/10; border-radius: 14px; background-size: cover; background-position: center; background-color: var(--bg-soft); position: relative; cursor: zoom-in; overflow: hidden; }
.gallery-v2 .ovrly { position: absolute; top: 16px; left: 16px; padding: 6px 12px; background: rgba(26,31,34,.65); color: #fff; font-size: 12px; font-weight: 600; border-radius: 999px; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(8px); }
.gal-prev, .gal-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(26,31,34,.6); color: #fff; border: none; cursor: pointer; font-size: 28px; line-height: 1; transition: all .2s ease; backdrop-filter: blur(8px); }
.gal-prev { left: 14px; }
.gal-next { right: 14px; }
.gal-prev:hover, .gal-next:hover { background: var(--ink); }
.gal-zoom { position: absolute; bottom: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(26,31,34,.6); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s ease; backdrop-filter: blur(8px); }
.gal-zoom:hover { background: var(--ink); }
.gallery-v2 .thumb-row { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.gallery-v2 .thumb { flex-shrink: 0; width: 90px; aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: 8px; cursor: pointer; opacity: .58; border: 2px solid transparent; transition: all .15s ease; }
.gallery-v2 .thumb:hover { opacity: 1; }
.gallery-v2 .thumb.on { opacity: 1; border-color: var(--green); }

/* Title row */
.d-titlerow { margin-top: 28px; }
.d-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.d-bd { padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; font-family: var(--font-mono,monospace); }
.d-bd.ev { background: rgba(242,107,38,.12); color: var(--green); }
.d-bd.new { background: rgba(0,120,200,.12); color: #0078C8; }
.d-bd.gray { background: var(--bg-soft); color: var(--text-2); }
.d-bd.live { display: inline-flex; align-items: center; gap: 6px; background: rgba(220,70,70,.08); color: #C04848; }
.d-bd.live .dot { width: 6px; height: 6px; background: #C04848; border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.d-title-v2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,3.6vw,42px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; }
.d-meta-v2 { display: flex; flex-wrap: wrap; gap: 14px 22px; font-size: 14px; color: var(--text-2); }
.d-meta-v2 span { display: inline-flex; align-items: center; gap: 6px; }
.d-meta-v2 .icon { color: var(--green); }

/* Tabs */
.d-tabs { display: flex; gap: 4px; margin-top: 32px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.d-tabs::-webkit-scrollbar { display: none; }
.d-tab { padding: 14px 18px; background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-2); border-bottom: 2px solid transparent; white-space: nowrap; transition: all .15s ease; font-family: inherit; }
.d-tab:hover { color: var(--ink); }
.d-tab.on { color: var(--ink); border-bottom-color: var(--green); }
.d-tabpanels { padding-top: 24px; }
.d-panel { display: none; }
.d-panel.on { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }

/* Spec grid */
.d-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-soft,#f4f4f0); border-radius: 12px; overflow: hidden; }
.d-specs-grid .row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 12px 18px; background: #fff; margin: 1px; }
.d-specs-grid .k { font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--text-2); }
.d-specs-grid .v { font-size: 14.5px; color: var(--ink); font-weight: 500; }
@media (max-width:700px) { .d-specs-grid { grid-template-columns: 1fr; } }
.d-specs-bullets { margin-top: 18px; padding: 18px 22px; background: var(--bg-soft,#f4f4f0); border-radius: 12px; }
.d-specs-bullets-lbl { font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.d-specs-bullets ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.d-specs-bullets li { padding: 4px 0; font-size: 13.5px; color: var(--text); border-left: 2px solid var(--green); padding-left: 10px; }
@media (max-width:700px) { .d-specs-bullets ul { grid-template-columns: 1fr; } }

/* Description */
.d-desc { font-size: 16px; line-height: 1.75; color: var(--text); }
.d-desc p, .d-desc ul, .d-desc ol { margin-bottom: 16px; }
.d-desc h2, .d-desc h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink); margin: 24px 0 12px; }
.d-desc h2 { font-size: 24px; }
.d-desc h3 { font-size: 19px; }
.d-desc strong { color: var(--ink); }

/* Inspection */
.d-inspect-intro { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 24px; }
.d-inspect-intro strong { color: var(--ink); }
.d-inspect-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.d-inspect-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 18px; position: relative; }
.d-inspect-item:hover { border-color: var(--green); }
.d-inspect-num { font-family: var(--font-mono,monospace); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--green); margin-bottom: 10px; }
.d-inspect-item .icon { color: var(--ink); margin-bottom: 10px; }
.d-inspect-item h4 { font-family: var(--font-display); font-weight: 400; font-size: 17px; letter-spacing: -.012em; color: var(--ink); margin: 0 0 8px; }
.d-inspect-item p { font-size: 12.5px; line-height: 1.5; color: var(--text); margin: 0; }
@media (max-width:1000px) { .d-inspect-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:500px)  { .d-inspect-grid { grid-template-columns: 1fr; } }

/* Documents */
.d-docs-intro { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.d-docs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.d-doc { display: flex; gap: 14px; padding: 14px 18px; background: var(--bg-soft,#f4f4f0); border-radius: 10px; align-items: flex-start; }
.d-doc .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.d-doc strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.d-doc span { display: block; font-size: 12.5px; color: var(--text-2); line-height: 1.5; }
.d-docs-foot { margin-top: 18px; font-size: 13.5px; }
.d-docs-foot a { color: var(--green); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.d-docs-foot a:hover { text-decoration: underline; }
@media (max-width:700px) { .d-docs-grid { grid-template-columns: 1fr; } }

/* Landed cost calc on detail */
.d-calc-intro { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.d-calc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; background: var(--bg-soft,#f4f4f0); padding: 24px; border-radius: 14px; align-items: start; }
.d-calc-fields { display: flex; flex-direction: column; gap: 14px; }
.d-calc-field label { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 6px; display: block; }
.d-calc-field select, .d-calc-field input { width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; background: #fff; color: var(--ink); }
.d-calc-results { background: #fff; border-radius: 10px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.d-calc-item { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dotted var(--line); font-size: 13.5px; }
.d-calc-item:last-child { border-bottom: none; }
.d-calc-item strong { font-family: var(--font-mono,monospace); font-weight: 700; color: var(--ink); }
.d-calc-item.highlight { background: var(--ink); color: #fff; padding: 12px 14px; border-radius: 8px; border-bottom: none; margin-top: 4px; }
.d-calc-item.highlight strong { color: #FFB37A; font-size: 16px; }
.d-calc-fine { margin-top: 14px; font-size: 12px; color: var(--text-2); }
.d-calc-fine a { color: var(--green); }
@media (max-width:800px) { .d-calc-grid { grid-template-columns: 1fr; } }

/* FAQ */
.d-faq { border-bottom: 1px solid var(--line-2); padding: 16px 0; }
.d-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.d-faq summary::-webkit-details-marker { display: none; }
.d-faq-num { font-family: var(--font-mono,monospace); color: var(--text-2); font-size: 12.5px; margin-right: 12px; }
.d-faq .icon { color: var(--text-2); transition: transform .2s ease; flex-shrink: 0; }
.d-faq[open] .icon { transform: rotate(45deg); color: var(--green); }
.d-faq-body { padding: 12px 0 4px 32px; font-size: 14px; line-height: 1.7; color: var(--text); }

/* Similar */
.d-similar { margin-top: 56px; }
.d-similar h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px,3vw,34px); letter-spacing: -.02em; color: var(--ink); margin: 0 0 24px; }

/* Sticky aside */
.detail-aside { position: relative; }
.detail-aside-inner { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
@media (max-width:1100px) { .detail-aside-inner { position: static; } }

.d-price-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.d-price-card .fx-tabs { display: flex; gap: 4px; margin-bottom: 14px; flex-wrap: wrap; }
.d-price-card .fx-tabs button { padding: 6px 10px; font-size: 11px; font-weight: 700; letter-spacing: .12em; background: var(--bg-soft,#f4f4f0); border: 1px solid var(--line); border-radius: 6px; cursor: pointer; color: var(--text-2); font-family: var(--font-mono,monospace); }
.d-price-card .fx-tabs button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.d-price-card .fx-label { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 4px; }
.d-price-card .fx-price { font-family: var(--font-display); font-weight: 400; font-size: 38px; letter-spacing: -.025em; line-height: 1; color: var(--ink); margin-bottom: 16px; }
.d-price-card .fx-price small { font-size: 14px; color: var(--text-2); margin-left: 4px; }
.d-price-card .fx-break { border-top: 1px solid var(--line-2); padding-top: 14px; margin-bottom: 14px; }
.d-price-card .fx-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.d-price-card .fx-row span { color: var(--text-2); }
.d-price-card .fx-row strong { color: var(--ink); font-weight: 600; }
.d-btn-quote { width: 100%; justify-content: center; padding: 13px; }

.d-channels { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.d-ch { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 10px; text-decoration: none; transition: all .15s ease; background: var(--bg-soft,#f4f4f0); }
.d-ch:hover { background: var(--ink); color: #fff; }
.d-ch.wa { background: rgba(37,211,102,.1); }
.d-ch.wa:hover { background: #25D366; color: #fff; }
.d-ch .icon { flex-shrink: 0; }
.d-ch.wa .icon { color: #25D366; }
.d-ch:hover .icon { color: #fff; }
.d-ch strong { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.d-ch:hover strong { color: #fff; }
.d-ch span { display: block; font-size: 12px; color: var(--text-2); }
.d-ch:hover span { color: rgba(255,255,255,.7); }

.d-promise { background: var(--bg-soft,#f4f4f0); border-radius: 12px; padding: 18px 20px; }
.d-promise-h { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.d-promise ul { list-style: none; padding: 0; margin: 0; }
.d-promise li { display: flex; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--text); }
.d-promise li .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Inquiry form */
.d-inq-card { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 4px 14px rgba(26,31,34,.04); }
.d-inq-head { margin-bottom: 24px; }
.d-inq-head p { font-size: 15px; color: var(--text-2); line-height: 1.55; margin: 12px 0 0; }
.d-inq-form { display: flex; flex-direction: column; gap: 14px; }
.d-inq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.d-inq-field { display: flex; flex-direction: column; }
.d-inq-field.full { grid-column: 1 / -1; }
.d-inq-field label { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.d-inq-field .req { color: var(--green); }
.d-inq-field input, .d-inq-field select, .d-inq-field textarea { padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14.5px; font-family: inherit; color: var(--ink); background: #fff; }
.d-inq-field input:focus, .d-inq-field select:focus, .d-inq-field textarea:focus { outline: none; border-color: var(--ink); }
.d-inq-field textarea { resize: vertical; min-height: 70px; }
.d-inq-submit { width: 100%; padding: 14px; justify-content: center; margin-top: 8px; }
.d-inq-fine { font-size: 12px; color: var(--text-2); text-align: center; margin: 12px 0 0; }
.d-inq-err { background: rgba(220,70,70,.08); color: #9B2B2B; padding: 12px 16px; border-radius: 8px; font-size: 13.5px; }
.d-inq-success { text-align: center; padding: 30px 20px; }
.d-inq-success .icon { color: var(--green); width: 56px; height: 56px; margin-bottom: 14px; }
.d-inq-success h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; margin: 0 0 12px; color: var(--ink); }
.d-inq-success p { font-size: 15px; color: var(--text); line-height: 1.6; margin: 0 0 22px; max-width: 480px; margin-left: auto; margin-right: auto; }
@media (max-width:600px) { .d-inq-row { grid-template-columns: 1fr; } .d-inq-card { padding: 24px 22px; } }

/* Mobile bar */
.d-mobile-bar { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; background: var(--ink); border-radius: 999px; padding: 6px; gap: 6px; box-shadow: 0 10px 28px rgba(26,31,34,.3); }
@media (max-width:900px) { .d-mobile-bar { display: flex; } }
.d-mb-wa, .d-mb-inq { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 13px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all .15s ease; }
.d-mb-wa { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.2); }
.d-mb-wa:hover { background: rgba(255,255,255,.1); }
.d-mb-inq { background: var(--green); color: #fff; }
.d-mb-inq:hover { background: #D85A14; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.95); align-items: center; justify-content: center; }
.lightbox.on { display: flex; }
.lb-img { position: absolute; inset: 60px 80px; background-size: contain; background-repeat: no-repeat; background-position: center; }
@media (max-width:700px) { .lb-img { inset: 60px 14px; } }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; transition: all .15s ease; backdrop-filter: blur(8px); }
.lb-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 20px; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 32px; line-height: 1; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }
.lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-family: var(--font-mono,monospace); font-size: 12px; letter-spacing: .14em; }
/* ===== /cars v2 ===== */

/* ===== cars v3 sidebar 2026-06-13 ===== */
.cars-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 24px 0 56px; }
@media (max-width:980px) { .cars-layout { grid-template-columns: 1fr; gap: 0; padding: 16px 0 56px; } }

/* Sidebar */
.cars-side { position: sticky; top: 92px; align-self: start; max-height: calc(100vh - 100px); overflow-y: auto; padding-right: 4px; scrollbar-width: thin; }
.cars-side::-webkit-scrollbar { width: 6px; }
.cars-side::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
@media (max-width:980px) {
  .cars-side { position: fixed; left: 0; top: 0; bottom: 0; width: 88vw; max-width: 340px; max-height: none; background: #fff; z-index: 200; padding: 20px; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 6px 0 20px rgba(26,31,34,.18); }
  body.filter-open .cars-side { transform: translateX(0); }
}
.cars-side-overlay { display: none; }
@media (max-width:980px) {
  .cars-side-overlay { position: fixed; inset: 0; background: rgba(26,31,34,.55); z-index: 150; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
  body.filter-open .cars-side-overlay { opacity: 1; pointer-events: auto; }
  body.filter-open { overflow: hidden; }
}
.cars-side-form { display: flex; flex-direction: column; gap: 0; }
.cars-side-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 2px solid var(--ink); margin-bottom: 4px; }
.cars-side-head h2 { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.cars-side-close { display: none; background: none; border: none; font-size: 22px; color: var(--text-2); cursor: pointer; padding: 4px 8px; }
@media (max-width:980px) { .cars-side-close { display: block; } }

.cars-side-section { padding: 14px 0; border-bottom: 1px solid var(--line-2); }
.cars-side-section summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink); padding: 4px 0; }
.cars-side-section summary::-webkit-details-marker { display: none; }
.cars-side-section summary::after { content: '+'; color: var(--text-2); font-size: 16px; font-weight: 400; transition: transform .15s ease; }
.cars-side-section[open] summary::after { content: '−'; }
.cars-side-lbl { display: block; font-family: var(--font-mono,monospace); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.cars-side-count { font-family: var(--font-mono,monospace); background: var(--bg-soft,#f4f4f0); color: var(--text-2); padding: 2px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 700; }

.cars-side-search { display: flex; align-items: center; gap: 8px; background: var(--bg-soft,#f4f4f0); border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; }
.cars-side-search input { flex: 1; border: none; outline: none; background: transparent; font-size: 13.5px; padding: 8px 0; min-width: 0; color: var(--ink); }
.cars-side-search .icon { color: var(--text-2); flex-shrink: 0; }

.cars-side-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--bg-soft,#f4f4f0); border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; transition: all .15s ease; }
.cars-side-toggle:hover { background: rgba(242,107,38,.1); }
.cars-side-toggle input { accent-color: var(--green); }
.cars-side-toggle .icon { color: var(--green); }

.cars-side-checklist { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; max-height: 260px; overflow-y: auto; padding-right: 4px; }
.cars-side-checklist label { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 6px; cursor: pointer; font-size: 13.5px; color: var(--text); transition: background .12s ease; }
.cars-side-checklist label:hover { background: var(--bg-soft,#f4f4f0); }
.cars-side-checklist input { accent-color: var(--green); }
.cars-side-checklist small { color: var(--text-2); font-size: 11.5px; margin-left: 4px; }

.cars-side-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cars-side-chips label { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: var(--bg-soft,#f4f4f0); border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .15s ease; }
.cars-side-chips label:hover { border-color: var(--ink); }
.cars-side-chips label.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cars-side-chips label.on small { color: rgba(255,255,255,.6); }
.cars-side-chips input { display: none; }
.cars-side-chips small { color: var(--text-2); font-size: 11px; margin-left: 2px; }

.cars-side-range { display: flex; gap: 6px; align-items: center; margin-top: 10px; }
.cars-side-range select { flex: 1; padding: 8px 24px 8px 10px; border: 1px solid var(--line); border-radius: 6px; font-size: 13px; background: #fff; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7570' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 8px center; background-size: 10px; min-width: 0; }
.cars-side-range-sep { font-size: 14px; color: var(--text-2); }

.cars-side-presets { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.cars-side-presets button { padding: 8px; background: transparent; border: 1px solid var(--line); border-radius: 6px; font-size: 12px; color: var(--ink); cursor: pointer; font-family: inherit; transition: all .15s ease; }
.cars-side-presets button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.cars-side-section > select { width: 100%; padding: 9px 28px 9px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; background: #fff; color: var(--ink); margin-top: 10px; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7570' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 10px center; background-size: 11px; }

.cars-side-actions { display: flex; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--ink); }
.cars-side-apply { flex: 1; padding: 12px; background: var(--ink); color: #fff; border: none; border-radius: 999px; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: all .15s ease; font-family: inherit; }
.cars-side-apply:hover { background: var(--green); }
.cars-side-reset { padding: 12px 18px; background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: var(--text-2); text-decoration: none; transition: all .15s ease; display: inline-flex; align-items: center; justify-content: center; }
.cars-side-reset:hover { border-color: var(--ink); color: var(--ink); }

.cars-side-promise { margin-top: 24px; padding: 18px; background: var(--bg-soft,#f4f4f0); border-radius: 12px; border-left: 3px solid var(--green); }
.cars-side-promise-h { font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 10px; }
.cars-side-promise ul { list-style: none; padding: 0; margin: 0; }
.cars-side-promise li { display: flex; gap: 7px; padding: 4px 0; font-size: 12.5px; color: var(--text); }
.cars-side-promise li .icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Main column */
.cars-main { min-width: 0; }
.cars-main-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 0 0 18px; border-bottom: 1px solid var(--line); margin-bottom: 20px; position: sticky; top: 76px; background: #fff; z-index: 30; padding-top: 16px; }
.cars-main-toolbar .cars-count strong { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-right: 6px; letter-spacing: -.015em; }
.cars-main-toolbar .cars-count span { font-size: 13px; color: var(--text-2); }

/* Mobile filter trigger */
.cars-mob-trigger { display: none; position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 90; padding: 12px 22px; background: var(--ink); color: #fff; border: none; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 20px rgba(26,31,34,.25); align-items: center; gap: 8px; }
@media (max-width:980px) { .cars-mob-trigger { display: inline-flex; } }
.cars-mob-count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; background: var(--green); border-radius: 999px; font-size: 12px; padding: 0 6px; }

/* ===== Detail v3 additions ===== */
.detail-actions { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
@media (max-width:980px) { .detail-actions { grid-template-columns: 1fr; } }

.d-arrival { background: var(--bg-soft,#f4f4f0); border-radius: 14px; padding: 28px; }
.d-arrival-h h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -.02em; color: var(--ink); margin: 8px 0 0; }
.d-arrival-controls { margin: 18px 0 22px; }
.d-arrival-controls label { display: block; font-family: var(--font-mono,monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.d-arrival-controls select { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; background: #fff; }
.d-arrival-timeline { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.d-arrival-step { flex: 1; text-align: center; padding: 14px 10px; background: #fff; border-radius: 10px; border: 1px solid var(--line); }
.d-arrival-step.highlight { background: var(--ink); color: #fff; border-color: var(--ink); }
.d-arrival-day { font-family: var(--font-display); font-weight: 400; font-size: 17px; line-height: 1; color: var(--green); margin-bottom: 4px; letter-spacing: -.01em; }
.d-arrival-step.highlight .d-arrival-day { color: #FFB37A; }
.d-arrival-lbl { font-family: var(--font-mono,monospace); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); font-weight: 600; }
.d-arrival-step.highlight .d-arrival-lbl { color: rgba(255,255,255,.7); }
.d-arrival-conn { flex: 0 0 16px; height: 2px; background: linear-gradient(to right, var(--line), var(--line)); }
.d-arrival-fine { margin: 16px 0 0; font-size: 12.5px; color: var(--text-2); }
.d-arrival-fine a { color: var(--green); font-weight: 600; }
@media (max-width:700px) { .d-arrival-timeline { flex-wrap: wrap; gap: 8px; } .d-arrival-step { flex: 1 1 calc(50% - 4px); } .d-arrival-conn { display: none; } }

.d-actions-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.d-act { display: flex; gap: 14px; align-items: center; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: all .15s ease; font-family: inherit; text-align: left; }
.d-act:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(26,31,34,.06); }
.d-act .icon { color: var(--green); flex-shrink: 0; }
.d-act strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 600; margin-bottom: 3px; }
.d-act span { display: block; font-size: 12px; color: var(--text-2); }

/* SEO-rich block */
.detail-seo > div > h2 { margin-top: 8px; }
.detail-seo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.detail-seo-grid > div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }
.detail-seo-grid h3 { display: flex; gap: 8px; align-items: center; font-family: var(--font-display); font-weight: 400; font-size: 19px; letter-spacing: -.015em; color: var(--ink); margin: 0 0 12px; }
.detail-seo-grid h3 .icon { color: var(--green); }
.detail-seo-grid p { font-size: 14px; line-height: 1.65; color: var(--text); margin: 0; }
@media (max-width:900px) { .detail-seo-grid { grid-template-columns: 1fr; } }

/* Print friendly */
@media print {
  .cars-side, .cmp-drawer, .d-mobile-bar, .detail-aside, .d-actions-grid, .d-mb-wa, .d-mb-inq,
  nav, footer, .cars-mob-trigger, .cars-hero-bg, .cars-hero-overlay,
  .d-tabs, .d-inq-card, .gal-prev, .gal-next, .gal-zoom, .lightbox { display: none !important; }
  .d-panel { display: block !important; }
  .detail-v2 { grid-template-columns: 1fr !important; }
  body { background: #fff; color: #000; }
}
/* ===== /cars v3 ===== */

/* ===== gallery overlay BUG fix 2026-06-13 ===== */
.gallery-v2 .ovrly,
.gallery-v2 .gal-prev,
.gallery-v2 .gal-next,
.gallery-v2 .gal-zoom { display: none !important; }
/* ===== /gallery fix ===== */

/* ===== home Insights & buyer guides 2026-06-13 ===== */
.home-news-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; margin-top: 36px; align-items: stretch;
}
@media (max-width:900px) { .home-news-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Featured big card */
.home-news-hero {
  position: relative; display: block; text-decoration: none; color: #fff;
  border-radius: 16px; overflow: hidden; isolation: isolate;
  min-height: 460px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-news-hero:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(15,28,20,.18); }
.home-news-hero-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-color: var(--ink);
  transition: transform .6s ease;
}
.home-news-hero:hover .home-news-hero-img { transform: scale(1.04); }
.home-news-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,28,20,.25) 0%, rgba(15,28,20,.45) 45%, rgba(15,28,20,.92) 100%);
}
.home-news-hero-body {
  position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.home-news-hero-body h3,
.home-news-hero-body .home-news-h {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px,2.6vw,32px); line-height: 1.18;
  letter-spacing: -.015em; color: #fff; margin: 0;
}
.home-news-cat {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 5px 12px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  border-radius: 999px; backdrop-filter: blur(8px);
}
.home-news-meta {
  display: flex; gap: 10px;
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* Side list */
.home-news-list { display: flex; flex-direction: column; gap: 0; }
.home-news-item {
  display: block; padding: 22px 24px;
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-bottom: none;
  background: #fff; transition: all .2s ease;
}
.home-news-item:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }
.home-news-item:last-child  { border-bottom: 1px solid var(--line); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.home-news-item:hover { background: var(--bg-soft, #fbf7f1); border-color: var(--ink); padding-left: 28px; }
.home-news-item-cat {
  font-family: var(--font-mono,monospace); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.home-news-item-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 17px; line-height: 1.3; letter-spacing: -.012em;
  color: var(--ink); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-news-item-meta {
  font-family: var(--font-mono,monospace); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--text-2);
}
/* ===== /home Insights ===== */

/* ===== logo 1E lockup 2026-06-13 ===== */
.logo { display: inline-flex; align-items: center; line-height: 1; text-decoration: none; color: var(--ink); }
.logo .logo-svg { width: 200px; height: auto; display: block; color: var(--ink); }
.logo .logo-mark { display: none !important; }
.brand-text-fallback { display: none; }
@media (max-width: 720px) { .logo .logo-svg { width: 160px; } }

.logo-big { display: inline-flex; }
.logo-big em { display: none; }
/* ===== /logo 1E ===== */

/* ===== i18n language switch + RTL 2026-06-13 ===== */
.lang-switch { display: inline-flex; gap: 2px; padding: 3px; background: var(--bg-soft,#fbf7f1); border-radius: 999px; margin-left: 8px; }
.lang-switch a { padding: 5px 10px; font-size: 11px; font-weight: 700; color: var(--text-2); text-decoration: none; border-radius: 999px; transition: all .15s ease; font-family: var(--font-mono,monospace); letter-spacing: .08em; }
.lang-switch a:hover { color: var(--ink); background: #fff; }
.lang-switch a.active { background: var(--ink); color: #fff; }

/* RTL adjustments */
html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .breadcrumb, html[dir="rtl"] .breadcrumb-light { flex-direction: row-reverse; }
html[dir="rtl"] .breadcrumb .icon, html[dir="rtl"] .breadcrumb-light .icon { transform: scaleX(-1); }
html[dir="rtl"] .car-foot, html[dir="rtl"] .news-card-foot { flex-direction: row-reverse; }
html[dir="rtl"] .lang-switch { margin-left: 0; margin-right: 8px; }
html[dir="rtl"] .cars-side { padding-right: 0; padding-left: 4px; }
html[dir="rtl"] .arrow-right, html[dir="rtl"] .car-inquire svg { transform: scaleX(-1); }
/* ===== /i18n + RTL ===== */


/* ============================================================
 * BODY LANDING v2.1 — editorial pass (2026-06-12)
 * ============================================================ */

/* ---- Hero stat row (open, no boxes) ---- */
.body-hero { padding: 88px 0 64px; }
.body-stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  max-width: 1080px; margin: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.body-stats .bs-cell {
  padding: 24px 24px 22px;
  position: relative;
}
.body-stats .bs-cell + .bs-cell::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.14);
}
.body-stats .bs-n {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px); color: #fff;
  letter-spacing: -.015em; line-height: 1;
}
.body-stats .bs-n .bs-u {
  font-family: var(--font-mono); font-style: normal;
  font-size: 13px; opacity: .55; margin-left: 3px;
  vertical-align: 4px;
}
.body-stats .bs-l {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-top: 12px; font-family: var(--font-mono);
}
@media (max-width: 900px){
  .body-stats { grid-template-columns: repeat(2, 1fr); }
  .body-stats .bs-cell:nth-child(odd)::before { display: none; }
  .body-stats .bs-cell:last-child { grid-column: span 2; border-top: 1px solid rgba(255,255,255,.14); }
}

/* ---- Sticky sub-nav, underline-style like main nav ---- */
.body-subnav {
  position: sticky; top: 76px; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--line, rgba(26,31,34,.07));
}
.body-chip-row {
  display: flex; gap: 4px; padding: 6px 0;
  overflow-x: auto; scrollbar-width: none;
}
.body-chip-row::-webkit-scrollbar { display: none; }
.body-chip {
  flex-shrink: 0; padding: 16px 14px;
  font-size: 14px; font-weight: 500; color: var(--text, #5a6166);
  white-space: nowrap; transition: color .15s ease;
  text-decoration: none; position: relative;
}
.body-chip:hover { color: var(--ink); }
.body-chip.active { color: var(--ink); font-weight: 600; }
.body-chip.active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px; background: var(--green); border-radius: 2px;
}

/* ---- Intro + brand filter ---- */
.body-intro-sec { padding: 80px 0 40px; }
.body-intro-copy {
  max-width: 880px; margin: 0 auto 56px;
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.45;
  letter-spacing: -.005em; color: var(--ink, #1A1F22);
  text-align: center;
}
.brand-chip-rail {
  display: flex; flex-wrap: wrap; gap: 6px 4px;
  justify-content: center; align-items: center;
  max-width: 1080px; margin: 0 auto;
  padding: 32px 0 0;
  border-top: 1px solid var(--line, rgba(26,31,34,.08));
}
.brand-chip-rail::before {
  content: 'Filter'; display: inline-block;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-2, #8a8f93); margin-right: 14px;
  align-self: center;
}
.brand-chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: transparent; color: var(--text, #2c3236);
  font-size: 13.5px; font-weight: 500; text-decoration: none;
  border: 1px solid var(--line, rgba(26,31,34,.12));
  transition: all .15s ease;
}
.brand-chip:hover { color: var(--ink); border-color: var(--ink); }
.brand-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600; }
.brand-chip .bc-cnt {
  font-family: var(--font-mono); font-size: 10.5px;
  opacity: .55; font-weight: 600;
}
.brand-chip.active .bc-cnt { color: #fff; opacity: .75; }

/* ---- Section link header style ---- */
.link-arrow, .section-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  text-decoration: none; padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono); letter-spacing: .04em;
  text-transform: uppercase;
}
.link-arrow:hover, .section-link:hover { color: var(--green); border-color: var(--green); }

/* ---- Price ladder — open editorial columns ---- */
.price-ladder-sec { background: var(--bg-soft, #FBF7F1); padding: 100px 0; }
.price-ladder {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 24px;
}
.pl-card {
  padding: 36px 40px 40px;
  position: relative;
  background: transparent;
  border-radius: 0;
}
.pl-card + .pl-card { border-left: 1px solid rgba(26,31,34,.12); }
.pl-card::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px;
  height: 1px; background: rgba(26,31,34,.18);
}
.pl-card.highlight::before { background: var(--green); height: 2px; }
.pl-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-2, #8a8f93);
  padding-top: 24px;
}
.pl-card.highlight .pl-tag { color: var(--green); }
.pl-range {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--ink); margin-top: 18px; letter-spacing: -.02em;
  line-height: 1.05;
}
.pl-count {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink); margin-top: 28px;
  line-height: 1; font-feature-settings: "tnum";
  letter-spacing: -.03em;
}
.pl-count small {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--text-2);
  margin-left: 10px; text-transform: uppercase;
}
.pl-desc {
  font-size: 14.5px; line-height: 1.7; color: var(--text, #2c3236);
  margin: 24px 0 0; padding-top: 22px;
  border-top: 1px solid rgba(26,31,34,.1);
  max-width: 320px;
}
@media (max-width: 900px){
  .price-ladder { grid-template-columns: 1fr; }
  .pl-card + .pl-card { border-left: 0; border-top: 1px solid rgba(26,31,34,.12); }
  .pl-card::before { display: none; }
  .pl-card.highlight { border-left: 2px solid var(--green); border-top-color: rgba(26,31,34,.12); padding-left: 38px; }
}

/* ---- Why grid — editorial 4-col ---- */
.why-body-sec { padding: 100px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  margin-top: 24px;
}
.why-card {
  padding-top: 28px; border-top: 1px solid var(--ink);
  position: relative;
}
.why-num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 42px; color: var(--green);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: 18px;
}
.why-h {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; letter-spacing: -.015em; color: var(--ink);
  margin: 0 0 12px; line-height: 1.2;
}
.why-p {
  font-size: 14.5px; line-height: 1.7; color: var(--text, #2c3236);
}
@media (max-width: 900px){
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px){
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Markets — editorial tiles with real emoji flags ---- */
.markets-body-sec { background: var(--bg-cream, #FAF8F2); padding: 100px 0; }
.market-tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 24px;
  background: rgba(26,31,34,.1);
  border: 1px solid rgba(26,31,34,.1);
  border-radius: 16px; overflow: hidden;
}
.mkt-tile {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px;
  background: #fff;
  text-decoration: none; color: var(--ink);
  transition: background .25s ease;
}
.mkt-tile:hover { background: var(--bg-soft, #FBF7F1); }
.mkt-flag-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.mkt-flag-emoji {
  font-size: 32px; line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.08));
}
.mkt-code {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .12em; color: var(--text-2, #8a8f93);
}
.mkt-meta { flex: 1; }
.mkt-name {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 22px; color: var(--ink); letter-spacing: -.01em;
  line-height: 1.1;
}
.mkt-port {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  color: var(--text-2, #8a8f93); margin-top: 6px;
  letter-spacing: .08em; text-transform: uppercase;
}
.mkt-arr {
  color: var(--text-2, #8a8f93);
  transition: all .2s ease;
  flex-shrink: 0;
}
.mkt-tile:hover .mkt-arr { color: var(--green); transform: translateX(4px); }
@media (max-width: 900px){
  .market-tile-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .market-tile-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ — clean editorial accordion ---- */
.faq-body-sec { padding: 100px 0; }
.faq-body-list { max-width: 920px; margin-top: 24px; }
.faq-body-item {
  border-top: 1px solid rgba(26,31,34,.14);
}
.faq-body-item:last-child { border-bottom: 1px solid rgba(26,31,34,.14); }
.faq-body-item summary {
  padding: 28px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink); letter-spacing: -.01em; line-height: 1.3;
  transition: color .2s ease;
}
.faq-body-item summary:hover { color: var(--green); }
.faq-body-item summary::-webkit-details-marker { display: none; }
.faq-body-item .faq-icn {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; color: var(--green);
  width: 28px; height: 28px; display: grid; place-items: center;
  flex-shrink: 0; transition: transform .25s ease; line-height: 1;
}
.faq-body-item[open] .faq-icn { transform: rotate(45deg); }
.faq-body-item .faq-a {
  padding: 0 0 30px; max-width: 780px;
  font-size: 15.5px; line-height: 1.75; color: var(--text, #2c3236);
}

/* ---- Related categories reuses cat-grid-v2/cat-v2 from home; section just gets spacing ---- */
.related-cat-sec { background: var(--bg-soft, #FBF7F1); padding: 100px 0; }

/* ---- CTA bar — editorial ---- */
.cta-bar-sec { padding: 80px 0 120px; }
.cta-bar {
  background: var(--ink); color: #fff;
  border-radius: 20px; padding: 56px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-bar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 28%, rgba(242,107,38,.28), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(242,107,38,.10), transparent 45%);
  pointer-events: none;
}
.cta-bar-text { position: relative; max-width: 680px; }
.cta-bar-text .cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #FFB37A; margin-bottom: 14px;
}
.cta-bar-text h3 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -.02em;
  line-height: 1.25; margin: 0; color: #fff;
}
.cta-bar-actions {
  position: relative; display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 720px){
  .cta-bar { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
  .cta-bar-actions { width: 100%; }
}

/* ---- Section spacing rhythm ---- */
.section { padding: 80px 0; }

/* ---- RTL ---- */
html[dir="rtl"] .body-chip-row,
html[dir="rtl"] .brand-chip-rail,
html[dir="rtl"] .cta-bar { flex-direction: row-reverse; }
html[dir="rtl"] .mkt-tile .mkt-arr,
html[dir="rtl"] .link-arrow,
html[dir="rtl"] .section-link { transform: scaleX(-1); }
html[dir="rtl"] .brand-chip-rail::before { margin-right: 0; margin-left: 14px; }

/* ============================================================
 * MARKET LANDING add-ons — 2026-06-13
 * (most styles inherit from BODY LANDING v2.1)
 * ============================================================ */

/* Port + Language cells use serif italic mid-size, not huge */
.body-stats .bs-n.bs-port {
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  line-height: 1.1;
}

/* Brand panel — 5 columns, magazine list */
.market-brands-sec { padding: 100px 0; }
.market-brand-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
  border-top: 1px solid rgba(26,31,34,.18);
}
.mb-card {
  position: relative;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: background .25s ease;
  display: block;
}
.mb-card + .mb-card { border-left: 1px solid rgba(26,31,34,.12); }
.mb-card:hover { background: var(--bg-soft, #FBF7F1); }
.mb-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: var(--green);
  margin-bottom: 18px;
}
.mb-name {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 1.9vw, 28px);
  color: var(--ink); letter-spacing: -.01em;
  line-height: 1.15;
  min-height: 2.3em;
}
.mb-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(26,31,34,.1);
}
.mb-cnt {
  font-family: var(--font-mono); font-size: 18px; font-weight: 700;
  color: var(--ink); font-feature-settings: "tnum";
}
.mb-cnt small {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: var(--text-2, #8a8f93); margin-left: 6px;
  text-transform: uppercase;
}
.mb-arr {
  color: var(--text-2, #8a8f93); transition: all .2s ease;
}
.mb-card:hover .mb-arr { color: var(--green); transform: translateX(3px); }
@media (max-width: 1000px){
  .market-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-card + .mb-card { border-left: 0; }
  .mb-card:nth-child(odd):not(:first-child),
  .mb-card:nth-child(even) { border-top: 1px solid rgba(26,31,34,.12); }
  .mb-card:nth-child(even) { border-left: 1px solid rgba(26,31,34,.12); }
}
@media (max-width: 560px){
  .market-brand-grid { grid-template-columns: 1fr; }
  .mb-card:not(:first-child) { border-top: 1px solid rgba(26,31,34,.12); border-left: 0 !important; }
}

/* Duty block — 2-column split, light bg */
.duty-sec { background: var(--bg-soft, #FBF7F1); padding: 100px 0; }
.duty-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.duty-col h3 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(26px, 2.4vw, 32px);
  color: var(--ink); letter-spacing: -.02em; line-height: 1.2;
  margin: 14px 0 18px;
}
.duty-col p {
  font-size: 15px; line-height: 1.7; color: var(--text, #2c3236);
  margin: 0 0 24px;
}
.duty-row {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 24px; padding: 18px 0;
  border-top: 1px solid rgba(26,31,34,.12);
}
.duty-row:last-child { border-bottom: 1px solid rgba(26,31,34,.12); }
.duty-row .dr-k {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2, #8a8f93); padding-top: 4px;
}
.duty-row .dr-v {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 18px; color: var(--ink);
  line-height: 1.4; letter-spacing: -.005em;
}
.duty-cta { padding: 32px 36px; background: #fff;
  border-radius: 16px; border: 1px solid rgba(26,31,34,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.04);
}
.duty-cta .duty-cta-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
}
.duty-cta .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(26,31,34,.2); }
.duty-cta .btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.duty-cta .btn-primary { background: var(--ink); color: #fff; }
.duty-cta .btn-primary:hover { background: var(--green); }
@media (max-width: 800px){
  .duty-block { grid-template-columns: 1fr; gap: 40px; }
  .duty-row { grid-template-columns: 1fr; gap: 4px; }
}

/* Process grid — 5 cols on desktop */
.process-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px){ .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* RTL */
html[dir="rtl"] .market-brand-grid .mb-card + .mb-card { border-left: 0; border-right: 1px solid rgba(26,31,34,.12); }

/* ===================================================================
 * PAGE_PATCH_V1 — Market quickfind + cars pagination — 2026-06-13
 * =================================================================== */
.market-quickfind-sec { margin-top: 8px; }
.market-quickfind {
  background: #fff;
  border: 1px solid var(--rule, rgba(26,31,34,.12));
  border-radius: 4px;
  padding: 28px 32px 24px;
  box-shadow: 0 1px 0 rgba(26,31,34,.04);
}
.market-quickfind .mq-head { margin-bottom: 18px; }
.market-quickfind .mq-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green, #1b6149);
  font-weight: 600;
  margin-bottom: 6px;
}
.market-quickfind .mq-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink, #1a1f22);
}
.market-quickfind .mq-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 18px;
  margin-bottom: 18px;
}
.market-quickfind .mq-field { display: flex; flex-direction: column; gap: 6px; }
.market-quickfind .mq-l {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(26,31,34,.55);
  font-weight: 600;
}
.market-quickfind .mq-s {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(26,31,34,.18);
  border-radius: 3px;
  padding: 10px 32px 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink, #1a1f22);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23666' d='M0 0l5 6 5-6z'/></svg>") right 12px center no-repeat;
  cursor: pointer;
  transition: border-color .15s;
}
.market-quickfind .mq-s:hover { border-color: var(--ink, #1a1f22); }
.market-quickfind .mq-s:focus { outline: none; border-color: var(--green, #1b6149); box-shadow: 0 0 0 3px rgba(27,97,73,.12); }
.market-quickfind .mq-actions {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(26,31,34,.08);
}
.market-quickfind .mq-go {
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 500;
}
.market-quickfind .mq-arrow { display: inline-block; margin-left: 4px; transition: transform .2s; }
.market-quickfind .mq-go:hover .mq-arrow { transform: translateX(3px); }
.market-quickfind .mq-all {
  font-size: 13px;
  color: rgba(26,31,34,.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,31,34,.25);
  transition: color .15s, text-decoration-color .15s;
}
.market-quickfind .mq-all:hover { color: var(--green, #1b6149); text-decoration-color: currentColor; }

@media (max-width: 800px) {
  .market-quickfind { padding: 20px; }
  .market-quickfind .mq-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .market-quickfind .mq-fields { grid-template-columns: 1fr; }
  .market-quickfind .mq-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .market-quickfind .mq-go { width: 100%; }
  .market-quickfind .mq-all { text-align: center; }
}

/* --- Cars list pagination --- */
.cars-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 36px 0 8px;
  padding-top: 28px;
  border-top: 1px solid var(--rule, rgba(26,31,34,.12));
}
.cars-pagination .cp-num,
.cars-pagination .cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 14px;
  color: var(--ink, #1a1f22);
  background: #fff;
  border: 1px solid rgba(26,31,34,.14);
  border-radius: 3px;
  text-decoration: none;
  transition: all .15s;
  font-variant-numeric: tabular-nums;
}
.cars-pagination .cp-num:hover,
.cars-pagination .cp-btn:hover { border-color: var(--ink, #1a1f22); background: var(--bg-soft, #f7f5f0); }
.cars-pagination .cp-current {
  background: var(--ink, #1a1f22);
  color: #fff;
  border-color: var(--ink, #1a1f22);
  font-weight: 600;
  cursor: default;
}
.cars-pagination .cp-current:hover { background: var(--ink, #1a1f22); }
.cars-pagination .cp-disabled {
  color: rgba(26,31,34,.3);
  background: rgba(26,31,34,.02);
  border-color: rgba(26,31,34,.08);
  cursor: not-allowed;
}
.cars-pagination .cp-gap {
  color: rgba(26,31,34,.4);
  padding: 0 6px;
  user-select: none;
}
.cars-pagination .cp-prev,
.cars-pagination .cp-next { padding: 0 14px; }
@media (max-width: 600px) {
  .cars-pagination .cp-prev span,
  .cars-pagination .cp-next span { display: none; }
}
