/* ============================================================
   Upright Forklift Repair - Static homepage preview
   Direction C: Heavy-Industrial / Forged
   Brand system: brand-system.md (2026-04-26 redo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* color tokens - concrete + graphite + steel */
  --color-primary: #24891f;          /* phone-CTA green only */
  --color-primary-700: #1d6e18;
  --color-primary-50: #eaf5e9;

  --color-steel: #2d3e52;            /* secondary accent */
  --color-steel-700: #1f2c3a;
  --color-steel-300: #6a7c91;

  --color-ink: #1a1d20;              /* graphite, not pure black */
  --color-ink-deep: #0f1113;
  --color-text: #2a2d31;
  --color-text-muted: #5a5d62;
  --color-text-dim: #8a8d92;

  --color-bg: #f0eee9;               /* warm cream concrete */
  --color-surface: #e8e6e1;          /* mid concrete */
  --color-surface-2: #d9d6cf;        /* deep concrete band */
  --color-paper: #faf8f3;            /* card top, lighter than bg */

  --color-border: #c5c2bb;           /* warm hairline */
  --color-border-strong: #a8a59e;
  --color-border-dark: #2a2d31;

  --color-warning: #b85d00;
  --color-success: #16a34a;

  /* spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-12: 48px; --space-16: 64px;
  --space-24: 96px; --space-32: 128px;

  /* type */
  --font-display: 'Barlow Condensed', 'Helvetica Neue Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* surface treatments */
  --brushed-paper: linear-gradient(180deg, var(--color-paper) 0%, #f3f0eb 100%);
  --brushed-graphite: linear-gradient(180deg, #22262a 0%, #1a1d20 100%);
  --hairline: 1px solid var(--color-border);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--color-steel); text-decoration: none; }
a:hover { color: var(--color-primary); text-decoration: none; }

/* ============================================================
   layout
   ============================================================ */

.container { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-tight { padding: var(--space-16) 0; }
.section-band { background: var(--color-surface); }
.section-band-2 { background: var(--color-ink); color: #f0eee9; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-steel);
  margin-bottom: var(--space-4);
  display: inline-block;
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-steel);
}
.section-band-2 .eyebrow { color: #c5c2bb; border-bottom-color: #c5c2bb; }

/* ============================================================
   typography - condensed display, generous body
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  letter-spacing: -0.005em;
  line-height: 1.0;
  font-weight: 800;
  text-transform: uppercase;
}
.section-band-2 h1, .section-band-2 h2, .section-band-2 h3 { color: #faf8f3; }

h1 { font-size: 4.5rem; }
h1.hero { font-size: 5.5rem; line-height: 0.95; font-weight: 900; }
h2 { font-size: 3.25rem; line-height: 1.0; margin-bottom: var(--space-6); font-weight: 800; }
h3 {
  font-size: 1.625rem;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-body);
}
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); text-transform: none; }

.lede { font-size: 1.1875rem; line-height: 1.55; color: var(--color-text-muted); max-width: 60ch; }
.section-band-2 .lede { color: rgba(245, 243, 238, 0.78); }

p + p { margin-top: var(--space-4); }
p { max-width: 70ch; }

ul.bullets { padding-left: var(--space-6); }
ul.bullets li { margin-bottom: var(--space-2); }

.num, .stat-number, .stat-label, .phone, .meta { font-variant-numeric: tabular-nums; }

/* ============================================================
   buttons - sharp corners, weighty, industrial
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: var(--color-primary-700);
  border-color: var(--color-primary-700);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn-secondary:hover { background: var(--color-ink); color: var(--color-paper); text-decoration: none; }
.section-band-2 .btn-secondary,
.process .btn-secondary { color: var(--color-paper); border-color: var(--color-paper); }
.section-band-2 .btn-secondary:hover,
.process .btn-secondary:hover { background: var(--color-paper); color: var(--color-ink); }

.btn .icon { width: 20px; height: 20px; flex: 0 0 20px; }

/* ============================================================
   header - graphite slab with steel-blue accent bar
   ============================================================ */

.site-header {
  background: var(--brushed-graphite);
  color: var(--color-paper);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--color-steel);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: var(--space-6);
}
.site-header .logo img { height: 50px; width: auto; }
.site-nav {
  display: flex;
  gap: var(--space-8);
  margin-left: auto;
  margin-right: var(--space-6);
}
.site-nav a {
  color: rgba(245, 243, 238, 0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--color-primary); text-decoration: none; }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--color-primary); }
