/* ============================================================
   FleetLine Wholesale — LAYOUT WIREFRAME
   Brand palette neutralised to the shared wireframe greys:
   page #ededed · surfaces #e2e2e2 / #dcdcdc · hairlines #c6c6c6 ·
   text #333333 / #777777 · accent mapped to #9a9a9a.
   Type: Public Sans (kept from the original template)
   ============================================================ */

:root {
  --navy: #333333;        /* was brand navy #0e2a47 — now primary text */
  --navy-deep: #333333;
  --navy-soft: #777777;
  --steel-900: #333333;
  --steel-700: #777777;
  --steel-500: #777777;
  --steel-300: #a8a8a8;
  --steel-150: #c6c6c6;   /* hairlines / borders */
  --steel-75: #e2e2e2;    /* surface */
  --paper: #ededed;       /* page background */
  --white: #e2e2e2;       /* card surfaces (was card white) */
  --amber: #9a9a9a;       /* brand accent neutralised */
  --amber-dark: #777777;
  --green: #777777;
  --red: #777777;
  --font: "Public Sans", "Segoe UI", Arial, sans-serif;
  --radius: 6px;
  --shadow-card: none;    /* wireframe: no shadows */
  --shadow-lift: none;
  --header-h: 118px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--steel-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
svg use { pointer-events: none; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--amber-dark); }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 0.95rem; }
p { margin: 0 0 1em; }

.wrap { width: min(1180px, 100% - 48px); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.ic { width: 16px; height: 16px; fill: currentColor; display: inline-block; vertical-align: -3px; }
.ic-lg { width: 26px; height: 26px; fill: currentColor; }

:focus-visible {
  outline: 3px solid var(--pop);
  outline-offset: 2px;
  border-radius: 2px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 0.9em;
}
.eyebrow-amber { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font: inherit; font-weight: 700; font-size: 0.92rem;
  padding: 0.72em 1.35em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pop); color: var(--pop-ink); }
.btn-primary:hover { background: var(--pop); color: var(--pop-ink); filter: brightness(0.85); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 0.85em 1.6em; font-size: 1rem; }
.btn-small {
  font: inherit; font-size: 0.78rem; font-weight: 700;
  padding: 0.4em 0.9em;
  color: var(--navy);
  background: var(--steel-75);
  border: 1px solid var(--steel-150);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn-small:hover { background: var(--steel-150); }
.btn-small.added { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--steel-150);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(14, 42, 71, 0.12); }

.topbar { background: var(--navy); color: rgba(255, 255, 255, 0.85); font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; padding-block: 7px; }
.topbar-item { margin: 0; display: flex; align-items: center; gap: 0.5em; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--amber); }
.topbar-sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.3); }

.header-main { display: flex; align-items: center; gap: 28px; padding-block: 16px; transition: padding 0.2s ease; }
.site-header.scrolled .header-main { padding-block: 9px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; }
.brand-sub { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-500); }

.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--steel-700);
  padding: 0.55em 0.8em; border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.site-nav a:hover { color: var(--navy); background: var(--steel-75); }

