/* ==========================================================================
   US LOADS — styles.css
   Keeping America Moving, One Load at a Time
   --------------------------------------------------------------------------
   Design system notes:
   - Dark "asphalt" base + navy panels + Old Glory red. Chrome/steel accents.
   - Signature motif: DOT conspicuity tape (the red/white reflective tape on
     every trailer in America) used as section dividers and eyebrow markers.
   - Type: Barlow Condensed (display, highway-signage DNA) + Barlow (body).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --asphalt:      #0B0E13;   /* page dark base (matches logo background) */
  --asphalt-2:    #11151D;   /* raised dark surface */
  --navy:         #122A47;   /* deep navy panel */
  --navy-2:       #0E2138;   /* darker navy */
  --red:          #C8102E;   /* Old Glory red */
  --red-dark:     #9E0C24;
  --paper:        #F4F6F9;   /* light section background */
  --white:        #FFFFFF;
  --ink:          #16202C;   /* text on light */
  --ink-soft:     #46546A;   /* muted text on light */
  --steel:        #9AA6B5;   /* muted text on dark */
  --steel-light:  #C9D2DC;
  --line-dark:    rgba(255,255,255,.10);
  --line-light:   rgba(22,32,44,.12);
  --chrome:       linear-gradient(135deg,#F2F5F8 0%,#C6CFD9 45%,#8E9AA9 100%);

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", "Segoe UI", Arial, sans-serif;

  /* Scale */
  --size-hero:    clamp(2.6rem, 6.5vw, 4.6rem);
  --size-h2:      clamp(2rem, 4.2vw, 3rem);
  --size-h3:      clamp(1.35rem, 2.4vw, 1.7rem);
  --size-body:    1.0625rem;

  /* Layout */
  --container:    1180px;
  --section-pad:  clamp(4rem, 9vw, 7rem);
  --radius:       10px;
  --shadow:       0 14px 40px rgba(8,12,20,.18);
  --header-h:     88px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@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-body);
  font-size: var(--size-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff; padding: .75rem 1.25rem;
  z-index: 1000; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

/* ---------- 3. Signature: conspicuity tape (red/white DOT trailer tape) ---------- */
.tape {
  height: 8px; width: 132px; border-radius: 2px;
  background: repeating-linear-gradient(90deg,
    var(--red) 0 22px, #fff 22px 33px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.tape--center { margin-inline: auto; }
.tape--wide { width: 100%; max-width: none; height: 6px; border-radius: 0; }
.section-dark .tape { box-shadow: 0 0 14px rgba(200,16,46,.35); }

/* ---------- 4. Typography helpers ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 700;
}
h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); font-weight: 600; }
p  { margin: 0 0 1.1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .9rem; color: var(--red); margin-bottom: .85rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 6px; border-radius: 1px;
  background: repeating-linear-gradient(90deg, var(--red) 0 9px, currentColor 9px 13px);
  opacity: .9;
}
.section-dark .eyebrow { color: #FF5A70; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 62ch; }
.section-dark .lead { color: var(--steel-light); }

/* ---------- 5. Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--asphalt); color: var(--steel-light); }
.section-navy {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(200,16,46,.14), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--steel-light);
}
.section-dark h2, .section-dark h3, .section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .tape { margin: 1.1rem auto 0; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.08rem; line-height: 1;
  padding: 1rem 1.9rem; border-radius: 6px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 22px rgba(200,16,46,.35);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); /* mud-flap slant */
  border-radius: 0;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.2rem; }

/* ---------- 7. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,14,19,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.header-bar {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
/* LOGO SIZE — adjust here (desktop) and in the 920px media query (mobile) */
.brand img { height: 72px; width: auto; padding: 6px 0; }
.brand-text { display: none; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: 1rem; color: var(--steel-light);
  text-decoration: none; padding: .4rem 0; position: relative;
}
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: #fff; text-decoration: none; letter-spacing: .03em; white-space: nowrap;
}
.header-phone span { color: var(--red); margin-right: .35rem; }
.nav-toggle {
  display: none; background: none; border: 0; color: #fff;
  width: 46px; height: 46px; cursor: pointer; margin-left: auto;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 920px) {
  :root { --header-h: 76px; }
  .brand img { height: 58px; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--asphalt-2); border-bottom: 1px solid var(--line-dark);
    padding: 1rem 1.4rem 1.6rem; margin: 0;
    transform: translateY(-110%); transition: transform .25s ease;
    visibility: hidden;
  }
  .main-nav.is-open { transform: translateY(0); visibility: visible; }
  .main-nav ul { flex-direction: column; gap: .2rem; }
  .main-nav a { display: block; padding: .8rem 0; font-size: 1.15rem; border-bottom: 1px solid var(--line-dark); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta .btn { display: none; }
  .header-phone { font-size: 1.05rem; }
}
@media (max-width: 560px) { .header-phone { display: none; } }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; isolation: isolate; color: #fff;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  background: var(--asphalt);
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(6rem, 12vw, 9rem);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(28px, 5vw, 64px)), 0 100%);
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
/* YouTube background iframe: oversized + centered to emulate object-fit:cover
   (16:9 frame always fills the hero, cropping edges as needed). */
