/* ==========================================================================
   EZ Distribution — Core stylesheet
   Sections: 1 Tokens · 2 Reset/base · 3 Layout · 4 Header/nav · 5 Buttons
             6 Hero · 7 Components · 8 Forms · 9 Footer · 10 Utilities
   ========================================================================== */

/* 1 — Design tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --navy-950: #04101f;
  --navy-900: #081a2e;
  --navy-800: #0f2942;
  --navy-700: #17395a;
  --navy-600: #204b73;

  --brand-700: #b84b00;
  --brand-600: #e05f00;
  --brand-500: #ff7a1a;
  --brand-400: #ff9647;
  --brand-100: #ffe8d6;

  --steel-50:  #f7f9fc;
  --steel-100: #eff3f9;
  --steel-200: #e0e7f0;
  --steel-300: #c7d2e1;
  --steel-400: #9aa9bd;
  --steel-500: #6e7f96;
  --steel-600: #52627a;
  --steel-700: #3a495e;

  --ink: #0b1725;
  --white: #ffffff;
  --success: #0f9d58;
  --danger: #d23f3f;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--steel-50);
  --text: var(--ink);
  --text-muted: var(--steel-600);
  --border: var(--steel-200);
  --accent: var(--brand-500);

  /* Type */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.0625rem;
  --fs-xl: clamp(1.15rem, 0.4vw + 1.05rem, 1.3rem);
  --fs-h4: clamp(1.15rem, 0.5vw + 1rem, 1.35rem);
  --fs-h3: clamp(1.35rem, 0.9vw + 1.1rem, 1.7rem);
  --fs-h2: clamp(1.8rem, 2vw + 1.1rem, 2.75rem);
  --fs-h1: clamp(2.2rem, 3.6vw + 1rem, 4rem);

  /* Space + shape */
  --gutter: 1rem;
  --container: 1200px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(8, 26, 46, .06), 0 1px 3px rgba(8, 26, 46, .08);
  --shadow: 0 8px 24px -8px rgba(8, 26, 46, .18), 0 2px 6px rgba(8, 26, 46, .06);
  --shadow-lg: 0 32px 60px -24px rgba(8, 26, 46, .35), 0 8px 20px -12px rgba(8, 26, 46, .2);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

@media (min-width: 640px) { :root { --gutter: 1.5rem; } }
@media (min-width: 1024px) { :root { --gutter: 2rem; } }

/* 2 — Reset + base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
img { height: auto; }

/* Inline icons default to text size; component rules below override. */
svg {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
  flex: none;
  max-width: 100%;
}

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.021em;
  color: var(--navy-900);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 700; }

p { text-wrap: pretty; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: .35rem; }

strong { font-weight: 700; color: var(--navy-900); }

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

::selection { background: var(--brand-500); color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: .7rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); text-decoration: none; }

.sprite { display: none; }

/* 3 — Layout -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 6vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--navy-900);
  color: var(--steel-200);
  position: relative;
  overflow: hidden;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark a { color: var(--brand-400); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 3.5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: .9rem;
  font-size: var(--fs-xl);
  color: var(--text-muted);
  line-height: 1.6;
}
.section--dark .section-head p { color: var(--steel-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--brand-500);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--brand-400); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right > .split__media { order: 2; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
}
/* Direct children only — must not catch inline icons inside a nested card. */
.split__media > img, .split__media > svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* 4 — Header / navigation ------------------------------------------------- */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: var(--fs-sm);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar__meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--brand-400); flex: none; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--brand-400); text-decoration: none; }
.topbar__credentials { color: var(--steel-400); letter-spacing: .02em; }
@media (max-width: 860px) {
  .topbar__credentials { display: none; }
  .topbar__inner { justify-content: center; }
}
@media (max-width: 460px) { .topbar__meta { gap: .9rem; font-size: var(--fs-xs); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow); background: rgba(255, 255, 255, .96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: .7rem; }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), var(--shadow-sm);
}
.logo__mark svg { width: 26px; height: 26px; color: var(--brand-500); }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy-900);
}
.logo__name em { font-style: normal; color: var(--brand-500); }
.logo__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--steel-500);
}

/* The wordmark plus its nowrap tagline is the tightest thing in the header. */
@media (max-width: 420px) {
  .logo { gap: .55rem; }
  .logo__mark { width: 40px; height: 40px; border-radius: 10px; }
  .logo__mark svg { width: 23px; height: 23px; }
  .logo__name { font-size: 1.06rem; }
  .logo__tag { font-size: .54rem; letter-spacing: .11em; }
  .nav__toggle { width: 42px; height: 42px; }
}
@media (max-width: 340px) {
  .logo__tag { display: none; }
}