.nav-enquiry { display: inline-flex; align-items: center; gap: 0.45em; }
.enquiry-count {
  min-width: 22px; height: 22px; padding-inline: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white);
  border-radius: 999px; font-size: 0.72rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.enquiry-count.bump { background: var(--pop); color: var(--pop-ink); transform: scale(1.2); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--steel-150); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: var(--white); }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 56px;
  padding-block: 72px 56px;
  align-items: center;
}
.hero-copy h1 { color: var(--white); }
.hero .eyebrow { color: var(--amber); }
.lede { font-size: 1.12rem; color: rgba(255, 255, 255, 0.78); max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6em 0 1.8em; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hero-points li { display: flex; align-items: center; gap: 0.6em; font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }
.hero-points .ic { fill: var(--pop); flex-shrink: 0; }

.hero-panel {
  background: var(--white); color: var(--steel-900);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--pop);
}
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.panel-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-500); }
.panel-live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.cutoff { border-bottom: 1px solid var(--steel-150); padding-bottom: 14px; margin-bottom: 14px; }
.cutoff-label { font-size: 0.82rem; color: var(--steel-500); margin-bottom: 2px; }
.cutoff-time {
  font-size: 2rem; font-weight: 800; color: var(--navy);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.cutoff-time.urgent { color: var(--amber-dark); }
.cutoff-note { font-size: 0.78rem; color: var(--steel-500); margin: 0; }

.run-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.run-table th {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel-500); font-weight: 700; padding: 6px 0;
}
.run-table td { padding: 7px 0; border-top: 1px solid var(--steel-75); color: var(--steel-700); }
.run-table td:nth-child(2) { font-variant-numeric: tabular-nums; white-space: nowrap; }
.status {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.status-ok { background: #e3f2ea; color: var(--green); }

.panel-foot { font-size: 0.8rem; color: var(--steel-500); margin: 12px 0 0; }
.panel-foot strong { color: var(--navy); }

/* Stats strip */
.stats-strip { background: var(--navy-deep); border-top: 1px solid rgba(255, 255, 255, 0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 24px 28px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-value {
  font-size: 2.1rem; font-weight: 800; color: var(--white);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em; margin: 0 0 4px;
}
.stat-plus { color: var(--pop); font-size: 0.7em; font-weight: 800; margin-left: 2px; }
.stat-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.62); margin: 0; max-width: 22em; }

/* ---------- Brands ---------- */
.brands { background: var(--white); border-bottom: 1px solid var(--steel-150); padding-block: 30px; }
.brands-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-500);
  margin-bottom: 18px;
}
.brands-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px;
}
.brands-row li {
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--steel-300); text-transform: uppercase;
  transition: color 0.2s ease;
}
.brands-row li:hover { color: var(--navy); }

/* ---------- Sections ---------- */
.section { padding-block: 84px; }
.section-alt { background: var(--steel-75); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2 { color: var(--white); }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 44px;
}
.section-head h2 { margin-bottom: 0; }
.section-intro { color: var(--steel-500); margin: 0; max-width: 34em; justify-self: end; }

/* ---------- Range cards ---------- */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.range-card {
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-radius: 10px;
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.range-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--steel-300);
}
.range-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--steel-75); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.range-card:hover .range-icon { background: var(--navy); color: var(--pop); }
.range-card h3 { margin-bottom: 2px; }
.range-count {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: 12px;
}
.range-card p { font-size: 0.92rem; color: var(--steel-700); }
.range-brands {
  border-top: 1px solid var(--steel-75); padding-top: 12px;
  font-size: 0.8rem !important; font-weight: 600; color: var(--steel-500) !important;
  margin-bottom: 0;
}

/* ---------- Pricing ---------- */
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.ptab {
  font: inherit; font-size: 0.85rem; font-weight: 600;
  padding: 0.5em 1.05em;
  background: var(--white); color: var(--steel-700);
  border: 1px solid var(--steel-150); border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ptab:hover { border-color: var(--navy); color: var(--navy); }
.ptab.active { background: var(--pop); border-color: var(--pop); color: var(--pop-ink); }

.table-scroll {
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-radius: 10px;
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}
.price-table { width: 100%; border-collapse: collapse; min-width: 860px; font-size: 0.9rem; }
.price-table th {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--steel-500); font-weight: 700;
  padding: 14px 18px;
  background: var(--steel-75);
  border-bottom: 1px solid var(--steel-150);
}
.price-table td { padding: 15px 18px; border-bottom: 1px solid var(--steel-75); vertical-align: top; }
.price-table tbody tr { transition: background-color 0.12s ease; }
.price-table tbody tr:hover { background: #fbfcfe; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tr.hidden { display: none; }
.price-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

.part-name { display: block; font-weight: 700; color: var(--navy); }
.part-pos { font-weight: 600; color: var(--steel-500); font-size: 0.85em; }
.part-sku { display: block; font-size: 0.76rem; color: var(--steel-500); margin-top: 3px; }
.fitment { color: var(--steel-700); font-size: 0.85rem; max-width: 240px; }
.price-best { font-weight: 700; color: var(--navy); }

.badge {
  display: inline-block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.badge-oem { background: var(--steel-75); color: var(--steel-700); }
.badge-reman { background: #fdf3dd; color: var(--amber-dark); }
.badge-stock { background: #e3f2ea; color: var(--green); }
.badge-low { background: #fdeeee; color: var(--red); }

/* ---------- Calculator ---------- */
.calc {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-left: 4px solid var(--pop);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
}
.calc-head h3 { margin-bottom: 4px; }
.calc-head p { font-size: 0.88rem; color: var(--steel-500); margin-bottom: 20px; }
.calc-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: start; }

.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--steel-500); margin-bottom: 6px; }
.field-label em { color: var(--amber-dark); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--steel-900);
  padding: 0.65em 0.8em;
  background: var(--white);
  border: 1px solid var(--steel-300); border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.12);
}
.field input.invalid, .field select.invalid { border-color: var(--red); }
.field textarea { resize: vertical; }
.field-qty input { max-width: 140px; font-variant-numeric: tabular-nums; }

