/* ===========================================================
   Hero — clean light, full-bleed truck photo
   =========================================================== */
.hero-light {
  position: relative; overflow: hidden; background: #fff;
  border-bottom: 1px solid var(--line);
}
/* full-bleed photo (truck banner) */
.hero-light .hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 0; z-index: 0;
}
/* white scrim keeps the left clean and readable */
.hero-light .hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, #fff 34%, rgba(255,255,255,.72) 52%, rgba(255,255,255,.08) 78%, transparent 100%);
}
.hero-light .hero-scrim::after {
  content: ""; position: absolute; left: -120px; top: -120px; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(21,131,209,.14), transparent 70%);
}
.hero-light-inner {
  position: relative; z-index: 2;
  padding: 76px 24px 80px;
}
.hero-light .hero-col { max-width: 600px; }
.hero-light h1 { color: var(--ink); font-size: clamp(42px, 5.4vw, 72px); line-height: .98; margin: 16px 0 0; }
.hero-light .accent { color: var(--blue); }
.hero-light .hero-lead { color: var(--ink-60); font-size: 18.5px; margin-top: 20px; max-width: 500px; }
.hero-light .hero-since { color: var(--ink-60); }
.hero-light .hero-since .rule { background: var(--blue); }
.hero-light .hero-search { margin-top: 26px; }
.hero-light .hero-cta { margin-top: 28px; }

/* bigsearch on white: add a touch more presence */
.hero-light .bigsearch { box-shadow: var(--sh-3); border-color: var(--line); }
.hero-light .bigsearch button { background: var(--blue); }
.hero-light .bigsearch button:hover { background: var(--blue-700); }
.hero-light .bigsearch-hint { color: var(--ink-45); }
.hero-light .bigsearch-hint b { color: var(--ink-80); }

@media (max-width: 880px) {
  .hero-light { min-height: 0; }
  .hero-light .hero-scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.96) 55%, #fff 100%);
  }
  .hero-light-inner { padding: 48px 16px 52px; }
  .hero-light h1 { font-size: 40px; }
}