.nav__links { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__links li { margin: 0; }
.nav__link {
  display: block;
  padding: .55rem .8rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--steel-700);
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.nav__link:hover { color: var(--navy-900); background: var(--steel-100); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--brand-600); background: var(--brand-100); }

.nav__actions { display: flex; align-items: center; gap: .6rem; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
  place-items: center;
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }

@media (max-width: 1040px) {
  .nav__toggle { display: grid; }
  .nav__menu {
    /* Anchored to the header itself so a taller top bar can't misalign it. */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 74vh;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1rem var(--gutter) 1.75rem;
    display: none;
  }
  .nav__menu.is-open { display: block; }
  .nav__links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__link { padding: .85rem .75rem; font-size: var(--fs-lg); border-radius: var(--radius-sm); }
  .nav__menu .nav__actions { margin-top: 1.1rem; flex-direction: column; align-items: stretch; }
  .nav__menu .btn { width: 100%; }
  .nav__actions--desktop { display: none; }
}
@media (min-width: 1041px) { .nav__menu .nav__actions--mobile { display: none; } }

/* 5 — Buttons ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { box-shadow: 0 10px 22px -10px rgba(255, 122, 26, .85); }
.btn--primary:hover { --btn-bg: var(--brand-600); box-shadow: 0 16px 30px -12px rgba(255, 122, 26, .9); }

.btn--dark { --btn-bg: var(--navy-900); }
.btn--dark:hover { --btn-bg: var(--navy-800); box-shadow: var(--shadow); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  border-color: var(--steel-300);
}
.btn--ghost:hover { --btn-bg: var(--steel-100); border-color: var(--steel-400); }

.btn--on-dark {
  --btn-bg: rgba(255, 255, 255, .08);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.btn--on-dark:hover { --btn-bg: rgba(255, 255, 255, .16); }

.btn--lg { padding: 1.02rem 1.85rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn--wrap { white-space: normal; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--brand-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* 6 — Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  background: radial-gradient(115% 130% at 82% 8%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--steel-200);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern-routes.svg");
  background-size: 620px auto;
  opacity: .35;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -10rem;
  top: -12rem;
  background: radial-gradient(circle, rgba(255, 122, 26, .28), transparent 65%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-block: clamp(3.25rem, 7vw, 6rem);
  align-items: center;
}
@media (min-width: 960px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--brand-400), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, .55vw + .95rem, 1.28rem);
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 34rem;
}
.hero .btn-row { margin-top: 2rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .95rem .45rem .6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2fd66f;
  box-shadow: 0 0 0 4px rgba(47, 214, 111, .22);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  margin-top: 2.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
  padding-left: 0;
  font-size: var(--fs-sm);
  color: var(--steel-300);
}
.hero__trust li { display: flex; align-items: center; gap: .5rem; margin: 0; }
.hero__trust svg { width: 17px; height: 17px; color: #2fd66f; flex: none; }

.hero__art { position: relative; }
.hero__art img { width: 100%; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45)); }

.hero__card {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(42%);
  background: #fff;
  color: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 16rem;
}
.hero__card svg { width: 34px; height: 34px; color: var(--brand-500); flex: none; }
.hero__card strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.hero__card span { font-size: var(--fs-xs); color: var(--steel-500); }
@media (max-width: 960px) { .hero__card { display: none; } }

/* KPI strip */
.kpi-strip { background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, .08); }
.kpi-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .09);
}
@media (min-width: 900px) { .kpi-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  background: var(--navy-950);
  padding: clamp(1.4rem, 2.5vw, 2.1rem) clamp(1rem, 2vw, 1.75rem);
  text-align: center;
}
.kpi__value {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}
.kpi__value .unit { color: var(--brand-500); }
.kpi__label {
  margin-top: .5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-400);
}