.calc-tier { font-size: 0.85rem; color: var(--steel-500); margin: 4px 0 0; }
.calc-tier strong { color: var(--amber-dark); }

.calc-results { margin: 0; }
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--steel-75);
  font-size: 0.92rem;
}
.calc-row dt { color: var(--steel-500); }
.calc-row dd { margin: 0; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc-save { color: var(--green) !important; }
.calc-gross { border-bottom: none; border-top: 2px solid var(--navy); padding-top: 14px; margin-top: 4px; }
.calc-gross dd { font-size: 1.35rem; font-weight: 800; }

/* ---------- Network ---------- */
.network-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: start; }

.depot-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.dtab {
  font: inherit; font-size: 0.85rem; font-weight: 600;
  padding: 0.5em 1em;
  background: var(--white); color: var(--steel-700);
  border: 1px solid var(--steel-150); border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dtab:hover { border-color: var(--navy); color: var(--navy); }
.dtab.active { background: var(--pop); border-color: var(--pop); color: var(--pop-ink); }

.depot-detail {
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
}
.depot-detail h3 { margin-bottom: 6px; }
.depot-address { display: flex; align-items: flex-start; gap: 0.5em; font-size: 0.9rem; color: var(--steel-500); margin-bottom: 18px; }
.depot-address .ic { fill: var(--amber-dark); flex-shrink: 0; margin-top: 3px; }

.depot-facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.depot-facts > div { border-top: 1px solid var(--steel-75); padding-top: 10px; }
.depot-facts dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-500); margin-bottom: 3px; }
.depot-facts dd { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--steel-900); }
.depot-facts > div:last-child { grid-column: 1 / -1; }

.depot-map { margin: 0; }
.depot-map svg {
  width: 100%; height: auto;
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.landmass { fill: var(--steel-75); stroke: var(--steel-300); stroke-width: 2; stroke-linejoin: round; }
.routes line { stroke: var(--steel-300); stroke-width: 1.5; stroke-dasharray: 5 5; }
.dot { fill: var(--navy); stroke: var(--white); stroke-width: 2.5; cursor: pointer; transition: fill 0.15s ease, r 0.15s ease; }
.dot:hover { fill: var(--amber-dark); }
.dot.active { fill: var(--pop); stroke: var(--navy); }
.map-note { font-family: var(--font); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; fill: var(--steel-300); }
.depot-map figcaption { font-size: 0.78rem; color: var(--steel-500); margin-top: 10px; }

/* ---------- Testimonials ---------- */
.slider { max-width: 820px; margin-inline: auto; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.3, 1); }
.slide { flex: 0 0 100%; margin: 0; padding: 0 8px; }
.stars { display: flex; gap: 4px; margin-bottom: 18px; }
.star { width: 18px; height: 18px; fill: var(--pop); }
.star-dim { fill: rgba(255, 255, 255, 0.25); }
.slide p {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.55;
  color: rgba(255, 255, 255, 0.92); font-weight: 500;
  margin-bottom: 22px;
}
.slide footer { display: flex; flex-direction: column; gap: 2px; }
.t-name { font-weight: 700; color: var(--white); }
.t-role { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.35); color: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.slider-btn:hover { border-color: var(--amber); color: var(--amber); }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: rgba(255, 255, 255, 0.3); border: none; cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.slider-dots button.active { background: var(--pop); transform: scale(1.25); }

