/* ==========================================================================
   PK Dispatching — landing page styles
   Palette: deep navy (authority/night driving) + amber (safety/hi-vis)
   ========================================================================== */

:root {
  --navy-900: #06101f;
  --navy-800: #0b1b33;
  --navy-700: #122744;
  --navy-600: #1b3862;
  --navy-500: #2a4f81;

  --amber-500: #ff9f1c;
  --amber-400: #ffb547;
  --amber-600: #e2860a;

  --ink: #14202e;
  --ink-soft: #4a5a6e;
  --ink-mute: #6b7b8f;

  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --surface-tint: #eef3fa;

  --green: #12855a;
  --green-soft: #e6f4ee;
  --red: #c0392b;
  --red-soft: #fdeceb;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(6, 16, 31, .06), 0 2px 6px rgba(6, 16, 31, .05);
  --shadow: 0 4px 12px rgba(6, 16, 31, .07), 0 12px 32px rgba(6, 16, 31, .08);
  --shadow-lg: 0 18px 50px rgba(6, 16, 31, .16);

  --wrap: 1180px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

/* The `hidden` attribute must win over any `display` an author rule sets —
   otherwise a hidden overlay (e.g. the modal) still intercepts clicks. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-600); }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 750; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.12rem; }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--amber-500); color: var(--navy-900);
  padding: 12px 18px; font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; flex-direction: column;
  padding: .8rem 1.35rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font: inherit; font-weight: 700; text-decoration: none;
  cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, background .18s ease, filter .18s ease;
  text-align: center; line-height: 1.25;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn small { display: block; font-weight: 500; font-size: .74rem; opacity: .82; letter-spacing: .01em; }

.btn--primary { --btn-bg: var(--navy-700); }
.btn--accent  { --btn-bg: var(--amber-500); --btn-fg: var(--navy-900); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy-700); border-color: var(--line); }
.btn--outline:hover { background: var(--surface-tint); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  border-color: currentColor; opacity: .92;
}
.btn--ghost:hover { background: rgba(127, 155, 190, .12); }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.03rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .65; pointer-events: none; }
.btn.is-loading .btn__label::after {
  content: ""; display: inline-block; width: 1em; height: 1em; margin-left: .5em;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  vertical-align: -.15em; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.link-arrow { font-weight: 700; text-decoration: none; color: var(--navy-600); }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #dce7f5; font-size: .875rem;
}
.announce__inner { display: flex; align-items: center; gap: .7rem; padding-block: .55rem; flex-wrap: wrap; }
.announce p { margin: 0; }
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500);
  box-shadow: 0 0 0 0 rgba(255, 159, 28, .7); animation: pulse 2.2s infinite; flex: none;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 159, 28, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 159, 28, 0); }
}
.announce__link { margin-left: auto; color: var(--amber-400); font-weight: 700; text-decoration: none; white-space: nowrap; }
.announce__link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 70px; }

.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: inherit; flex: none; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  background: var(--navy-800); color: var(--amber-500);
  border-radius: 11px; font-weight: 800; letter-spacing: .01em; font-size: 1.05rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 1.06rem; letter-spacing: -.02em; }
.brand__text small { font-size: .7rem; color: var(--ink-mute); letter-spacing: .07em; text-transform: uppercase; }

.nav { display: flex; gap: 1.25rem; margin-left: auto; }
.nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .93rem;
  padding: .35rem 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav a:hover, .nav a.is-current { color: var(--navy-700); border-bottom-color: var(--amber-500); }

.header__cta { display: flex; align-items: center; gap: .9rem; flex: none; }
.header__cta .btn { white-space: nowrap; }
.phone-link {
  display: inline-flex; align-items: center; gap: .4rem;
  text-decoration: none; color: var(--navy-700); font-weight: 700; font-size: .93rem; white-space: nowrap;
}
.phone-link:hover { color: var(--amber-600); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: var(--surface); border-radius: var(--radius-sm); cursor: pointer;
  padding: 0; place-items: center; gap: 4px;
}
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy-900); color: #e8eef7; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(42, 79, 129, .75), transparent 62%),
    radial-gradient(760px 420px at 92% 8%, rgba(255, 159, 28, .16), transparent 60%),
    linear-gradient(170deg, var(--navy-800), var(--navy-900) 68%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 30% 30%, #000, transparent 78%);
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.2rem; align-items: center;
  padding-block: clamp(3.2rem, 7vw, 5.6rem);
}
.hero__copy { max-width: 640px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--amber-500); }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800;
  color: var(--navy-600); margin: 0 0 .7rem;
}
.eyebrow--light { color: var(--amber-400); }
.hero .eyebrow { color: var(--amber-400); }
.lede { font-size: clamp(1rem, 1.35vw, 1.11rem); color: #c3d1e4; max-width: 56ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.9rem 0 1.5rem; }
.hero .btn--primary { --btn-bg: var(--amber-500); --btn-fg: var(--navy-900); }
.hero .btn--ghost { color: #dbe6f4; }

.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; padding: 0; margin: 0; }
.hero__badges li { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: #b9c9de; font-weight: 600; }
.hero__badges svg { color: var(--amber-500); flex: none; }

/* ---------- Lead card ---------- */
.lead-card {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.6rem; border-top: 5px solid var(--amber-500);
}
.lead-card__head h2 { font-size: 1.3rem; margin-bottom: .3rem; }
.lead-card__head p { color: var(--ink-mute); font-size: .9rem; margin-bottom: 1.1rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: .95rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.field-row--3 { grid-template-columns: repeat(3, 1fr); }

label, .label-like {
  font-size: .83rem; font-weight: 700; color: var(--ink-soft);
  margin-bottom: .32rem; display: block;
}
.req { color: var(--red); }
.opt { font-weight: 500; color: var(--ink-mute); }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%; padding: .7rem .8rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; color: var(--ink); background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 90px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236b7b8f' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .55rem center; background-size: 20px;
  padding-right: 2.1rem;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(42, 79, 129, .15);
}
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: var(--red); background: var(--red-soft);
}
.err { color: var(--red); font-size: .78rem; font-weight: 600; margin-top: .25rem; min-height: 0; }
.err:empty { display: none; }