/* 7 — Components ---------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  height: 100%;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--steel-300); }
.card h3, .card h4 { margin-bottom: .55rem; }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(150deg, var(--brand-100), #fff);
  border: 1px solid var(--brand-100);
  color: var(--brand-600);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--dark {
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border-color: rgba(255, 255, 255, .12);
  color: var(--brand-400);
}

.service-card { display: flex; flex-direction: column; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.35rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.service-card li { display: flex; gap: .55rem; align-items: flex-start; }
.service-card li svg { width: 16px; height: 16px; color: var(--success); flex: none; margin-top: .3rem; }
.service-card .link-arrow { margin-top: auto; }

/* Feature list */
.feature-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.feature-list > li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; margin: 0; }
.feature-list h4 { margin-bottom: .3rem; }
.feature-list p { color: var(--text-muted); font-size: var(--fs-sm); }
.feature-list .icon-badge { width: 46px; height: 46px; margin: 0; border-radius: 12px; }
.feature-list .icon-badge svg { width: 22px; height: 22px; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); list-style: none; padding: 0; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps > li { counter-increment: step; margin: 0; position: relative; padding-top: 3.4rem; }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-600);
  background: var(--brand-100);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  letter-spacing: -.02em;
}
.steps > li::after {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 3.1rem;
  right: -1rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--steel-300) 0 6px, transparent 6px 12px);
}
.steps > li:last-child::after { display: none; }
@media (max-width: 899px) { .steps > li::after { display: none; } }
.steps h4 { margin-bottom: .4rem; }
.steps p { font-size: var(--fs-sm); color: var(--text-muted); }
.section--dark .steps > li::before { background: rgba(255, 122, 26, .16); color: var(--brand-400); }
.section--dark .steps p { color: var(--steel-300); }
.section--dark .steps > li::after {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 6px, transparent 6px 12px);
}

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; margin: 0; font-size: var(--fs-sm); }
.checklist svg { width: 19px; height: 19px; color: var(--success); flex: none; margin-top: .22rem; }
@media (min-width: 640px) { .checklist--2col { grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; } }

/* Stat cards */
.stat-card { text-align: center; padding: clamp(1.5rem, 2.5vw, 2.25rem) 1.25rem; }
.stat-card__value {
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--navy-900);
  line-height: 1;
}
.stat-card__value .unit { color: var(--brand-500); }
.stat-card__label { margin-top: .6rem; font-size: var(--fs-sm); color: var(--text-muted); }

/* Coverage / network map */
.coverage { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 960px) { .coverage { grid-template-columns: .9fr 1.1fr; } }
.coverage__map {
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.75rem);
}
.lane-list { list-style: none; padding: 0; display: grid; gap: .55rem; margin-top: 1.75rem; }
.lane-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  padding: .7rem .95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  font-size: var(--fs-sm);
}
.lane-list svg { width: 17px; height: 17px; color: var(--brand-400); flex: none; }
.lane-list .lane-time { margin-left: auto; font-weight: 700; color: #fff; white-space: nowrap; }

/* Accordion */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  font: inherit;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy-900);
  text-align: left;
  cursor: pointer;
}
.accordion__trigger svg {
  width: 22px; height: 22px;
  flex: none;
  color: var(--brand-600);
  transition: transform .25s var(--ease);
}
.accordion__trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion__panel { display: none; padding-bottom: 1.35rem; }
.accordion__panel.is-open { display: block; }
.accordion__panel p { color: var(--text-muted); max-width: 62ch; }

/* Quote form CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -6rem -14rem auto;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 122, 26, .3), transparent 65%);
}
.cta-band__inner { position: relative; display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.3fr .7fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--steel-300); margin-top: .85rem; max-width: 44ch; }
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .btn-row { justify-content: flex-end; } }

/* Page header (interior pages) */
.page-header {
  position: relative;
  isolation: isolate;
  background: radial-gradient(110% 150% at 78% 0%, var(--navy-700), var(--navy-900) 55%, var(--navy-950));
  color: var(--steel-200);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern-routes.svg");
  background-size: 520px auto;
  opacity: .28;
  z-index: -1;
}
.page-header h1 { color: #fff; max-width: 40rem; }
.page-header p {
  margin-top: 1.1rem;
  max-width: 44rem;
  font-size: var(--fs-xl);
  color: var(--steel-300);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1.1rem;
  font-size: var(--fs-sm);
  color: var(--steel-400);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--steel-600); }
.breadcrumb a { color: var(--steel-300); }
.breadcrumb a:hover { color: #fff; }

/* Service detail rows */
.service-row { padding-block: clamp(2.5rem, 4vw, 4rem); border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: 0; }
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); margin-top: 1.5rem; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--border); }
.spec-table th { width: 42%; font-weight: 600; color: var(--navy-900); background: var(--steel-50); }
.spec-table td { color: var(--text-muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* Values / about */
.value-grid .card { border-left: 3px solid var(--brand-500); }

.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .6rem;
  bottom: .6rem;
  width: 2px;
  background: var(--border);
}
.timeline > li { position: relative; padding-left: 2.25rem; margin: 0 0 1.75rem; }
.timeline > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand-500);
}
.timeline__year { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-600); }
.timeline h4 { margin: .25rem 0 .35rem; }
.timeline p { font-size: var(--fs-sm); color: var(--text-muted); }