/* ---------- Trade account ---------- */
.account-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.account-copy p { color: var(--steel-700); }
.account-list { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 10px; }
.account-list li { display: flex; align-items: flex-start; gap: 0.6em; font-size: 0.93rem; color: var(--steel-900); }
.account-list .ic { fill: var(--amber-dark); flex-shrink: 0; margin-top: 4px; }
.account-note {
  background: var(--steel-75); border-radius: 10px; padding: 16px 20px;
  font-size: 0.88rem;
}
.account-note p { margin: 0; }

.trade-form {
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-top: 4px solid var(--navy);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 30px 32px;
}
.trade-form h3 { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { display: block; font-size: 0.76rem; font-weight: 600; color: var(--red); margin-top: 4px; min-height: 1em; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-small { font-size: 0.78rem; color: var(--steel-500); text-align: center; margin: 12px 0 0; }

.form-success {
  background: var(--white);
  border: 1px solid var(--steel-150);
  border-top: 4px solid var(--pop);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 48px 32px;
  text-align: center;
}
.success-mark { width: 64px; height: 64px; margin: 0 auto 20px; }
.form-success p { color: var(--steel-700); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-block: 56px 44px;
}
.footer-brand p { font-size: 0.88rem; max-width: 30em; margin-top: 16px; }
.brand-footer .brand-name { color: var(--white); }
.brand-footer .brand-sub { color: rgba(255, 255, 255, 0.5); }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 0.88rem; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); }
.footer-col a:hover { color: var(--amber); }
.footer-col address { font-style: normal; line-height: 1.6; }
.footer-hours { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); margin: 4px 0 0; }
.footer-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-block: 18px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.45); }
.footer-bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bar p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 52px 44px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-intro { justify-self: start; }
  .range-grid { grid-template-columns: 1fr 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; gap: 36px; }
  .calc-body { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding-left: 0; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:nth-child(-n + 2) { border-top: none; }

  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white);
    border-bottom: 1px solid var(--steel-150);
    box-shadow: 0 16px 28px rgba(14, 42, 71, 0.14);
    padding: 12px 24px 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75em 0.5em; border-bottom: 1px solid var(--steel-75); }
  .site-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