.site-header .btn { padding: 14px 22px; font-size: 0.9375rem; }

.nav-toggle { display: none; }

/* ============================================================
   hero - graphite slab with steel-frame image
   ============================================================ */

.hero {
  background: var(--color-ink);
  color: var(--color-paper);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(45, 62, 82, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(36, 137, 31, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(135deg, transparent 0 6px, rgba(255,255,255,0.012) 6px 7px);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-32) 0 var(--space-24);
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--color-paper); }
.hero .eyebrow { color: var(--color-paper); border-bottom-color: var(--color-steel-300); }
.hero h1 { color: var(--color-paper); margin-bottom: var(--space-6); }
.hero .subhead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.82);
  margin-bottom: var(--space-12);
  max-width: 56ch;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
  border: 3px solid var(--color-steel);
  border-radius: 0;
  overflow: visible;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: contrast(1.05) saturate(0.9);
  display: block;
}
/* corner brackets - industrial frame look */
.hero-image::before, .hero-image::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 3px solid var(--color-primary);
  z-index: 2;
}
.hero-image::before {
  top: -12px; left: -12px;
  border-right: none; border-bottom: none;
}
.hero-image::after {
  bottom: -12px; right: -12px;
  border-left: none; border-top: none;
}
.hero-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: var(--color-ink);
  color: var(--color-paper);
  border: 1px solid var(--color-steel-300);
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  z-index: 3;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.hero-cta-note {
  font-size: 0.9375rem;
  color: rgba(245, 243, 238, 0.6);
  margin-top: var(--space-4);
  font-family: var(--font-body);
}
.hero-link {
  color: var(--color-paper);
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 243, 238, 0.4);
  padding-bottom: 2px;
}
.hero-link:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }

/* ============================================================
   trust strip - concrete band, ink numerals, steel rules
   ============================================================ */

.trust-strip {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: var(--space-12) 0;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--color-border-strong);
  padding: var(--space-2) var(--space-6);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ============================================================
   split section
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split-text h2 { margin-bottom: var(--space-6); }
.split-text p { font-size: 1.125rem; line-height: 1.65; color: var(--color-text); }

.callout {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-6);
  border-radius: 0;
  margin-top: var(--space-8);
  font-size: 1.0625rem;
}
.callout strong { color: var(--color-ink); font-weight: 700; }

/* ============================================================
   service cards - brushed-paper, sharp corners, hairline borders
   ============================================================ */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.card {
  background: var(--brushed-paper);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-ink);
  border-radius: 0;
  padding: var(--space-8);
  transition: all 0.2s;
  position: relative;
}
.card:hover {
  border-top-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 29, 32, 0.08);
}
.card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-steel);
  margin-bottom: var(--space-4);
}
.card h3 { color: var(--color-ink); margin-bottom: var(--space-3); }
.card p { color: var(--color-text-muted); }

/* ============================================================
   brand strip - concrete band, steel hairlines, condensed wordmarks
   ============================================================ */

.brand-strip {
  background: var(--color-surface);
}
.brand-strip h2 { margin-bottom: var(--space-3); }
.brand-strip .lede { margin-bottom: var(--space-12); }
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr 1fr;
  gap: 0;
  margin-bottom: var(--space-8);
  align-items: stretch;
  border: 1px solid var(--color-border-strong);
  background: var(--color-paper);
}
.brand-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid var(--color-border);
  background: var(--brushed-paper);
  transition: background 0.25s ease, transform 0.25s ease;
}
.brand-cell:last-child { border-right: none; }
.brand-cell img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) opacity(0.78);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.brand-cell-wide img { max-height: 38px; }
.brand-cell:hover {
  background: var(--color-paper);
}
.brand-cell:hover img {
  filter: grayscale(1) brightness(0) opacity(1);
  transform: scale(1.04);
}
.brand-note {
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-steel);
  border-radius: 0;
  padding: var(--space-6);
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* ============================================================
   testimonials
   ============================================================ */

