:root {
  --ink: #07111f;
  --paper: #f7fbff;
  --paper-2: #dcecff;
  --asphalt: #111827;
  --asphalt-2: #263446;
  --stripe: #ffd23f;
  --signal: #ff4f1f;
  --pine: #0d7c66;
  --blue: #00a9c8;
  --jeep-blue: #1877f2;
  --jeep-blue-dark: #0a3c89;
  --white: #ffffff;
  --muted: #5f6b7a;
  --line: rgba(7, 17, 31, 0.13);
  --shadow: 0 28px 90px rgba(13, 42, 82, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(24,119,242,0.18), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(255,79,31,0.12), transparent 22%),
    linear-gradient(90deg, rgba(24,119,242,0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, #ffffff 0%, var(--paper) 58%, #eaf5ff 100%);
  font-family: "Public Sans", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.19;
  background-image: radial-gradient(circle at 12% 18%, rgba(0,169,200,0.35) 0 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: screen;
  z-index: 20;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(20,18,15,0.12);
  background: rgba(247, 251, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--jeep-blue), #00a9c8);
  border: 3px solid var(--stripe);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  transform: skew(-8deg);
  box-shadow: 6px 6px 0 var(--signal), 0 0 24px rgba(24,119,242,0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(24,119,242,0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(13, 42, 82, 0.08);
}

.topbar nav a,
.call-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.topbar nav a:hover {
  background: linear-gradient(135deg, var(--jeep-blue), var(--blue));
  color: var(--white);
}

.call-link {
  justify-self: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), #ff8a00);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding: clamp(26px, 5vw, 72px) clamp(18px, 4vw, 48px) 34px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-media {
  position: absolute;
  inset: 88px clamp(18px, 4vw, 48px) auto clamp(18px, 4vw, 48px);
  height: min(56vh, 590px);
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.12) contrast(1.04);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,0.88) 0%, rgba(7,17,31,0.46) 29%, rgba(7,17,31,0.08) 58%, rgba(7,17,31,0.18) 100%),
    linear-gradient(180deg, transparent 38%, rgba(7,17,31,0.44) 100%);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  color: var(--white);
  background: rgba(7,17,31,0.76);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
  min-width: 0;
  padding-top: min(45vh, 480px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 8vw, 124px);
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  max-width: 860px;
}

h3 {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.lede {
  max-width: 650px;
  margin: 22px 0 0;
  color: #423b32;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.quote-form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}

.primary-action,
.quote-form button {
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), #ff8a00);
}

.secondary-action {
  background: var(--white);
}

.quote-console {
  position: relative;
  z-index: 2;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 118px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 12px 12px 0 var(--ink);
}

.console-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink), #0a3c89);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-header strong {
  margin-left: auto;
  color: var(--stripe);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34f5a2;
  box-shadow: 0 0 0 5px rgba(52, 245, 162, 0.2), 0 0 20px rgba(52,245,162,0.65);
}

.quote-form {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

.quote-form > *,
.field-grid > * {
  min-width: 0;
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

select,
input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(24,119,242,0.2);
  border-radius: 0;
  padding: 11px 12px;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(255,91,47,0.14);
}

textarea {
  resize: vertical;
}

.range-line {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 12px;
  align-items: center;
}

input[type="range"] {
  accent-color: var(--signal);
}

output {
  font-weight: 900;
  text-align: right;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(20,18,15,0.22);
  background: #fffdf6;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented label {
  min-height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.segmented label + input + label {
  border-left: 1px solid rgba(20,18,15,0.14);
}

.segmented input:checked + label {
  color: var(--white);
  background: linear-gradient(135deg, var(--jeep-blue), var(--blue));
}

.toggle-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  font-weight: 900;
}

.toggle-line input {
  width: 20px;
  height: 20px;
  accent-color: var(--signal);
}

.price-card {
  padding: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(255,210,63,0.25), transparent 26%),
    linear-gradient(135deg, #07111f, #0d7c66);
  border: 2px solid var(--ink);
}

.price-card span,
.price-card small {
  display: block;
}

.price-card span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 4px 0;
  color: var(--stripe);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.price-card small {
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
}

.price-disclaimer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.88) !important;
  font-weight: 800;
}

.payment-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #eaf5ff);
  border: 2px solid rgba(7,17,31,0.85);
  box-shadow: 5px 5px 0 rgba(24,119,242,0.18);
}

.payment-card > span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pay-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.pay-row strong {
  font-size: 13px;
}

.pay-row code {
  min-width: 0;
  padding: 8px 10px;
  overflow-wrap: anywhere;
  color: var(--white);
  background: var(--ink);
  border-left: 5px solid var(--stripe);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.payment-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-success {
  display: none;
  margin: 0;
  color: var(--pine);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.form-success.show {
  display: block;
}

.service-lanes,
.dispatch-board,
.route-section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 48px);
}

.service-lanes h2 {
  margin-bottom: 28px;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lane-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 2px solid var(--ink);
  background: rgba(255,255,255,0.78);
  box-shadow: 6px 6px 0 rgba(24,119,242,0.11), 0 18px 55px rgba(13,42,82,0.08);
}

.lane-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #07111f, #0a3c89);
  transform: translateY(-18px);
}

.lane-card p {
  margin: 16px 0;
  color: inherit;
  line-height: 1.5;
}

.lane-card strong {
  margin-top: auto;
  color: var(--signal);
}

.pricing-footnote {
  max-width: 980px;
  margin: 22px 0 0;
  padding: 14px 16px;
  color: #27364a;
  background: rgba(255,255,255,0.72);
  border-left: 6px solid var(--signal);
  box-shadow: 6px 6px 0 rgba(24,119,242,0.1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.featured strong {
  color: var(--stripe);
}

.lane-number {
  width: fit-content;
  margin-bottom: 24px;
  padding: 4px 8px;
  color: var(--ink);
  background: var(--stripe);
  font-family: "Archivo Black", Impact, sans-serif;
}

.dispatch-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(0,169,200,0.22), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0.065) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(145deg, #07111f, #132b45 62%, #0d7c66);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.dispatch-board p,
.route-copy p {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.board {
  border: 2px solid var(--white);
  background: rgba(7, 17, 31, 0.9);
  box-shadow: 12px 12px 0 var(--signal), 0 0 45px rgba(0,169,200,0.24);
}

.board-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.board-top span {
  color: var(--stripe);
}

.job-card {
  margin: 14px;
  padding: 16px;
  border-left: 7px solid var(--blue);
  background: rgba(255,255,255,0.08);
}

.job-card.urgent {
  border-left-color: var(--signal);
}

.job-card.route {
  border-left-color: var(--stripe);
}

.job-card span,
.job-card small,
.job-card strong {
  display: block;
}

.job-card span {
  color: var(--stripe);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.job-card strong {
  margin: 6px 0;
  font-size: 22px;
}

.job-card small {
  color: rgba(255,255,255,0.68);
}

.route-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}

.phase-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: phase;
  border-top: 2px solid var(--ink);
}

.phase-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  border-bottom: 2px solid var(--ink);
}

.phase-list span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-list strong {
  font-size: clamp(18px, 2vw, 26px);
}

@media (max-width: 1040px) {
  .hero,
  .dispatch-board,
  .route-section {
    grid-template-columns: 1fr;
  }

  .quote-console {
    margin-top: 0;
  }

  .lane-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lane-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 330px;
    min-height: 330px;
    margin-bottom: 20px;
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-copy {
    padding-top: 0;
  }

  .field-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .quote-console {
    width: calc(100vw - 36px);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .phase-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
}