@media (max-width: 640px) {
  .wrap { width: min(1180px, 100% - 36px); }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  .brand-sub { display: none; }
  .section { padding-block: 60px; }
  .range-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
  .stat:nth-child(-n + 2) { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:first-child { border-top: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .depot-facts { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trade-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-block: 44px 32px; }
  .footer-bar-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slider-track { transition: none; }
  .live-dot { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   LAYOUT WIREFRAME OVERRIDES
   Everything below flattens the original dark navy sections to
   the shared light wireframe palette: page #ededed, surfaces
   #e2e2e2 / #dcdcdc, hairlines #c6c6c6, text #333333 / #777777,
   any accent mapped to #9a9a9a. No gradients, shadows or brand
   colours. Layout, fonts and interactions are unchanged.
   ============================================================ */

/* --- Formerly dark sections, now light surfaces --- */
.topbar { background: #dcdcdc; color: #777777; }
.topbar a { color: #333333; }
.topbar a:hover { color: #777777; }
.topbar-sep { background: #a8a8a8; }

.hero { background: #dcdcdc; color: #333333; }
.hero-copy h1 { color: #333333; }
.hero .eyebrow { color: #777777; }
.lede { color: #777777; }
.hero-points li { color: #777777; }
.hero-points .ic { fill: var(--pop); }
.hero-panel {
  background: #e2e2e2;
  border: 1px solid #c6c6c6;
  border-top: 4px solid var(--pop);
  box-shadow: none;
}

.btn-ghost { border-color: #a8a8a8; color: #333333; }
.btn-ghost:hover { border-color: #777777; color: #333333; }

.stats-strip { background: #e2e2e2; border-top: 1px solid #c6c6c6; }
.stat { border-left-color: #c6c6c6; }
.stat-value { color: #333333; }
.stat-label { color: #777777; }

.section-navy { background: #dcdcdc; color: #333333; }
.section-navy h2 { color: #333333; }
.eyebrow-amber { color: #777777; }
.slide p { color: #333333; }
.t-name { color: #333333; }
.t-role { color: #777777; }
.star { fill: var(--pop); }
.star-dim { fill: #c6c6c6; }
.slider-btn { border-color: #a8a8a8; color: #777777; }
.slider-btn:hover { border-color: #777777; color: #333333; }
.slider-dots button { background: #c6c6c6; }
.slider-dots button.active { background: var(--pop); }

.site-footer { background: #dcdcdc; color: #777777; }
.brand-footer .brand-name { color: #333333; }
.brand-footer .brand-sub { color: #777777; }
.footer-col h4 { color: #333333; }
.footer-col a { color: #777777; }
.footer-col a:hover { color: #333333; }
.footer-hours { color: #777777; }
.footer-bar { border-top-color: #c6c6c6; color: #777777; }

/* --- Shadows removed; header gets a plain hairline --- */
.site-header { box-shadow: none; border-bottom: 1px solid #c6c6c6; }
.site-header.scrolled { box-shadow: none; }
.range-card:hover { transform: none; box-shadow: none; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: none; }

/* --- Surfaces that became same-grey after neutralising --- */
.range-icon { background: #dcdcdc; }
.price-table th { background: #dcdcdc; }
.price-table tbody tr:hover { background: #dcdcdc; }
.field input, .field select, .field textarea { background: #ededed; }

/* --- Status pills / badges: single neutral treatment --- */
.status-ok { background: #dcdcdc; color: #777777; }
.badge-oem, .badge-reman, .badge-low { background: #dcdcdc; color: #777777; }
.badge-stock { background: var(--pop); color: var(--pop-ink); }

/* --- Hairlines that were near-white, now visible on grey surfaces --- */
.run-table td, .price-table td, .calc-row, .range-brands,
.depot-facts > div, .site-nav a { border-color: #c6c6c6; }
.calc-gross { border-top-color: #333333; } /* keep the totals separator strong */

/* --- Placeholder boxes (logo + map) --- */
.logo-ph {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #dcdcdc; border: 1px dashed #a8a8a8; border-radius: 2px;
  font: 500 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em; color: #777777;
}
.map-ph {
  width: 100%; aspect-ratio: 3 / 4; /* matches original 360x480 map */
  display: flex; align-items: center; justify-content: center;
  background: #dcdcdc; border: 1px dashed #a8a8a8; border-radius: 10px;
  font: 500 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em; color: #777777;
}

@media (max-width: 960px) {
  .stat { border-top-color: #c6c6c6; }
  .site-nav { box-shadow: none; }
}
@media (max-width: 640px) {
  .stat, .stat:nth-child(-n + 2) { border-top-color: #c6c6c6; }
}

/* ============================================================
   COLOUR OPTION
   Accent re-theme variables for the #wire-colour widget in
   index.html. Every accent surface above (primary CTAs, active
   tabs, stock badges, stars, focus ring, key highlights) reads
   var(--pop); text sitting on the accent reads var(--pop-ink).
   Defaults keep the wireframe grey; the widget overrides these
   on <html> when a colour is picked.
   ============================================================ */
:root {
  --pop: #9a9a9a;
  --pop-ink: #ffffff;
}