/* Job cards */
.job-card { display: grid; gap: 1.25rem; align-items: center; }
@media (min-width: 800px) { .job-card { grid-template-columns: 1fr auto; } }
.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .85rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  background: var(--steel-100);
  border: 1px solid var(--border);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--steel-700);
}
.tag--accent { background: var(--brand-100); border-color: #ffd9bb; color: var(--brand-700); }
.tag svg { width: 13px; height: 13px; }

/* Contact */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.35rem; }
.contact-list > li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; margin: 0; }
.contact-list .icon-badge { width: 46px; height: 46px; margin: 0; border-radius: 12px; }
.contact-list .icon-badge svg { width: 21px; height: 21px; }
.contact-list h4 { font-size: 1rem; margin-bottom: .2rem; }
.contact-list p, .contact-list a { font-size: var(--fs-sm); color: var(--text-muted); }
.contact-list a { font-weight: 600; color: var(--brand-600); }

.hours-table { width: 100%; font-size: var(--fs-sm); border-collapse: collapse; }
.hours-table td { padding: .55rem 0; border-bottom: 1px dashed var(--border); color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy-900); }
.hours-table tr:last-child td { border-bottom: 0; }

/* 8 — Forms --------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-900);
}
.field .req { color: var(--danger); }
.field .hint { font-size: var(--fs-xs); color: var(--steel-500); }

.input, .select, .textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--text);
  transition: border-color .18s, box-shadow .18s;
}
.input::placeholder, .textarea::placeholder { color: var(--steel-400); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--steel-400); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, .18);
}
.textarea { min-height: 8rem; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e7f96' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}
.field[data-invalid="true"] .input,
.field[data-invalid="true"] .select,
.field[data-invalid="true"] .textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(210, 63, 63, .14); }
.field__error { font-size: var(--fs-xs); font-weight: 600; color: var(--danger); display: none; }
.field[data-invalid="true"] .field__error { display: block; }

.choice-grid { display: grid; gap: .6rem; }
@media (min-width: 520px) { .choice-grid { grid-template-columns: repeat(2, 1fr); } }
.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .85rem .95rem;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-900);
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.choice input { margin: .15rem 0 0; accent-color: var(--brand-500); flex: none; }
.choice:hover { border-color: var(--brand-400); background: #fffaf6; }
.choice:has(input:checked) { border-color: var(--brand-500); background: var(--brand-100); box-shadow: 0 0 0 1px var(--brand-500); }
.choice span small { display: block; font-weight: 500; color: var(--steel-600); font-size: var(--fs-xs); }

.form-note { margin-top: 1.1rem; font-size: var(--fs-xs); color: var(--steel-500); }
.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.form-status.is-visible { display: flex; gap: .65rem; align-items: flex-start; }
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: .1rem; }
.form-status--success { background: #e9f8ef; border: 1px solid #b7e6c9; color: #0b6b3a; }
.form-status--error { background: #fdecec; border: 1px solid #f5c2c2; color: #98271f; }

/* 9 — Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: var(--steel-400); padding-block: clamp(2.75rem, 5vw, 4.5rem) 0; }
.site-footer h4 {
  color: #fff;
  font-size: var(--fs-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; } }
.site-footer .logo__name { color: #fff; }
.site-footer .logo__tag { color: var(--steel-500); }
.site-footer p { font-size: var(--fs-sm); line-height: 1.7; }
.footer-about p { margin-top: 1.15rem; max-width: 34ch; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-links li { margin: 0; }
.footer-links a { color: var(--steel-400); font-size: var(--fs-sm); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .9rem; font-size: var(--fs-sm); }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; gap: .7rem; margin: 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-500); margin-top: .18rem; }
.footer-contact a { color: #fff; font-weight: 600; }

.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.footer-badge {
  padding: .4rem .8rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--steel-300);
  background: rgba(255, 255, 255, .04);
}
.footer-bottom {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; padding: 0; }
.footer-bottom li { margin: 0; }

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy-900);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* 10 — Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-2 { margin-bottom: 1.5rem; }
.lede { font-size: var(--fs-xl); color: var(--text-muted); line-height: 1.6; }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-sm); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.prose > * + * { margin-top: 1.1rem; }
.prose h3 { margin-top: 2.25rem; }
.prose ul { color: var(--text-muted); }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .to-top, .cta-band, .site-footer { display: none !important; }
  body { color: #000; }
}
