:root {
  color-scheme: light;
  --ink: #121827;
  --muted: #596172;
  --soft: #f3f6fa;
  --line: #dbe2eb;
  --navy: #14213d;
  --blue: #2454a6;
  --yellow: #f4c542;
  --orange: #f08a24;
  --shadow: 0 24px 80px rgba(18, 24, 39, 0.16);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { display: grid; gap: 2px; min-width: 190px; }
.brand span { color: var(--orange); font-size: 14px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.brand strong { color: var(--navy); font-size: 22px; line-height: 1; }
nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
nav a, .eyebrow { font-size: 12px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
nav a { color: var(--muted); }
.header-call { background: var(--navy); color: white; font-weight: 900; padding: 13px 18px; }

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.96), rgba(36, 84, 166, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.42), transparent 28%);
  color: white;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.hero-copy { max-width: 760px; }
.eyebrow { color: var(--blue); margin: 0 0 12px; }
.hero .eyebrow { color: var(--yellow); }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(44px, 6vw, 84px); letter-spacing: 0; line-height: 0.96; }
h2 { font-size: clamp(30px, 4vw, 54px); letter-spacing: 0; line-height: 1.05; }
h3 { font-size: 22px; }
p { color: var(--muted); font-size: 17px; line-height: 1.68; }
.hero p { color: rgba(255, 255, 255, 0.82); margin-top: 20px; max-width: 680px; }

.actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}
.button.primary { background: var(--yellow); color: var(--navy); }
.button.secondary { background: white; color: var(--navy); }
.button.light { border-color: rgba(255,255,255,.36); color: white; }
.button.dark { background: var(--navy); color: white; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-meta span { border: 1px solid rgba(255, 255, 255, 0.32); color: rgba(255, 255, 255, 0.86); font-weight: 900; padding: 10px 14px; }

.dispatch-card { background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow); color: var(--ink); overflow: hidden; }
.truck-scene { background: linear-gradient(180deg, #f8fafc 0%, #e8eef6 100%); padding: 26px; }
.truck-scene svg { display: block; width: 100%; }
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.status-grid div { border-right: 1px solid var(--line); display: grid; gap: 4px; padding: 20px; }
.status-grid div:last-child { border-right: 0; }
.status-grid strong { color: var(--navy); font-size: 24px; }
.status-grid span { color: var(--muted); font-size: 13px; font-weight: 800; }

.service-strip { background: var(--yellow); color: var(--navy); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; padding: 16px clamp(18px, 5vw, 72px); }
.service-strip span { font-size: 13px; font-weight: 900; text-transform: uppercase; }

.section, .coverage, .payment-callout, .contact { padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 72px); }
.section-head { display: grid; gap: 10px; max-width: 820px; }
.service-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 34px; }
.service-grid article { background: white; border: 1px solid var(--line); display: grid; gap: 14px; min-height: 260px; padding: 24px; }
.service-grid article span { color: var(--orange); font-size: 13px; font-weight: 900; }

.coverage { align-items: start; background: white; display: grid; gap: 36px; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr); }
.coverage p { margin-top: 16px; }
.coverage-list { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.coverage-list span { background: var(--soft); border: 1px solid var(--line); color: var(--navy); font-weight: 900; padding: 18px; }

.payment-callout { align-items: center; background: var(--yellow); color: var(--navy); display: flex; gap: 24px; justify-content: space-between; }
.payment-callout .eyebrow, .payment-callout p { color: rgba(20, 33, 61, 0.78); }
.payment-callout p { margin-top: 10px; }

.contact { align-items: center; background: var(--navy); color: white; display: flex; gap: 24px; justify-content: space-between; }
.contact .eyebrow { color: var(--yellow); }
.contact p { color: rgba(255, 255, 255, 0.78); margin-top: 10px; }

@media (max-width: 940px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .coverage { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-callout, .contact { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .hero { min-height: auto; }
  .dispatch-card { margin-inline: -6px; }
  .status-grid, .service-grid, .coverage-list { grid-template-columns: 1fr; }
  .status-grid div { border-bottom: 1px solid var(--line); border-right: 0; }
  .status-grid div:last-child { border-bottom: 0; }
}
