/* ---------------------------------------------------------------
   Tokens

   Revisited 2026-08-30 per BC's direction after reviewing an audit
   critique: "fleet-tech" near-black + electric-blue, replacing the
   crimson-red accent. --green-tint is deliberately a NEUTRAL cool
   gray, not a light-blue wash — with blue promoted to the primary
   accent, a blue-tinted card/section background would visually merge
   with buttons and links instead of reading as a distinct quiet
   surface. Gold stays as the rare secondary accent (lease labels,
   hover details) — untouched by this pass. Token NAMES are kept as
   the original steel/highway naming (--green, --yellow, etc.) so
   every component rule that already references them recolors
   automatically — only the values changed, not the variable names
   or usage sites.
--------------------------------------------------------------- */
:root {
  --steel-50: #f4f6f7;
  --white: #ffffff;
  --graphite: #101418;
  --graphite-700: #26323a;
  --slate: #475569;
  --slate-soft: #64748b;
  --line: #e2e8f0;
  --line-dark: #334155;

  --green: #1683ff;
  --green-deep: #0b57c9;
  --green-tint: #eef1f3;
  --yellow: #d97706;

  --radius-sm: 3px;
  --radius: 6px;
  --maxw: 1180px;

  --shadow: 0 16px 32px -18px rgba(16, 20, 24, 0.35);
  --shadow-lg: 0 30px 60px -24px rgba(16, 20, 24, 0.45);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Brushed-steel plate gradient for the trailer-spec and info cards. */
  --metal-plate: linear-gradient(155deg, #fbfcfd 0%, #f1f5f9 38%, #ffffff 55%, #e2e8f0 100%);
}

/* ---------------------------------------------------------------
   Reset & base
--------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--steel-50);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); }
a:hover { color: var(--green-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px;
}
img { max-width: 100%; }
::selection { background: var(--yellow); color: var(--graphite); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2 {
  font-family: var(--font-display); color: var(--graphite); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.05; text-wrap: balance; margin: 0 0 16px;
}
h1 { font-size: clamp(38px, 5.4vw, 60px); }
h2 { font-size: clamp(28px, 3.4vw, 38px); }
p { margin: 0 0 14px; max-width: none; }
strong { color: var(--graphite); }

.eyebrow, .section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 14px; color: var(--green); margin: 0 0 10px;
}
.section-eyebrow { display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 14px 26px; border-radius: var(--radius); cursor: pointer;
  text-decoration: none; transition: background-color 0.15s, transform 0.1s;
}
.btn:hover { background: var(--green-deep); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.secondary {
  background: transparent; color: var(--graphite); border: 2px solid var(--line);
}
.btn.secondary:hover { border-color: var(--green); color: var(--green-deep); }

.block { padding: 72px 0; }

/* ---------------------------------------------------------------
   Section background variants — explicit alternatives to the default
   body background, so adjacent light sections can be deliberately
   set to different tones instead of all silently inheriting the same
   steel-50. Never place two sections with the same variant (or two
   dark sections) back to back.
--------------------------------------------------------------- */
.bg-white { background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%); }
.bg-steel { background: linear-gradient(155deg, #f8fafb 0%, var(--steel-50) 55%, #eef1f3 100%); }
.bg-tint { background: linear-gradient(155deg, #f3f6f7 0%, var(--green-tint) 60%, #e7ebee 100%); }

/* FAQ background photo (a real photograph — dry-van semi-trailer on the
   highway at dusk, Josiah Farrow / Unsplash License) with a light scrim
   so the photo stays genuinely visible rather than a faint texture, kept
   light enough overall to sit next to the dark closing band without
   reading as two dark sections in a row. The actual Q&A content sits in
   a near-opaque panel on top so legibility never depends on what's
   behind it, while the eyebrow/heading float directly over the photo. */
.faq-block {
  position: relative;
  background-image: url("/assets/images/faq-bg.jpg");
  background-size: cover;
  background-position: center 35%;
}
.faq-block::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(244, 246, 247, 0.55);
}
.faq-block .container { position: relative; z-index: 1; }
.faq-panel { margin-top: 30px; background: rgba(255, 255, 255, 0.95); border-radius: var(--radius); padding: 4px 36px 28px; box-shadow: var(--shadow-lg); }
.faq-panel .faq-list { margin-top: 22px; }

/* ---------------------------------------------------------------
   Header
--------------------------------------------------------------- */
header.site-header {
  border-bottom: 3px solid var(--green);
  background: var(--white);
  position: sticky; top: 0; z-index: 40;
}
header.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo, .foot-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  letter-spacing: -0.005em; color: var(--graphite); text-decoration: none;
}
.foot-logo { color: #fff; }
.logo span, .foot-logo span { color: var(--green); }
.site-header-right { display: flex; align-items: center; gap: 20px; }
nav.site-nav { display: flex; align-items: center; gap: 4px; }
nav.site-nav a {
  color: var(--slate); text-decoration: none; font-size: 14.5px; font-weight: 600;
  padding: 9px 13px; border-radius: var(--radius-sm);
}
nav.site-nav a:hover { color: var(--green-deep); background: var(--green-tint); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer; list-style: none; user-select: none;
  color: var(--slate); font-size: 14.5px; font-weight: 600; padding: 9px 13px; border-radius: var(--radius-sm);
}
.nav-dropdown-trigger::-webkit-details-marker { display: none; }
.nav-dropdown-trigger:hover { color: var(--green-deep); background: var(--green-tint); }
.nav-caret { width: 10px; height: 10px; flex: none; transition: transform 0.15s ease-out; }
.nav-dropdown[open] .nav-caret { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 50; min-width: 220px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px;
}
.nav-dropdown-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--radius-sm); text-decoration: none; color: var(--graphite); }
.nav-dropdown-item:hover { background: var(--green-tint); }
.nav-dropdown-item-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.nav-dropdown-item-sub { font-size: 12.5px; color: var(--slate-soft); }

.nav-dropdown-panel-wide { min-width: 480px; padding: 14px; }
.nav-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 16px; }
.nav-dropdown-link { display: block; padding: 7px 10px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--slate); text-decoration: none; }
.nav-dropdown-link:hover { color: var(--green-deep); background: var(--green-tint); }