.fineprint { font-size: .74rem; color: var(--ink-mute); line-height: 1.5; margin: .8rem 0 0; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

.form-success {
  text-align: center; padding: 1.6rem .5rem;
}
.form-success svg { color: var(--green); margin-inline: auto; }
.form-success h3 { margin-top: .6rem; font-size: 1.25rem; }
.form-success p { color: var(--ink-soft); font-size: .93rem; }

/* Checkboxes */
.checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.check {
  display: inline-flex; align-items: center; gap: .45rem; margin: 0;
  padding: .5rem .8rem; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; user-select: none; background: var(--surface);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.check input { accent-color: var(--navy-700); width: 15px; height: 15px; margin: 0; flex: none; }
.check:hover { border-color: var(--navy-500); }
.check:has(input:checked) { border-color: var(--navy-700); background: var(--surface-tint); color: var(--navy-700); }
.check--block {
  display: flex; align-items: flex-start; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .87rem; line-height: 1.55; padding: .8rem .9rem; width: 100%;
}
.check--block input { margin-top: .2rem; }
.check--block span { display: block; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-800); color: #cfdcec; }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
  padding-block: 1.9rem;
}
.trust__item { display: flex; flex-direction: column; gap: .2rem; }
.trust__item strong { color: var(--amber-500); font-size: 1.22rem; letter-spacing: -.01em; }
.trust__item span { font-size: .86rem; line-height: 1.5; color: #a9bcd2; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.4rem, 6.5vw, 5.4rem); }
.section--alt { background: var(--surface-alt); }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Express strip ---------- */
.express-strip {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  color: #e5edf8; padding-block: clamp(3.2rem, 6vw, 4.8rem);
}
.express-strip h2 { color: #fff; }
.express-strip .section-sub { color: #b5c6dc; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius); padding: 1.5rem 1.35rem; position: relative;
}
.step__num {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 10px; background: var(--amber-500); color: var(--navy-900);
  font-weight: 800; margin-bottom: .9rem;
}
.step h3 { color: #fff; margin-bottom: .45rem; font-size: 1.14rem; }
.step p { color: #b5c6dc; font-size: .93rem; margin: 0; }

.express-strip__cta {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  flex-wrap: wrap; margin-top: 2.3rem;
}
.express-strip__note { font-size: .85rem; color: #9db1cb; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-tint); color: var(--navy-700); margin-bottom: .9rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(var(--amber-500), var(--navy-500));
  opacity: .45;
}
.timeline__item { display: flex; gap: 1.3rem; padding-bottom: 1.7rem; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: var(--navy-800); color: var(--amber-500);
  font-weight: 800; font-size: .92rem; border: 4px solid var(--surface-alt); z-index: 1;
}
.timeline__body { padding-top: .35rem; max-width: 760px; }
.timeline__body h3 { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.timeline__body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.chip {
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .18rem .55rem; border-radius: 999px; background: var(--surface-tint); color: var(--navy-600);
}
.chip--time { background: var(--green-soft); color: var(--green); }

/* ---------- Equipment ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.equip {
  border: 1px solid var(--line); border-left: 4px solid var(--amber-500);
  border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; background: var(--surface);
}
.equip h3 { margin-bottom: .25rem; font-size: 1.03rem; }
.equip p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
.equip-note { margin-top: 1.5rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; display: flex; flex-direction: column; height: 100%; position: relative;
}
.plan--featured {
  border: 2px solid var(--navy-700); box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--navy-900);
  font-size: .71rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  padding: .28rem .8rem; border-radius: 999px; white-space: nowrap;
}
.plan__head h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.plan__price { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; margin-bottom: .4rem; }
.plan__num { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--navy-800); line-height: 1; }
.plan__unit { font-size: .85rem; color: var(--ink-mute); font-weight: 600; }
.plan__desc { font-size: .88rem; color: var(--ink-soft); }
.plan__list { list-style: none; padding: 0; margin: 1.1rem 0 1.5rem; display: grid; gap: .55rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.55rem; font-size: .91rem; color: var(--ink-soft); }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 15px; height: 9px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

/* Single-plan pricing: one centered card, wide enough that the included
   list can run in two columns instead of one lonely stack. */
/* Doubled class beats the plain `.pricing` override in the responsive block below. */
.pricing.pricing--solo { grid-template-columns: minmax(0, 660px); justify-content: center; }
.plan--solo { transform: none; padding: 2.2rem clamp(1.4rem, 3vw, 2.4rem); text-align: center; }
.plan--solo .plan__price { justify-content: center; align-items: baseline; gap: .55rem; }
.plan--solo .plan__num { font-size: clamp(3.4rem, 7vw, 4.6rem); }
.plan--solo .plan__unit { font-size: 1rem; }
.plan--solo .plan__desc {
  font-size: .96rem; max-width: 46ch; margin-inline: auto; margin-bottom: 0;
}
.plan__eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800;
  color: var(--amber-600); margin: 0 0 .5rem;
}
.plan__list--split {
  grid-template-columns: repeat(2, 1fr); gap: .6rem 1.6rem;
  text-align: left; margin: 1.7rem 0;
  padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
}
.plan__cta { align-self: center; min-width: min(100%, 340px); }

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

.pricing__notes {
  margin-top: 2.4rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.7rem;
}
.pricing__notes h3 { margin-bottom: .9rem; }
.pricing__notes ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .5rem; grid-template-columns: repeat(2, 1fr); }
.pricing__notes li { font-size: .92rem; color: var(--ink-soft); padding-left: 1.4rem; position: relative; }
.pricing__notes li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 800; font-size: .82rem; top: .1em; }
.pricing__disclaimer { font-size: .8rem; color: var(--ink-mute); margin: 0; border-top: 1px solid var(--line-soft); padding-top: .9rem; }

/* ---------- Documents ---------- */
.docs__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: start; }
.docs__callout {
  margin-top: 1.6rem; background: var(--navy-800); color: #cfdcec;
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.docs__callout h3 { color: #fff; margin-bottom: .4rem; }
.docs__callout p { font-size: .91rem; color: #b0c2d8; }
.docs__callout .link-arrow { color: var(--amber-400); }

.doc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.doc {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.15rem; background: var(--surface);
}
.doc__tag {
  display: inline-block; font-size: .67rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; padding: .2rem .55rem; border-radius: 999px;
  background: var(--surface-tint); color: var(--navy-600); margin-bottom: .6rem;
}
.doc__tag--req { background: #fff3e0; color: var(--amber-600); }
.doc h3 { font-size: .99rem; margin-bottom: .25rem; }
.doc p { font-size: .86rem; color: var(--ink-soft); margin: 0; }

/* ---------- Onboarding ---------- */
.section--express { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: #e5edf8; }
.section--express h2 { color: #fff; }
.section--express .section-sub { color: #b5c6dc; }

.onboard {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.progress {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface-alt); border-bottom: 1px solid var(--line);
}
.progress__step {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem .6rem; font-size: .85rem; font-weight: 700; color: var(--ink-mute);
  border-bottom: 3px solid transparent; text-align: center;
}
.progress__step span {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--line); color: var(--ink-mute); font-size: .78rem; flex: none;
}
.progress__step.is-active { color: var(--navy-800); border-bottom-color: var(--amber-500); }
.progress__step.is-active span { background: var(--amber-500); color: var(--navy-900); }
.progress__step.is-done { color: var(--green); }
.progress__step.is-done span { background: var(--green); color: #fff; }

.onboard__form { padding: 1.9rem clamp(1.1rem, 3vw, 2.2rem) 2.2rem; }
.fs { border: 0; padding: 0; margin: 0; min-width: 0; }
.fs__legend { font-size: 1.25rem; font-weight: 750; letter-spacing: -.02em; margin-bottom: 1.1rem; padding: 0; }
.fs__hint { font-size: .89rem; color: var(--ink-soft); margin-top: -.5rem; margin-bottom: 1.3rem; }
.fs__actions {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  margin-top: 1.7rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
}
.fs__actions .btn--ghost { color: var(--ink-soft); border-color: var(--line); }

/* Uploads */
.uploads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.upload {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem;
  background: var(--surface-alt);
}
.upload__meta h3 { font-size: .98rem; margin-bottom: .15rem; }
.upload__meta p { font-size: .81rem; color: var(--ink-mute); margin: 0 0 .8rem; }

.dropzone {
  display: block; position: relative; cursor: pointer;
  border: 2px dashed var(--line); border-radius: var(--radius-sm);
  background: var(--surface); padding: 1.15rem .8rem; text-align: center;
  transition: border-color .16s ease, background .16s ease, transform .12s ease;
  margin: 0;
}
.dropzone:hover, .dropzone:focus-visible { border-color: var(--navy-500); background: var(--surface-tint); }
.dropzone.is-dragover { border-color: var(--amber-500); background: #fff6e8; transform: scale(1.015); }
.dropzone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer;
}
.dropzone__inner { display: flex; flex-direction: column; align-items: center; gap: .18rem; pointer-events: none; }
.dropzone__inner svg { color: var(--navy-500); }
.dropzone__inner strong { font-size: .89rem; color: var(--navy-700); }
.dropzone__inner small { font-size: .74rem; color: var(--ink-mute); }

.filelist { list-style: none; padding: 0; margin: .7rem 0 0; display: grid; gap: .4rem; }
.filelist:empty { margin: 0; }
.fileitem {
  display: flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .45rem .6rem; font-size: .82rem;
}
.fileitem__icon { flex: none; width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: .62rem; font-weight: 800; }
.fileitem__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.fileitem__size { color: var(--ink-mute); font-size: .75rem; flex: none; }
.fileitem__remove {
  flex: none; border: 0; background: transparent; cursor: pointer;
  color: var(--ink-mute); font-size: 1.15rem; line-height: 1; padding: 0 .2rem;
}
.fileitem__remove:hover { color: var(--red); }
.fileitem--error { border-color: var(--red); background: var(--red-soft); }
.fileitem--error .fileitem__icon { background: #fff; color: var(--red); }

.upload-summary {
  margin: 1.1rem 0 0; font-size: .87rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-alt); border-radius: var(--radius-sm); padding: .65rem .85rem;
}

.notice {
  display: flex; gap: .7rem; align-items: flex-start;
  margin-top: 1.1rem; padding: .9rem 1rem;
  background: var(--green-soft); border-radius: var(--radius-sm);
}
.notice svg { color: var(--green); flex: none; margin-top: .15rem; }
.notice p { margin: 0; font-size: .84rem; color: #15503a; line-height: 1.55; }

/* Review */
.review { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-bottom: 1.5rem; }
.review__row {
  background: var(--surface-alt); border-radius: var(--radius-sm); padding: .7rem .9rem;
}
.review__row--full { grid-column: 1 / -1; }
.review__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; color: var(--ink-mute); }
.review__value { font-size: .94rem; font-weight: 600; word-break: break-word; }
.review__value--muted { color: var(--ink-mute); font-weight: 500; font-style: italic; }

.consents { display: grid; gap: .55rem; margin-bottom: 1.2rem; }
.signature-input {
  font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;
  font-size: 1.3rem; letter-spacing: .02em;
}

.onboard__success { padding: 3rem clamp(1.2rem, 4vw, 3rem); text-align: center; }
.success-mark {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; background: var(--green-soft); color: var(--green);
}
.onboard__success h3 { font-size: 1.6rem; }
.success-ref { font-size: .95rem; color: var(--ink-soft); }
.success-ref strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--surface-alt); padding: .18rem .5rem; border-radius: 6px; letter-spacing: .04em; }
.success-steps {
  text-align: left; max-width: 560px; margin: 1.2rem auto; display: grid; gap: .5rem;
  color: var(--ink-soft); font-size: .93rem; padding-left: 1.2rem;
}
.success-cta { font-weight: 600; }

/* ---------- Compare ---------- */
.compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.compare__col { border-radius: var(--radius); padding: 1.6rem 1.5rem; border: 1px solid var(--line); }
.compare__col h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.compare__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.compare__col li { position: relative; padding-left: 1.7rem; font-size: .93rem; color: var(--ink-soft); }
.compare__col--bad { background: var(--red-soft); border-color: #f6cfcb; }
.compare__col--bad h3 { color: var(--red); }
.compare__col--bad li::before { content: "✕"; position: absolute; left: .15rem; color: var(--red); font-weight: 800; }
.compare__col--good { background: var(--green-soft); border-color: #c4e6d7; }
.compare__col--good h3 { color: var(--green); }
.compare__col--good li::before {
  content: ""; position: absolute; left: .1rem; top: .42em; width: 14px; height: 8px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer; padding: 1.05rem 3rem 1.05rem 1.2rem; font-weight: 700; font-size: 1rem;
  list-style: none; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--navy-500); line-height: 1;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item[open] summary { color: var(--navy-700); }
.faq__body { padding: 0 1.2rem 1.15rem; }
.faq__body p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* ---------- Contact ---------- */
.section--contact { background: var(--navy-800); color: #dbe6f4; }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.section--contact h2 { color: #fff; }
.section--contact .section-sub { color: #b0c2d8; }
.contact__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.05rem; }
.contact__list li { display: flex; flex-direction: column; }
.contact__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: #8ea6c4; font-weight: 700; }
.contact__value { color: var(--amber-400); font-size: 1.1rem; font-weight: 700; text-decoration: none; }
.contact__value:hover { text-decoration: underline; }

.contact__formwrap {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow-lg);
}

/* ---------- Final CTA ---------- */
.finalcta { background: var(--amber-500); color: var(--navy-900); padding-block: clamp(2.8rem, 5vw, 4rem); }
.finalcta__inner { text-align: center; }
.finalcta h2 { margin-bottom: .4rem; }
.finalcta p { font-size: 1.08rem; font-weight: 600; margin-bottom: 1.5rem; }
.finalcta__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.finalcta .btn--accent { --btn-bg: var(--navy-800); --btn-fg: #fff; }
.finalcta .btn--ghost { color: var(--navy-900); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9db1cb; padding-top: 3rem; font-size: .91rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.2rem; }
.brand--footer { margin-bottom: .9rem; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__mark { background: var(--navy-700); }
.footer__brand p { max-width: 36ch; font-size: .89rem; }
.footer__col h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer__col a { color: #9db1cb; text-decoration: none; }
.footer__col a:hover { color: var(--amber-400); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .09); padding-block: 1.2rem; font-size: .83rem;
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 1.2rem; }
.footer__legal a { color: #9db1cb; text-decoration: none; }
.footer__legal a:hover { color: var(--amber-400); }
.footer__disclaimer { padding-bottom: 5.5rem; }
.footer__disclaimer p { font-size: .76rem; color: #6f849f; line-height: 1.6; margin: 0; max-width: 90ch; }

/* ---------- Mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .8rem; border-radius: var(--radius-sm); text-decoration: none;
  font-weight: 700; font-size: .93rem;
}
.mobile-bar__btn--call { background: var(--surface-tint); color: var(--navy-800); flex: 0 0 34%; }
.mobile-bar__btn--primary { background: var(--amber-500); color: var(--navy-900); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6, 16, 31, .62); }
.modal__panel {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  max-width: 700px; width: 100%; max-height: 82vh; overflow-y: auto;
  padding: 2rem clamp(1.2rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute; top: .7rem; right: .9rem; background: transparent; border: 0;
  font-size: 1.9rem; line-height: 1; cursor: pointer; color: var(--ink-mute);
}
.modal__close:hover { color: var(--ink); }
.modal__body { font-size: .92rem; color: var(--ink-soft); }
.modal__body h3 { color: var(--ink); font-size: 1rem; margin-top: 1.3rem; }
.modal__body ul { padding-left: 1.2rem; }
.modal__body li { margin-bottom: .35rem; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 18px);
  z-index: 140; background: var(--navy-900); color: #fff;
  padding: .85rem 1.3rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  font-size: .9rem; font-weight: 600; opacity: 0; transition: opacity .22s ease, transform .22s ease;
  max-width: min(92vw, 460px);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast--error { background: var(--red); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .lead-card { max-width: 560px; }
  .cards, .equip-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .docs__layout, .contact__layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* The full desktop header (logo + 6 nav links + phone + CTA) needs the full
   container width; below that it collapses to the hamburger + sticky action bar. */
@media (max-width: 1200px) {
  html { scroll-padding-top: 76px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem 22px 1rem; display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav a:hover, .nav a.is-current { border-bottom-color: var(--line-soft); }
  .nav-toggle { display: grid; margin-left: auto; }
  .header__cta { display: none; }
  .mobile-bar { display: flex; }
}

@media (max-width: 700px) {
  .cards, .equip-grid, .steps, .uploads, .doc-list,
  .review, .compare, .trust__grid, .pricing__notes ul { grid-template-columns: 1fr; }
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .progress__step { flex-direction: column; gap: .25rem; font-size: .68rem; padding: .7rem .25rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .timeline::before { left: 19px; }
  .timeline__marker { width: 40px; height: 40px; font-size: .82rem; }
  .announce__link { margin-left: 0; }
  .fs__actions { flex-direction: column-reverse; }
  .fs__actions .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .express-strip__cta { flex-direction: column; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .announce, .mobile-bar, .hero__bg, .btn, .modal, .toast { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding-block: 1rem; page-break-inside: avoid; }
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e6edf6;
    --ink-soft: #a9bacf;
    --ink-mute: #8296ae;
    --line: #23324a;
    --line-soft: #1a273b;
    --surface: #0e1928;
    --surface-alt: #0a1320;
    --surface-tint: #16243a;
    --green-soft: #0f2a20;
    --red-soft: #2c1512;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow: 0 6px 18px rgba(0, 0, 0, .45);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .55);
  }
  body { background: var(--surface); }
  .site-header { background: rgba(14, 25, 40, .92); }
  .nav a:hover, .nav a.is-current { color: var(--amber-400); }
  .phone-link { color: var(--amber-400); }
  .brand__mark { background: var(--navy-700); }
  .btn--outline { --btn-fg: var(--ink); }
  .plan__num { color: var(--amber-400); }
  .plan__eyebrow { color: var(--amber-400); }
  .nav { background: var(--surface); }
  .nav-toggle { background: var(--surface); }
  .nav-toggle span { background: var(--ink); }
  .compare__col--bad { background: #2c1512; border-color: #4a221c; }
  .compare__col--good { background: #0f2a20; border-color: #1d4a37; }
  .notice p { color: #b9e6d0; }
  .doc__tag--req { background: #3a2a10; color: var(--amber-400); }
  .mobile-bar { background: rgba(14, 25, 40, .97); }
  .dropzone.is-dragover { background: #2a2010; }
  .finalcta { color: var(--navy-900); }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238296ae' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  }
}