.hero-media .hero-yt {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;           /* 16:9 of viewport width */
  min-height: 100%; min-width: 177.78vh;   /* and at least hero height */
  transform: translate(-50%, -50%) scale(1.08); /* hide YT edge UI/letterbox */
  border: 0; pointer-events: none;
  opacity: 0; transition: opacity .8s ease;
}
.hero-media .hero-yt.is-playing { opacity: 1; }
.hero::before { /* navy + red wash over photo */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(7,12,20,.92) 0%, rgba(14,33,56,.82) 45%, rgba(11,14,19,.55) 100%),
    radial-gradient(900px 420px at 12% 110%, rgba(200,16,46,.28), transparent 60%);
}
/* VIDEO MODE: deeper "patriot navy" overlay so the moving footage reads as
   a tinted backdrop and the white headline stays readable. */
.hero[data-mode="video"]::before {
  background:
    linear-gradient(100deg, rgba(10,22,40,.94) 0%, rgba(14,33,56,.86) 42%, rgba(14,33,56,.20) 100%),
    linear-gradient(rgba(11,24,43,.35), rgba(11,24,43,.15)),
    radial-gradient(900px 420px at 12% 110%, rgba(200,16,46,.16), transparent 60%);
}
.hero-inner { max-width: 720px; }
.hero-flag {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-size: .95rem; color: var(--steel-light);
  border: 1px solid rgba(255,255,255,.25); border-radius: 99px;
  padding: .45rem 1.05rem; margin-bottom: 1.4rem; background: rgba(11,14,19,.45);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: #FF4D64; }
.hero .tape { margin: 1.4rem 0 1.3rem; }
.hero-sub { font-size: 1.22rem; color: var(--steel-light); max-width: 56ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.9rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.1rem 2.2rem; margin-top: 2.4rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust li {
  list-style: none; display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; font-size: 1rem; color: var(--steel-light);
}
.hero-trust ul { display: contents; margin: 0; padding: 0; }
.hero-trust svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ---------- 9. Trust bar ---------- */
.trust-bar { background: var(--navy-2); color: #fff; padding: 1.1rem 0; }
.trust-bar .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem 2.6rem; text-align: center;
}
.trust-bar .item {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; font-size: .98rem; color: var(--steel-light);
  display: flex; align-items: center; gap: .55rem;
}
.trust-bar .item svg { width: 17px; height: 17px; color: var(--red); }

/* ---------- 10. Cards & grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: 0 4px 16px rgba(16,28,44,.06);
  border-top: 4px solid var(--navy);
}
.card.card-red { border-top-color: var(--red); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card .icon {
  width: 46px; height: 46px; border-radius: 8px; margin-bottom: 1rem;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.card.card-red .icon { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.card .icon svg { width: 24px; height: 24px; }

.card-dark {
  background: var(--asphalt-2); border: 1px solid var(--line-dark);
  border-top: 4px solid var(--red); border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.card-dark h3 { color: #fff; }
.card-dark p { color: var(--steel); margin-bottom: 0; }

/* Check lists */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list svg { width: 21px; height: 21px; flex: none; color: var(--red); margin-top: .2em; }
.check-list strong { display: block; font-family: var(--font-display); font-size: 1.12rem; text-transform: uppercase; letter-spacing: .03em; }
.section-dark .check-list strong, .section-navy .check-list strong { color: #fff; }
.check-list span { color: var(--ink-soft); }
.section-dark .check-list span, .section-navy .check-list span { color: var(--steel); }

/* Split layout */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
}
.split-media::after { /* tape corner accent */
  content: ""; position: absolute; left: -10px; bottom: -10px; width: 120px; height: 8px;
  background: repeating-linear-gradient(90deg, var(--red) 0 22px, #fff 22px 33px);
  border-radius: 2px;
}

/* ---------- 11. Opportunity panels (drivers / lease purchase) ---------- */
.op-panel {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: #fff; border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
}
.op-panel header {
  padding: 1.5rem 1.6rem 1.3rem; color: #fff;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
}
.op-panel.op-red header { background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); }
.op-panel header h3 { margin: 0; color: #fff; }
.op-panel header p { margin: .35rem 0 0; color: rgba(255,255,255,.85); font-size: 1rem; }
.op-panel .body { padding: 1.6rem; display: flex; flex-direction: column; gap: 1.3rem; flex: 1; }
.op-panel .body .btn { align-self: flex-start; margin-top: auto; }

/* ---------- 12. Equipment ---------- */
.equip-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.equip-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.equip-card .label {
  position: absolute; inset: auto 0 0 0; padding: 1.1rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(8,11,17,.92) 55%);
  color: #fff;
}
.equip-card .label h3 { margin: 0 0 .2rem; color: #fff; }
.equip-card .label p { margin: 0; color: var(--steel-light); font-size: .98rem; }
.equip-card .badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .85rem; color: #fff;
  background: var(--red); padding: .35rem .7rem; border-radius: 4px;
}
.equip-card .badge.badge-navy { background: var(--navy); }

/* ---------- 13. Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 2rem 1.6rem 1.7rem; border-radius: var(--radius);
  background: var(--asphalt-2); border: 1px solid var(--line-dark);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--red);
  display: block; margin-bottom: .7rem;
}
.step h3 { color: #fff; }
.step p { color: var(--steel); margin: 0; }

/* ---------- 14. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff; line-height: 1;
}
.stat .num .accent { color: #FF4D64; }
.stat .lbl {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: var(--steel); font-size: .95rem; margin-top: .45rem;
}

/* ---------- 15. Testimonials ---------- */
.quote-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem 1.7rem;
  border: 1px solid var(--line-light); box-shadow: 0 4px 16px rgba(16,28,44,.06);
  display: flex; flex-direction: column; gap: 1rem;
}
.quote-card blockquote { margin: 0; font-size: 1.05rem; color: var(--ink); }
.quote-card .who-row { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.quote-card .avatar {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--red); flex: none;
}
.quote-card .who { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.quote-card .who strong { color: var(--red); }
.quote-card .stars { color: var(--red); letter-spacing: .15em; }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  margin-bottom: .9rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.22rem;
  text-transform: uppercase; letter-spacing: .03em; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--red); font-weight: 400; transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line-light); }