.nav-phone { color: var(--graphite); font-weight: 700; text-decoration: none; font-size: 14.5px; white-space: nowrap; }
.nav-cta { background: var(--green); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: var(--radius); white-space: nowrap; }
.nav-cta:hover { background: var(--green-deep); color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: var(--graphite); cursor: pointer; padding: 6px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-phone { display: none; }
  nav.site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 8px 20px 16px;
    border-bottom: 1px solid var(--line); display: none;
  }
  nav.site-nav.is-open { display: flex; }
  nav.site-nav a { padding: 12px 8px; }
  .nav-toggle { display: block; }
  .nav-dropdown-trigger { padding: 12px 8px; }
  .nav-dropdown-panel { position: static; box-shadow: none; border: none; margin: 2px 0 4px; padding: 0 0 0 12px; }
  .nav-dropdown-panel-wide { min-width: 0; }
  .nav-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #141a20 0%, var(--graphite) 45%, #0b0e12 100%);
  color: var(--steel-50); padding: 64px 0 44px;
}
.hero::before {
  content: ""; position: absolute; pointer-events: none;
  width: 52vw; height: 52vw; right: -16vw; top: -20vw;
  background: radial-gradient(circle, rgba(22, 131, 255, 0.18), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.hero-copy .eyebrow { color: var(--yellow); }
.hero h1 { color: #fff; }
.hero .lede { font-size: 19px; color: #94a3b8; max-width: 46ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions .btn.secondary { color: #fff; border-color: #334155; }
.hero-actions .btn.secondary:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Lead form (embedded in hero card)
--------------------------------------------------------------- */
.lead-form { padding: 30px 30px 26px; }
.form-progress { margin-bottom: 22px; }
.progress-track { display: flex; gap: 6px; margin-bottom: 8px; }
.progress-seg { flex: 1; height: 4px; background: var(--line); border-radius: 2px; }
.progress-seg.done { background: var(--green); }
.progress-label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-soft); }

.form-step-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--graphite); margin: 0 0 14px; }

.picker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 4px; }
.form-step[data-step="1"] .picker-grid { grid-template-columns: repeat(2, 1fr); }
.picker-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: var(--steel-50); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 16px 10px; cursor: pointer; text-align: center; transition: border-color 0.15s, background-color 0.15s;
}
.picker-card:hover { border-color: var(--green); }
.picker-card.is-selected { border-color: var(--green); background: var(--green-tint); }
.picker-label { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--graphite); }
.picker-sub { font-size: 12.5px; color: var(--slate-soft); }

.lead-form label { display: block; font-weight: 600; font-size: 14px; color: var(--graphite); margin: 14px 0 6px; }
.field-optional { font-weight: 400; color: var(--slate-soft); }
.lead-form input, .lead-form select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--graphite); background: var(--white);
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--green); outline: none; }

.form-nav { display: flex; gap: 10px; margin-top: 20px; }
.form-nav .btn { flex: 1; }
.form-step[data-step="1"] > .form-back { margin-top: 14px; }

