

:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --green: #128c7e;
  --red: #b42318;
  --blue: #2557a7;
  --gold: #b7791f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 230px; }
.brandMark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}
.brand small { display: block; color: var(--muted); font-size: 11px; }
nav { display: flex; align-items: center; gap: 20px; color: #344054; font-size: 14px; }
.navCta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 700;
}
.button.secondary { color: var(--ink); background: white; border: 1px solid var(--line); }
.button.dark { background: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 680px;
  gap: 40px;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(17,24,39,.94), rgba(37,87,167,.78)),
    url("/assets/hero-cars.png");
  background-size: cover;
  background-position: center;
  color: white;
}
.heroCopy { align-self: center; max-width: 820px; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f7c46c; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}
h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.08; margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 10px; }
.hero p { max-width: 720px; color: rgba(255,255,255,.86); font-size: 19px; }
.heroActions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.heroVisual {
  align-self: center;
  display: grid;
  gap: 16px;
}
.vehicleCard, .routeCard, .metrics {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 22px;
}
.vehicleCard.main { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; }
.vehicleCard span { color: #f7c46c; font-weight: 800; }
.vehicleCard b { display: block; margin: 8px 0; font-size: 30px; line-height: 1.08; }
.routeCard { font-weight: 800; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 14px; }
.metrics strong { font-size: 32px; }
.metrics span { color: rgba(255,255,255,.75); }

.section, .page, .articlePage {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
}
.section.tight { background: white; }
.noPad { padding-left: 0; padding-right: 0; }
.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.sectionHead a { color: var(--blue); font-weight: 800; }
.intro { max-width: 980px; color: var(--muted); font-size: 19px; }
.featureGrid, .modelGrid, .countryGrid, .languageGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature, .modelCard, .countryCard, .languageGrid a, .notice, .leadPanel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.feature { padding: 24px; }
.feature p, .modelCard p, .countryCard span, .languageGrid span { color: var(--muted); }
.modelCard { overflow: hidden; }
.modelCard h3, .modelCard p, .modelCard span, .modelCard a { margin-left: 16px; margin-right: 16px; }
.modelCard span { display: block; min-height: 48px; }
.modelCard a { display: inline-flex; margin-top: 16px; margin-bottom: 18px; color: var(--green); font-weight: 800; }
.carPhoto {
  height: 168px;
  background:
    linear-gradient(145deg, rgba(17,24,39,.08), rgba(18,140,126,.18)),
    radial-gradient(circle at 28% 58%, #202a3a 0 12px, transparent 13px),
    radial-gradient(circle at 74% 58%, #202a3a 0 12px, transparent 13px),
    linear-gradient(8deg, transparent 42%, #ffffff 43% 55%, transparent 56%),
    linear-gradient(0deg, #c8d5df 0 58%, #eaf0f4 59%);
}
.carPhoto.p1 { background-color: #e9f4f1; }
.carPhoto.p2 { background-color: #edf1f8; }
.carPhoto.p3 { background-color: #f4efe8; }
.countryCard, .languageGrid a { padding: 16px; display: grid; gap: 4px; }
.region { margin-top: 34px; }
.brandCloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 34px; }
.brandCloud span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  font-weight: 800;
}
.statsLine { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.statsLine span {
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.twoCol { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.twoCol section, .articlePage section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.cleanList { padding-left: 20px; color: var(--muted); }
.notice { border-left: 4px solid var(--gold); }
.articleGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.articleGrid a {
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #27364a;
  font-weight: 700;
}
.articlePage { max-width: 1180px; margin: 0 auto; }
.articlePage h1 { font-size: clamp(36px, 5vw, 62px); color: var(--ink); }
.articlePage section { margin: 16px 0; }
.faq { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
.leadPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #eef8f6);
}
.leadPanel p { max-width: 760px; color: var(--muted); }
.footer {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: #111827;
  color: white;
}
.footer p, .footer a { display: block; color: rgba(255,255,255,.74); margin-top: 8px; }

@media (max-width: 980px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .featureGrid, .modelGrid, .countryGrid, .languageGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .twoCol, .footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 40px; }
  .brand { min-width: 0; }
  .hero, .section, .page, .articlePage { padding-left: 16px; padding-right: 16px; }
  .featureGrid, .modelGrid, .countryGrid, .languageGrid, .articleGrid { grid-template-columns: 1fr; }
  .sectionHead, .leadPanel { align-items: stretch; flex-direction: column; }
  .metrics { grid-template-columns: 1fr; }
}