.faq .answer { padding: 1.1rem 1.4rem 1.3rem; color: var(--ink-soft); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- 17. Form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
@media (max-width: 920px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info .big-phone {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem); color: #fff; text-decoration: none; line-height: 1.1;
}
.contact-info .big-phone:hover { color: #FF4D64; }
.contact-info a.mail { color: var(--steel-light); }

.form-card {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block; font-weight: 600; font-size: .95rem; margin-bottom: .35rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: 1.02rem;
}
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .75rem .85rem; border: 1.5px solid #C5CDD8; border-radius: 6px;
  background: #FBFCFE;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); outline: 3px solid rgba(18,42,71,.18); outline-offset: 0;
}
.field .hint { font-size: .86rem; color: var(--ink-soft); margin-top: .3rem; }
.field .error-msg { display: none; font-size: .88rem; color: var(--red); margin-top: .3rem; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .error-msg { display: block; }

fieldset.field { border: 1.5px solid #C5CDD8; border-radius: 6px; padding: .9rem 1rem .6rem; margin: 0; }
fieldset.field legend { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 1.02rem; padding: 0 .4rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: .4rem 1.3rem; }
.choice { display: flex; align-items: center; gap: .5rem; font-size: .98rem; padding: .25rem 0; }
.choice input { width: 18px; height: 18px; accent-color: var(--red); }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.consent input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--red); flex: none; }

.form-status { display: none; padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.1rem; font-weight: 600; }
.form-status.success { display: block; background: #E8F6EC; color: #1C6B36; border: 1px solid #9ED4B0; }
.form-status.error   { display: block; background: #FCEBEE; color: var(--red-dark); border: 1px solid #ECAAB5; }

/* honeypot — visually removed, present for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--asphalt); color: var(--steel); }
.footer-top { padding: clamp(3rem, 7vw, 4.5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer img.footer-logo { height: 110px; width: auto; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: 1.2rem; letter-spacing: .08em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer a { color: var(--steel); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--steel-light); }
.footer-legal {
  border-top: 1px solid var(--line-dark); padding: 1.4rem 0;
  font-size: .88rem; color: #76808E;
}
.footer-legal .container { display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
.footer-disclaimer { font-size: .85rem; color: #76808E; margin-top: 1.6rem; max-width: 70ch; }

/* ---------- 19. Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px; background: var(--line-dark);
  transform: translateY(110%); transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,.35);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  flex: 1; text-align: center; padding: 1rem .5rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; font-size: 1.05rem; text-decoration: none; color: #fff;
}
.sticky-cta .call { background: var(--navy); }
.sticky-cta .apply { background: var(--red); }
@media (max-width: 760px) { .sticky-cta { display: flex; } body { padding-bottom: 0; } }

/* ---------- 20. Reveal-on-scroll (lightweight, respects reduced motion) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- 21. Utility / misc ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.note {
  background: #FFF6E8; border: 1px solid #EDD9B4; border-left: 4px solid #D9A441;
  border-radius: 6px; padding: 1rem 1.2rem; font-size: .95rem; color: #6B5523;
}
.section-dark .note, .section-navy .note {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18);
  border-left-color: var(--red); color: var(--steel-light);
}

/* Legal pages */
.legal-page { padding: calc(var(--header-h) + 2rem) 0 4rem; max-width: 820px; }

/* ---------- Page hero (interior pages, e.g. apply.html) ---------- */
.page-hero {
  background: var(--asphalt); color: #fff;
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(2.2rem, 5vw, 3.2rem);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(18px, 3vw, 36px)), 0 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .tape { margin: 1.2rem 0 1.1rem; max-width: 520px; }
.page-hero .hero-sub { font-size: 1.15rem; color: var(--steel-light); max-width: 62ch; }
.breadcrumb {
  font-family: var(--font-display); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-size: .9rem; color: var(--steel-light);
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--steel-light); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { margin: 0 .45rem; color: var(--red); }

/* ---------- Thank-you page steps ---------- */
.ty-steps { list-style: none; counter-reset: ty; margin: 1.4rem 0 0; padding: 0; }
.ty-steps li {
  counter-increment: ty; position: relative;
  padding: 0 0 1.4rem 3.6rem; display: flex; flex-direction: column; gap: .2rem;
}
.ty-steps li::before {
  content: counter(ty); position: absolute; left: 0; top: 0;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--red); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem; display: grid; place-items: center;
}
.ty-steps li strong { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; }
.ty-steps li span { color: var(--ink-soft); }
.legal-page h1 { margin-top: 1rem; }
.legal-page h2 { font-size: 1.5rem; margin-top: 2.2rem; }

/* 404 */
.page-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--asphalt); color: var(--steel-light); padding: 4rem 1.5rem; }
.page-404 h1 { color: #fff; font-size: clamp(3rem, 10vw, 6rem); }