.form-subnote { font-size: 13px; color: var(--slate-soft); text-align: center; margin: 14px 0 6px; }
.disclosure { font-size: 12px; color: var(--slate-soft); text-align: center; }
.disclosure a { color: var(--slate-soft); text-decoration: underline; }

.form-success { padding: 46px 30px; text-align: center; }
.form-success h2 { font-size: 26px; }

/* ---------------------------------------------------------------
   Problem / Solution — tinted cards on white, not a grid of identical
   white-shadow cards. No leading number/letter marker: these three
   items aren't a sequence.
--------------------------------------------------------------- */
.tint-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0 34px; }
.tint-card { background: var(--green-tint); border-radius: var(--radius); padding: 24px 22px; }
.tint-card-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--graphite); margin-bottom: 8px; letter-spacing: -0.005em; }
.tint-card p:last-child { margin-bottom: 0; color: var(--slate); }

@media (max-width: 860px) {
  .tint-grid { grid-template-columns: 1fr; }
}

.key-takeaway {
  background: linear-gradient(155deg, var(--graphite-700) 0%, var(--graphite) 100%);
  border-radius: var(--radius); padding: 18px 22px;
  color: #fff; font-weight: 600; font-size: 15.5px; margin: 0;
}

/* ---------------------------------------------------------------
   Spec-plate dark backdrop — a moody graphite mesh for a plate-grid
   section that would otherwise sit beside another light section (no
   two light sections in a row, site-wide rule). Lighter base than the
   hero/how-it-works near-black so dark-toned sections on the same
   page don't all read as one repeated block; plate-cards already
   carry their own opaque light surface, so they stay legible here
   without any card-level changes.
--------------------------------------------------------------- */
.bg-plate-dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 131, 255, 0.16), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(217, 119, 6, 0.14), transparent 45%),
    linear-gradient(160deg, #2c3942 0%, var(--graphite-700) 55%, #1c252b 100%);
}
.bg-plate-dark .container { position: relative; z-index: 1; }
.bg-plate-dark .section-eyebrow { color: var(--yellow); }
.bg-plate-dark h2 { color: #fff; }

/* ---------------------------------------------------------------
   Trailer type "data plate" cards — the signature element. Every
   real semi-trailer carries a riveted metal spec plate; these cards
   borrow that object's job (identify capacity/spec fast) rather than
   just its look.
--------------------------------------------------------------- */
.plate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.plate-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--metal-plate); border: 3px solid var(--graphite);
  border-radius: 2px; padding: 30px 26px 28px; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.plate-card:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(0, 0, 0, 0.06), 0 24px 34px -18px rgba(16, 20, 24, 0.4);
}
.plate-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.plate-card:hover::before { opacity: 1; }
.rivet {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(145deg, #fff, #c7ccd0); border: 1px solid #9aa1a6;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 1px 1px rgba(0, 0, 0, 0.15);
}
.rivet-tl { top: 12px; left: 12px; } .rivet-tr { top: 12px; right: 12px; }
.rivet-bl { bottom: 12px; left: 12px; } .rivet-br { bottom: 12px; right: 12px; }
.plate-eyebrow { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; color: var(--green); margin: 0 0 4px; }
.plate-title { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--graphite); margin: 0 0 16px; }
.plate-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin: 0 0 16px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plate-specs dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-soft); margin: 0; }
.plate-specs dd { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--graphite); margin: 2px 0 0; }
.plate-ideal { font-size: 15px; color: var(--slate); }
.plate-cta { display: inline-block; margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--green); text-decoration: none; }
.plate-cta:hover { color: var(--green-deep); }
.plate-card.is-current { border-color: var(--green); }
.plate-current-tag { display: inline-block; margin-top: auto; padding-top: 14px; font-family: var(--font-body); font-weight: 700; color: var(--slate-soft); font-size: 15px; }

@media (max-width: 940px) {
  .plate-grid { grid-template-columns: 1fr; }
}
.plate-grid.cols-1 { grid-template-columns: 1fr; max-width: 480px; }
.plate-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) {
  .plate-grid.cols-2 { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Compare table — the homepage's rent-vs-lease decision aid. Real
   tabular data, not another card grid; this audience reads specs.
--------------------------------------------------------------- */
.compare-table-wrap { overflow-x: auto; margin-top: 26px; }
.compare-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
.compare-table th, .compare-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 13px; color: var(--white); background: linear-gradient(100deg, var(--graphite) 0%, var(--graphite-700) 100%); border-bottom: none;
  text-align: center;
}
.compare-table thead th:first-child { background: transparent; }
.compare-table tbody th {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--slate-soft);
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; width: 1%;
}
.compare-table tbody td { color: var(--slate); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }

/* ---------------------------------------------------------------
   Split panel — rent-vs-lease as a real two-tone choice instead of
   two identical white cards. Used on trailer-type and combo pages.
--------------------------------------------------------------- */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; margin-top: 30px; border: 2px solid var(--graphite); }
.split-half { padding: 34px 30px; }
.split-rent { background: linear-gradient(155deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; }
.split-lease { background: linear-gradient(155deg, var(--graphite-700) 0%, var(--graphite) 100%); color: #e7e9ea; border-left: 2px solid var(--graphite); }
.split-label {
  display: block; font-family: var(--font-display); font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px;
}
.split-rent .split-label { color: #e6f2ff; }
.split-lease .split-label { color: var(--yellow); }
.split-half p { margin: 0; opacity: 0.92; }
@media (max-width: 640px) {
  .split-panel { grid-template-columns: 1fr; }
  .split-lease { border-left: none; border-top: 2px solid var(--graphite); }
}

/* Info cards (area distribution-park highlights) borrow the plate
   card's stamped-metal materiality so the whole site reads as one
   system of "spec plates," not a generic card component repeated
   with different content. Duo cards (About page's 3-up feature list)
   stay a plainer white card since that content genuinely is generic. */
.info-grid { display: grid; gap: 22px; margin: 30px 0 0; }
.info-card {
  background: var(--metal-plate); border: 2px solid var(--graphite); border-radius: 2px; padding: 26px 24px;
}
.info-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--graphite); margin: 0 0 8px;
}
.info-card p { color: var(--slate); }
.info-card p:last-child { margin-bottom: 0; }

.duo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 30px 0 0; }
.duo-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 24px; box-shadow: var(--shadow); }
.duo-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--graphite); margin: 0 0 8px; }
.duo-card p { color: var(--slate); }
.duo-card p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .duo-grid { grid-template-columns: 1fr; }
}

.use-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.use-list li { position: relative; padding-left: 22px; font-size: 15.5px; color: var(--slate); }
.use-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
@media (max-width: 640px) {
  .use-list { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Areas — a graphite map-grid backdrop (no photo; a faint hairline
   grid stands in for "coverage area" without needing real imagery)
   behind the .area-panel card. Distinct from the Fleet Types/Spec
   sections' .bg-plate-dark (radial glows only, no grid) so the site's
   two dark plate-style sections don't read as the same backdrop
   repeated.
--------------------------------------------------------------- */
.areas-block {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 131, 255, 0.14), transparent 45%),
    radial-gradient(circle at 85% 82%, rgba(217, 119, 6, 0.12), transparent 45%),
    linear-gradient(165deg, #1c242b 0%, var(--graphite) 55%, #0d1114 100%);
  color: #dfe2e4;
}
.areas-block::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}
.areas-block .container { position: relative; z-index: 1; }
.areas-block .section-eyebrow { color: var(--yellow); }
.areas-block h2 { color: #fff; }
.areas-block .lede { font-size: 17px; color: #b7bec3; max-width: none; }

.area-panel { background: rgba(255, 255, 255, 0.97); border-radius: var(--radius); padding: 28px 30px 24px; box-shadow: var(--shadow-lg); }
.area-panel-solo { margin-top: 28px; }
.area-panel-title {
  font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green); margin: 0 0 14px;
}
.area-panel .area-links { columns: 3; column-gap: 20px; }
@media (max-width: 860px) {
  .area-panel .area-links { columns: 2; }
}
@media (max-width: 560px) {
  .area-panel .area-links { columns: 1; }
}

/* ---------------------------------------------------------------
   Area directory (link lists inside .area-panel above, and the
   trailer-type pages' "by area" directory section)
--------------------------------------------------------------- */
.area-links {
  list-style: none; margin: 0; padding: 0; columns: 3; column-gap: 28px;
}
.area-links li { break-inside: avoid; margin-bottom: 10px; }
.area-links a {
  color: var(--slate); text-decoration: none; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid transparent;
}
.area-links a:hover { color: var(--green-deep); border-bottom-color: var(--green-deep); }
@media (max-width: 860px) {
  .area-links { columns: 2; }
}
@media (max-width: 560px) {
  .area-links { columns: 1; }
}

/* ---------------------------------------------------------------
   Differentiators — white cards with a single-color top edge on a
   light section, not an icon+bullet grid or a dark band. No icons.
--------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 24px; margin-top: 30px; }
.feature-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9fb 100%);
  border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: var(--radius-sm);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.feature-card strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--graphite); margin-bottom: 4px; }
.feature-card span { font-size: 14.5px; color: var(--slate); }

@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   How it works — a real sequence, so numbered markers are earned here
--------------------------------------------------------------- */
.how-it-works, .block-dark {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #171d23 0%, var(--graphite) 50%, #0a0d11 100%);
  color: #dfe2e4;
}
.how-it-works::before, .block-dark::before {
  content: ""; position: absolute; pointer-events: none;
  width: 42vw; height: 42vw; right: -12vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12), transparent 70%);
}
.how-it-works .container, .block-dark .container { position: relative; z-index: 1; }
.how-it-works .section-eyebrow, .block-dark .section-eyebrow { color: var(--yellow); }
.how-it-works h2, .block-dark h2 { color: #fff; }
.steps-grid { list-style: none; margin: 34px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.steps-grid.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }
.steps-grid li:not(:first-child) { padding-left: 30px; border-left: 1px dashed rgba(255, 255, 255, 0.22); }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--green); display: block; margin-bottom: 6px; }
.how-it-works .step-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; margin: 0 0 6px; }
.how-it-works .steps-grid p:last-child { margin-bottom: 0; color: #94a3b8; }

@media (max-width: 940px) {
  .steps-grid.steps-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .steps-grid.steps-grid-4 li:nth-child(2n):not(:first-child) { border-left: none; padding-left: 0; }
  .steps-grid.steps-grid-4 li:nth-child(n+3) { padding-left: 0; padding-top: 26px; border-left: none; border-top: 1px dashed rgba(255, 255, 255, 0.22); }
}
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li:not(:first-child) { padding-left: 0; padding-top: 26px; border-left: none; border-top: 1px dashed rgba(255, 255, 255, 0.22); }
}