.testimonials .quote-mark {
  width: 28px;
  height: 28px;
  color: var(--color-steel);
  margin-bottom: var(--space-3);
}
.testimonial-stars {
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  color: #f5a623;
  margin-bottom: var(--space-4);
  line-height: 1;
}
.testimonial p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}
.testimonial .attrib {
  font-size: 0.8125rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial .attrib .name { font-weight: 700; color: var(--color-ink); }
.testimonial .attrib .role { color: var(--color-text-muted); font-weight: 500; }

.review-summary {
  margin-top: var(--space-12);
  text-align: center;
  padding: var(--space-8);
  background: var(--brushed-paper);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 0;
}
.review-summary .stars {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.review-summary .summary-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-summary a {
  display: inline-block;
  margin-top: var(--space-3);
  font-weight: 600;
  color: var(--color-steel);
}

/* ============================================================
   coverage
   ============================================================ */

.coverage .lede { margin-bottom: var(--space-8); }
.coverage-areas {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text);
  max-width: 70ch;
  margin-bottom: var(--space-12);
}
.coverage-areas strong { color: var(--color-ink); font-weight: 600; }
.map-embed {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  border-radius: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ============================================================
   process - graphite band, steel-blue numerals
   ============================================================ */

.process {
  background: var(--brushed-graphite);
  color: var(--color-paper);
  position: relative;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(255,255,255,0.012) 8px 9px);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process h2 { color: var(--color-paper); }
.process .lede { color: rgba(245, 243, 238, 0.7); margin-bottom: var(--space-12); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-16);
  border-top: 1px solid rgba(245, 243, 238, 0.18);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: var(--space-4); left: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-steel-300);
  letter-spacing: -0.02em;
  line-height: 1;
}
.step h3 { color: var(--color-paper); margin-bottom: var(--space-3); }
.step p { color: rgba(245, 243, 238, 0.78); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-12);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-6);
}
.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.faq-a {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   final CTA + form - steel band with green action
   ============================================================ */

.final-cta {
  background: var(--color-steel);
  color: var(--color-paper);
  text-align: center;
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(255,255,255,0.025) 8px 9px);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--color-paper); font-size: 4rem; margin-bottom: var(--space-6); }
.final-cta .lede { color: rgba(245, 243, 238, 0.92); margin: 0 auto var(--space-8); max-width: 56ch; }
.final-cta .btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.final-cta .btn-primary:hover { background: var(--color-primary-700); border-color: var(--color-primary-700); color: #fff; }
.final-cta .btn-secondary { color: var(--color-paper); border-color: var(--color-paper); background: transparent; }
.final-cta .btn-secondary:hover { background: var(--color-paper); color: var(--color-steel); border-color: var(--color-paper); }

.form-block {
  background: var(--color-paper);
  color: var(--color-text);
  text-align: left;
  border-radius: 0;
  border-top: 4px solid var(--color-primary);
  padding: var(--space-12);
  max-width: 640px;
  margin: var(--space-12) auto 0;
  box-shadow: 0 12px 40px rgba(15, 17, 19, 0.25);
}
.form-block h3 {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}
.form-block .form-sub { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: var(--space-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink);
}
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 0;
  background: #fff;
  color: var(--color-text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-ink);
  box-shadow: 0 0 0 3px rgba(45, 62, 82, 0.15);
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-block .btn { width: 100%; justify-content: center; margin-top: var(--space-4); }
.final-cta .form-block .btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.final-cta .form-block .btn-primary:hover { background: var(--color-primary-700); border-color: var(--color-primary-700); color: #fff; }
.form-required { color: var(--color-warning); }
.form-disclaimer {
  margin-top: var(--space-4);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   footer - deep graphite slab
   ============================================================ */

.site-footer {
  background: var(--color-ink-deep);
  color: rgba(245, 243, 238, 0.85);
  padding: var(--space-16) 0 var(--space-6);
  border-top: 3px solid var(--color-steel);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(245, 243, 238, 0.1);
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-steel);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a { color: rgba(245, 243, 238, 0.7); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--color-primary); text-decoration: none; }
.footer-brand .logo img { height: 56px; margin-bottom: var(--space-4); }
.footer-brand p { font-size: 0.9375rem; color: rgba(245, 243, 238, 0.7); max-width: 30ch; }
.footer-nap { font-size: 0.9375rem; color: rgba(245, 243, 238, 0.85); }
.footer-nap a { color: var(--color-paper); }
.footer-nap a:hover { color: var(--color-primary); }
.footer-bottom {
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(245, 243, 238, 0.5);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom a { color: rgba(245, 243, 238, 0.7); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: rgba(245, 243, 238, 1); }

/* ============================================================
   utility
   ============================================================ */

.center { text-align: center; }

.preview-banner {
  background: var(--color-warning);
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 12px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   responsive
   ============================================================ */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid rgba(245, 243, 238, 0.2);
    color: var(--color-paper);
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: 2px;
    cursor: pointer;
  }
  .site-header { position: relative; }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-ink, #0f1113);
    border-top: 1px solid var(--color-border-strong, rgba(245, 243, 238, 0.15));
    padding: var(--space-4, 16px) 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  .site-header.nav-open .site-nav a {
    padding: 14px var(--space-6, 24px);
    border-bottom: 1px solid rgba(245, 243, 238, 0.06);
  }
  .site-header.nav-open .site-nav a:last-child { border-bottom: none; }
  h1 { font-size: 3rem; }
  h1.hero { font-size: 3.25rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.375rem; }
  .section { padding: var(--space-16) 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    padding: var(--space-16) 0 var(--space-12);
  }
  .hero-image { aspect-ratio: 16 / 10; max-height: 360px; }
  .hero .subhead { font-size: 1.0625rem; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .cards-3, .steps { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-cell { border-right: none; border-bottom: 1px solid var(--color-border); padding: var(--space-6) var(--space-4); }
  .brand-cell-wide { order: 99; }
  .brand-cell:last-child { border-bottom: none; }
  .brand-cell img { max-height: 36px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid var(--color-border-strong); padding: var(--space-6) var(--space-4); }
  .stat:nth-child(odd) { border-right: 1px solid var(--color-border-strong); }
  .stat-number { font-size: 2.5rem; }
  .stat:nth-child(5) { display: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .form-row { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 2.5rem; }
}

@media (max-width: 540px) {
  .container { padding: 0 var(--space-4); }
  .site-header .btn { padding: 10px 14px; font-size: 0.8125rem; }
  .site-header .btn span.cta-text { display: none; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .stat-number { font-size: 2rem; }
}

/* ============================================================
   motion - tasteful, restrained, premium-industrial
   ============================================================ */

/* hero entrance */
@keyframes ufHeroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ufHeroBracketIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes ufHeroImageReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero .eyebrow { animation: ufHeroFadeUp 0.7s 0.05s both ease-out; }
.hero h1 { animation: ufHeroFadeUp 0.8s 0.15s both ease-out; }
.hero .subhead { animation: ufHeroFadeUp 0.8s 0.3s both ease-out; }
.hero-cta-row { animation: ufHeroFadeUp 0.8s 0.45s both ease-out; }
.hero-cta-note { animation: ufHeroFadeUp 0.7s 0.6s both ease-out; }
.hero-image { animation: ufHeroImageReveal 1s 0.2s both ease-out; }
.hero-image::before { animation: ufHeroBracketIn 0.5s 0.9s both cubic-bezier(.6,1.4,.5,1); }
.hero-image::after { animation: ufHeroBracketIn 0.5s 1.0s both cubic-bezier(.6,1.4,.5,1); }
.hero-image:hover img { transform: scale(1.02); }
.hero-image img { transition: transform 6s ease-out; }

/* generic scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* stat number entrance + count-up wrap */
.stat { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.trust-strip.is-visible .stat { opacity: 1; transform: translateY(0); }
.trust-strip.is-visible .stat:nth-child(1) { transition-delay: 0.0s; }
.trust-strip.is-visible .stat:nth-child(2) { transition-delay: 0.08s; }
.trust-strip.is-visible .stat:nth-child(3) { transition-delay: 0.16s; }
.trust-strip.is-visible .stat:nth-child(4) { transition-delay: 0.24s; }
.trust-strip.is-visible .stat:nth-child(5) { transition-delay: 0.32s; }

/* card stagger inside .cards-3 reveals */
.cards-3.is-visible .card { animation: ufHeroFadeUp 0.6s both ease-out; }
.cards-3.is-visible .card:nth-child(1) { animation-delay: 0.0s; }
.cards-3.is-visible .card:nth-child(2) { animation-delay: 0.1s; }
.cards-3.is-visible .card:nth-child(3) { animation-delay: 0.2s; }

/* brand cell stagger */
.brand-grid.is-visible .brand-cell { animation: ufHeroFadeUp 0.6s both ease-out; }
.brand-grid.is-visible .brand-cell:nth-child(1) { animation-delay: 0.05s; }
.brand-grid.is-visible .brand-cell:nth-child(2) { animation-delay: 0.15s; }
.brand-grid.is-visible .brand-cell:nth-child(3) { animation-delay: 0.25s; }
.brand-grid.is-visible .brand-cell:nth-child(4) { animation-delay: 0.35s; }

/* process steps stagger */
.steps.is-visible .step { animation: ufHeroFadeUp 0.7s both ease-out; }
.steps.is-visible .step:nth-child(1) { animation-delay: 0.0s; }
.steps.is-visible .step:nth-child(2) { animation-delay: 0.15s; }
.steps.is-visible .step:nth-child(3) { animation-delay: 0.3s; }

/* button micro-interactions */
.btn { transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(36,137,31,0.32), inset 0 -3px 0 rgba(0,0,0,0.2); }
.btn:active { transform: translateY(0); }

/* respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .stat { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   estimate wizard - multi-step form
   ============================================================ */
.wizard {
  max-width: 760px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  box-shadow: 0 16px 50px rgba(15, 23, 32, 0.10);
  overflow: hidden;
  position: relative;
}
.wizard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary, #24891f), var(--color-secondary, #2d3e52));
  z-index: 1;
}

.wizard-progress {
  padding: 18px 28px 14px;
  background: var(--color-concrete-2, #e8e6e1);
  border-bottom: 1px solid var(--color-border, #d9d6cf);
}
.wizard-progress-bar {
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary, #24891f), var(--color-secondary, #2d3e52));
  width: 12.5%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 999px;
}
.wizard-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b6b67);
}
.wizard-step-counter strong { color: var(--color-ink, #1a1d20); font-weight: 700; }

.wizard-form {
  position: relative;
  min-height: 540px;
}
.wizard-step {
  padding: 44px 48px 36px;
  display: none;
  animation: wizardStepIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.wizard-step.is-active { display: block; }
@keyframes wizardStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wizard-step.shake { animation: wizardShake 0.4s ease; }
@keyframes wizardShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

.wizard-eyebrow {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary, #2d3e52);
  margin: 0 0 12px;
  font-weight: 700;
}
.wizard-question {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--color-ink, #1a1d20);
  margin: 0 0 10px;
  font-weight: 700;
}
.wizard-help {
  color: var(--color-text-muted, #6b6b67);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 28px;
}
.wizard-sublabel {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b6b67);
  margin: 24px 0 12px;
  font-weight: 700;
}

/* OPTION GRID - service cards */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.option-card {
  appearance: none;
  font: inherit;
  background: var(--color-concrete-1, #f0eee9);
  border: 2px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  padding: 18px 16px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-ink, #1a1d20);
  position: relative;
  min-height: 130px;
}
.option-card:hover {
  border-color: var(--color-secondary, #2d3e52);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45, 62, 82, 0.12);
}
.option-card.is-selected {
  border-color: var(--color-primary, #24891f);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 137, 31, 0.18), 0 8px 22px rgba(36, 137, 31, 0.10);
  transform: translateY(-2px);
}
.option-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary, #24891f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  animation: checkPop 0.3s ease;
}
@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.option-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--color-concrete-3, #d9d6cf);
  border-radius: 4px;
  color: var(--color-secondary, #2d3e52);
  margin-bottom: 4px;
  transition: all 0.2s ease;
}
.option-card:hover .option-icon,
.option-card.is-selected .option-icon {
  background: var(--color-secondary, #2d3e52);
  color: #fff;
}
.option-card.is-selected .option-icon {
  background: var(--color-primary, #24891f);
}
.option-icon svg { width: 22px; height: 22px; }
.option-card strong {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 1.0625rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--color-ink, #1a1d20);
  line-height: 1.2;
  font-weight: 700;
}
.option-sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6b67);
  line-height: 1.4;
}

/* OPTION LIST - urgency stacked rows */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option-row {
  appearance: none;
  font: inherit;
  background: var(--color-concrete-1, #f0eee9);
  border: 2px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-ink, #1a1d20);
}
.option-row:hover {
  border-color: var(--color-secondary, #2d3e52);
  background: #fff;
  transform: translateX(3px);
}
.option-row.is-selected {
  border-color: var(--color-primary, #24891f);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 137, 31, 0.18);
}
.option-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
}
.option-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.22;
  z-index: -1;
}
.option-dot.dot-red { background: #d23a3a; box-shadow: 0 0 0 4px rgba(210, 58, 58, 0.18), 0 0 14px rgba(210, 58, 58, 0.45); animation: pulseRed 1.6s ease-in-out infinite; }
.option-dot.dot-orange { background: #e8852b; box-shadow: 0 0 0 4px rgba(232, 133, 43, 0.18); }
.option-dot.dot-yellow { background: #d8b21d; box-shadow: 0 0 0 4px rgba(216, 178, 29, 0.18); }
.option-dot.dot-green { background: var(--color-primary, #24891f); box-shadow: 0 0 0 4px rgba(36, 137, 31, 0.18); }
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 4px rgba(210, 58, 58, 0.18), 0 0 14px rgba(210, 58, 58, 0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(210, 58, 58, 0.10), 0 0 18px rgba(210, 58, 58, 0.65); }
}
.option-row-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.option-row-text strong {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 1.0625rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--color-ink, #1a1d20);
  font-weight: 700;
}
.option-row-text span {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6b67);
}
.option-row-arrow {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted, #6b6b67);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.option-row:hover .option-row-arrow,
.option-row.is-selected .option-row-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-primary, #24891f);
}

/* BRAND PICKER - logo grid */
.brand-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}
.brand-option {
  appearance: none;
  font: inherit;
  background: var(--color-concrete-1, #f0eee9);
  border: 2px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  padding: 22px 12px 14px;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
}
.brand-option img {
  height: 36px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) opacity(0.78);
  transition: filter 0.2s ease;
}
.brand-option:hover {
  border-color: var(--color-secondary, #2d3e52);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45, 62, 82, 0.10);
}
.brand-option:hover img { filter: grayscale(0) brightness(1) opacity(1); }
.brand-option.is-selected {
  border-color: var(--color-primary, #24891f);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 137, 31, 0.18);
}
.brand-option.is-selected img { filter: grayscale(0) brightness(1) opacity(1); }
.brand-option span {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink, #1a1d20);
  font-weight: 700;
  text-align: center;
}
.brand-option-text .brand-text-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--color-concrete-3, #d9d6cf);
  color: var(--color-secondary, #2d3e52);
  border-radius: 4px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}
.brand-option-text:hover .brand-text-icon,
.brand-option-text.is-selected .brand-text-icon {
  background: var(--color-primary, #24891f);
  color: #fff;
}

/* FLEET PICKER */
.fleet-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.fleet-card {
  appearance: none;
  font: inherit;
  background: var(--color-concrete-1, #f0eee9);
  border: 2px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  padding: 26px 14px 18px;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.fleet-card:hover {
  border-color: var(--color-secondary, #2d3e52);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45, 62, 82, 0.12);
}
.fleet-card.is-selected {
  border-color: var(--color-primary, #24891f);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 137, 31, 0.18);
}
.fleet-num {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 2.25rem;
  color: var(--color-ink, #1a1d20);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 700;
}
.fleet-card.is-selected .fleet-num { color: var(--color-primary, #24891f); }
.fleet-card span:last-child {
  font-size: 0.75rem;
  color: var(--color-text-muted, #6b6b67);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-weight: 600;
}

/* CHIP ROW */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  appearance: none;
  font: inherit;
  background: var(--color-concrete-1, #f0eee9);
  border: 1.5px solid var(--color-border, #d9d6cf);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.16s ease;
  font-size: 0.875rem;
  color: var(--color-ink, #1a1d20);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip:hover {
  border-color: var(--color-secondary, #2d3e52);
  background: #fff;
}
.chip.is-selected {
  border-color: var(--color-primary, #24891f);
  background: var(--color-primary, #24891f);
  color: #fff;
}
.chip-icon {
  font-size: 0.875rem;
  opacity: 0.85;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-weight: 700;
}
.chip-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* INPUT SUFFIX */
.input-suffix {
  position: relative;
  display: flex;
  align-items: center;
}
.input-suffix input {
  padding-right: 44px !important;
  width: 100%;
}
.input-suffix-text {
  position: absolute;
  right: 12px;
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6b67);
  pointer-events: none;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
}

/* CHAR COUNTER */
.char-counter {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--color-text-muted, #6b6b67);
  margin-top: 6px;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  letter-spacing: 0.10em;
  font-weight: 600;
}

/* WIZARD ACTIONS */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border, #d9d6cf);
}
.wizard-actions-single { justify-content: flex-end; }
.wizard-prev, .wizard-skip {
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b6b67);
  cursor: pointer;
  padding: 12px 4px;
  transition: color 0.15s ease;
  font-weight: 700;
}
.wizard-prev:hover, .wizard-skip:hover { color: var(--color-ink, #1a1d20); }
.wizard-skip { margin-left: auto; margin-right: 12px; }
.wizard-next, .wizard-submit {
  min-width: 150px;
  justify-content: center;
}
.wizard-next:disabled, .wizard-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.wizard-disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #6b6b67);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.wizard-fallback {
  text-align: center;
  margin: 24px auto 0;
  max-width: 760px;
  font-size: 1rem;
  color: #d8dde6;
}
.wizard-fallback a {
  color: #ffffff;
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}
.wizard-fallback a:hover { color: var(--color-primary, #24891f); }

/* SPINNER */
.wizard-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wizardSpin 0.7s linear infinite;
  margin-right: 6px;
  vertical-align: -2px;
}
@keyframes wizardSpin { to { transform: rotate(360deg); } }

/* MOBILE */
@media (max-width: 720px) {
  .wizard-step { padding: 28px 20px 24px; }
  .wizard-progress { padding: 14px 20px 12px; }
  .wizard-form { min-height: 480px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .option-card { min-height: auto; padding: 16px 14px; }
  .brand-picker { grid-template-columns: 1fr 1fr; }
  .fleet-picker { grid-template-columns: 1fr 1fr; }
  .wizard-actions { flex-wrap: wrap; }
  .wizard-skip { margin-right: 0; }
  .wizard-next, .wizard-submit { width: 100%; }
}
@media (max-width: 460px) {
  .option-grid { grid-template-columns: 1fr; }
  .wizard-question { font-size: 1.5rem; }
}

/* ============================================================
   thank-you page
   ============================================================ */
.thanks-hero {
  padding: 80px 0 56px;
  background: var(--color-concrete-1, #f0eee9);
  position: relative;
  overflow: hidden;
}
.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(45, 62, 82, 0.025) 60px, rgba(45, 62, 82, 0.025) 61px);
  pointer-events: none;
}
.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border, #d9d6cf);
  border-radius: 4px;
  padding: 56px 48px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 50px rgba(15, 23, 32, 0.10);
}
.thanks-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary, #24891f);
}
.thanks-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--color-primary, #24891f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: checkInPop 0.55s cubic-bezier(0.22, 1.4, 0.36, 1) 0.1s both;
}
.thanks-check::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--color-primary, #24891f);
  opacity: 0;
  animation: thanksRing 1.6s ease-out 0.5s infinite;
}
.thanks-check svg { width: 38px; height: 38px; stroke-width: 3; }
@keyframes checkInPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes thanksRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.thanks-card .eyebrow { color: var(--color-secondary, #2d3e52); }
.thanks-card h1 { margin: 6px 0 14px; font-size: clamp(2rem, 4.5vw, 2.75rem); }
.thanks-sub {
  color: var(--color-text-muted, #6b6b67);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
}
.thanks-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
  text-align: left;
  border-top: 1px solid var(--color-border, #d9d6cf);
  padding-top: 28px;
}
.thanks-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.thanks-meta-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-concrete-2, #e8e6e1);
  color: var(--color-secondary, #2d3e52);
  border-radius: 4px;
}
.thanks-meta-icon svg { width: 20px; height: 20px; }
.thanks-meta-text { display: flex; flex-direction: column; gap: 2px; }
.thanks-meta-text strong {
  font-family: var(--font-display, 'Barlow Condensed'), sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-ink, #1a1d20);
  font-weight: 700;
}
.thanks-meta-text span,
.thanks-meta-text a {
  font-size: 0.875rem;
  color: var(--color-text-muted, #6b6b67);
}
.thanks-meta-text a {
  color: var(--color-primary, #24891f);
  font-weight: 600;
  text-decoration: none;
}
.thanks-meta-text a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .thanks-card { padding: 40px 24px 32px; }
  .thanks-meta { text-align: center; }
  .thanks-meta-item { justify-content: center; }
}