/* ---------------------------------------------------------------
   FAQ — a two-column card list rather than a single flat-bordered
   column. Each item is its own subtle card (soft gradient, hairline
   border) with a bit more lift while open, instead of the previous
   plain divider-line list.
--------------------------------------------------------------- */
.faq-list { margin-top: 26px; columns: 2; column-gap: 22px; }
.faq-item {
  break-inside: avoid; margin-bottom: 14px; padding: 4px 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f8fa 100%);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px -3px rgba(16, 20, 24, 0.08);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.faq-item[open] { box-shadow: 0 12px 24px -14px rgba(16, 20, 24, 0.22); border-color: #ccd4d9; }
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--graphite); list-style: none; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; color: var(--green); flex: none; font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 16px; color: var(--slate); }
@media (max-width: 760px) {
  .faq-list { columns: 1; }
}

/* ---------------------------------------------------------------
   CTA band — a mid-page conversion prompt, not a page-closer. Always
   flanked by quiet (non-bold) sections on both sides; never placed as
   the last section before the (dark) footer.
--------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 65%, #084a9e 100%);
  color: #fff; padding: 64px 0;
}
.cta-band::before {
  content: ""; position: absolute; pointer-events: none;
  width: 38vw; height: 38vw; left: -10vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 36px; }

/* ---------------------------------------------------------------
   Footer
--------------------------------------------------------------- */
footer.site-footer { background: var(--graphite); color: #94a3b8; padding: 54px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid var(--line-dark); }
.foot-tagline { max-width: 42ch; color: #94a3b8; margin-top: 14px; }
.foot-contact a { color: #cbd5e1; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer ul li { margin-bottom: 10px; }
footer.site-footer ul a { color: #94a3b8; text-decoration: none; font-size: 14.5px; }
footer.site-footer ul a:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 10px; }
.copyright { margin: 0; font-size: 13.5px; color: #64748b; }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 13.5px; }

@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Legal pages
--------------------------------------------------------------- */
.legal-content { max-width: 760px; }
.legal-updated { color: var(--slate-soft); font-size: 14px; }
.legal-content h2 { font-size: 22px; margin-top: 34px; }

/* ---------------------------------------------------------------
   Mobile CTA bar — this audience calls more than it fills out forms.
   Hidden on desktop; a fixed two-button strip on small screens only.
--------------------------------------------------------------- */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    box-shadow: 0 -8px 24px -12px rgba(16, 20, 24, 0.35);
  }
  .mobile-cta-bar a {
    flex: 1; text-align: center; padding: 15px 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em;
  }
  .mobile-cta-call { background: var(--graphite); color: #fff; }
  .mobile-cta-quote { background: var(--green); color: #fff; }
  body { padding-bottom: 52px; }
}
