:root {
  color-scheme: light;
  --navy-950: #06111f;
  --navy-900: #0a1b31;
  --navy-800: #112a46;
  --navy-700: #183a5d;
  --orange: #f47920;
  --orange-dark: #d85d08;
  --orange-soft: #fff2e8;
  --sky: #2c8bd3;
  --green: #14845c;
  --green-soft: #e6f7ef;
  --ink: #142033;
  --muted: #617084;
  --line: #dce3eb;
  --surface: #ffffff;
  --canvas: #f4f7fa;
  --shadow: 0 18px 50px rgba(13, 34, 58, 0.09);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(44, 139, 211, 0.28);
  outline-offset: 2px;
}

.app-header {
  min-height: 82px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--navy-950);
  color: white;
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: skew(-8deg);
  background: var(--orange);
  border-radius: 8px 3px 8px 3px;
  box-shadow: 6px 0 0 rgba(255,255,255,.11);
}
.brand-mark span { transform: skew(8deg); font-size: .9rem; font-weight: 900; letter-spacing: -.04em; }
.brand strong { display: block; font-size: 1.15rem; line-height: 1.1; letter-spacing: -.02em; }
.brand small { color: #aebcc9; font-size: .72rem; }
.pilot-badge { justify-self: start; color: #dce6ef; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.pilot-badge span { display: inline-block; width: 8px; height: 8px; background: #4fd29a; border-radius: 999px; margin-right: 7px; box-shadow: 0 0 0 5px rgba(79,210,154,.09); }
.main-nav { display: flex; align-self: stretch; }
.nav-item { border: 0; border-bottom: 3px solid transparent; padding: 0 18px; background: transparent; color: #aebcc9; font-weight: 700; font-size: .9rem; }
.nav-item:hover { color: white; }
.nav-item.active { color: white; border-color: var(--orange); background: rgba(255,255,255,.04); }
.account-button { min-height: 40px; padding: 8px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 9px; background: transparent; color: white; font-weight: 800; font-size: .82rem; white-space: nowrap; }
.account-button:hover, .account-button.signed-in { border-color: var(--orange); background: rgba(244,121,32,.12); }

main { width: min(1480px, 94vw); margin: 0 auto; padding: 44px 0 70px; }
.view { display: none; }
.view.active { display: block; animation: reveal .28s ease-out; }
@keyframes reveal { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.page-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 26px; }
.page-heading h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.02; letter-spacing: -.045em; color: var(--navy-950); }
.page-heading p:not(.eyebrow) { margin: 10px 0 0; max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.eyebrow { margin: 0 0 7px; color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.hero { min-height: 560px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: clamp(35px, 6vw, 90px); align-items: center; padding: 38px 0 70px; }
.hero-copy h1 { max-width: 850px; margin: 0; color: var(--navy-950); font-size: clamp(3rem, 6vw, 5.7rem); line-height: .94; letter-spacing: -.06em; }
.hero-copy h1 span { color: var(--orange-dark); }
.hero-lead { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions .primary-button, .hero-actions .secondary-button { min-height: 54px; padding-inline: 25px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 11px 24px; margin-top: 26px; color: #4c5d70; font-size: .82rem; font-weight: 750; }
.trust-line span::first-letter { color: var(--green); }
.hero-visual { position: relative; padding: 36px; }
.hero-visual::before { content: ""; position: absolute; inset: 0; border-radius: 34px 8px 34px 8px; background: linear-gradient(145deg, var(--navy-900), var(--navy-950)); transform: rotate(2deg); box-shadow: 0 35px 80px rgba(6,17,31,.2); }
.hero-visual::after { content: ""; position: absolute; width: 170px; height: 7px; right: -16px; top: 78px; background: var(--orange); transform: rotate(-42deg); }
.route-card { position: relative; z-index: 1; padding: 26px; border-radius: 18px; background: white; box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.route-card-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(20,132,92,.12); }
.route-point { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; margin-top: 22px; }
.route-point > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--navy-900); color: white; font-weight: 900; }
.route-point.destination > span { background: var(--orange); }
.route-point div { display: grid; }
.route-point small, .vehicle-match small { color: var(--muted); }
.route-point time { color: var(--navy-900); font-weight: 850; }
.route-line { min-height: 72px; display: flex; align-items: center; gap: 14px; margin-left: 16px; }
.route-line i { width: 2px; height: 58px; background: repeating-linear-gradient(to bottom, var(--orange) 0 6px, transparent 6px 12px); }
.route-line b { padding: 6px 10px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: .72rem; }
.vehicle-match { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin-top: 24px; padding: 15px; border-radius: 12px; background: #f1f5f8; }
.vehicle-match > span { font-size: 1.6rem; }
.vehicle-match div { display: grid; }
.vehicle-match em { color: var(--orange-dark); font-style: normal; font-weight: 900; }
.start-section { padding: 68px clamp(20px, 4vw, 64px); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.section-intro { max-width: 760px; margin-bottom: 32px; }
.section-intro h2 { margin: 0; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.045em; }
.section-intro > p:last-child { color: var(--muted); }
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.action-card { position: relative; display: flex; flex-direction: column; min-height: 325px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: #fbfcfd; overflow: hidden; }
.action-card.featured { border-color: #ffb37c; background: linear-gradient(145deg, #fff8f2, white); }
.action-number { position: absolute; right: 18px; top: 13px; color: #e7ebef; font-size: 3.2rem; font-weight: 950; letter-spacing: -.06em; }
.action-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 11px; background: var(--navy-900); color: white; font-size: 1.4rem; font-weight: 900; }
.featured .action-icon { background: var(--orange); }
.action-card h3 { margin: 0; color: var(--navy-950); font-size: 1.35rem; }
.action-card p { color: var(--muted); font-size: .92rem; }
.card-link { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: auto; padding: 13px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--navy-900); font-weight: 900; text-align: left; }
.card-link span { color: var(--orange-dark); font-size: 1.2rem; }
.home-explainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 70px 0 10px; }
.home-explainer > div { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 2px 12px; }
.home-explainer span { grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange-dark); font-weight: 900; }
.home-explainer strong { color: var(--navy-950); }
.home-explainer p { margin: 4px 0 0; color: var(--muted); font-size: .85rem; }
.workspace-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.carrier-layout { grid-template-columns: minmax(0, 1fr) 390px; }
.panel, .side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-panel { padding: 28px; }

.stepper { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0 0 28px; margin: 0 0 32px; border-bottom: 1px solid var(--line); }
.stepper li { position: relative; display: flex; align-items: center; gap: 10px; color: #8a96a6; font-size: .83rem; }
.stepper li:not(:last-child)::after { content: ""; position: absolute; height: 2px; background: var(--line); left: 42px; right: 10px; top: 15px; z-index: 0; }
.stepper li span { position: relative; z-index: 1; width: 31px; height: 31px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; background: white; font-weight: 800; }
.stepper li strong { position: relative; z-index: 1; background: white; padding-right: 10px; white-space: nowrap; }
.stepper li.active, .stepper li.complete { color: var(--navy-900); }
.stepper li.active span { border-color: var(--orange); color: var(--orange-dark); }
.stepper li.complete span { border-color: var(--green); background: var(--green); color: white; }
.stepper li.complete:not(:last-child)::after { background: var(--green); }
.form-step { display: none; min-height: 420px; }
.form-step.active { display: block; animation: reveal .25s ease-out; }
.section-title { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 24px; }
.section-number { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: var(--navy-900); color: white; font-weight: 900; font-size: .8rem; }
.section-title h2 { margin: 0; color: var(--navy-950); font-size: 1.45rem; letter-spacing: -.025em; }
.section-title p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; }
.field-grid { display: grid; gap: 17px; margin-bottom: 20px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.full-width { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; color: var(--navy-900); font-weight: 750; font-size: .85rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cbd5e0;
  background: white;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 13px;
  font-weight: 500;
  min-height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #99aabe; }
.field input.invalid, .field select.invalid { border-color: #c63b3b; box-shadow: 0 0 0 3px rgba(198,59,59,.1); }
.input-unit { position: relative; }
.input-unit input { padding-right: 48px; }
.input-unit > span { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 800; }
.compact { max-width: 260px; margin: 15px 0 0 55px; }
.toggle-line { display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: #f9fbfd; cursor: pointer; }
.toggle-line input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-line > span:last-child { display: grid; }
.toggle-line small { color: var(--muted); font-weight: 400; }
.switch { position: relative; flex: 0 0 auto; width: 44px; height: 24px; border-radius: 99px; background: #bcc7d3; transition: background .2s; }
.switch::after { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,.18); transition: transform .2s; }
.toggle-line input:checked + .switch { background: var(--orange); }
.toggle-line input:checked + .switch::after { transform: translateX(20px); }
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.check-card { position: relative; cursor: pointer; }
.check-card input { position: absolute; opacity: 0; }
.check-card span { display: block; padding: 10px 14px; border: 1px solid #cbd5e0; border-radius: 9px; background: white; color: var(--muted); font-size: .85rem; font-weight: 750; }
.check-card input:checked + span { border-color: var(--navy-700); background: var(--navy-900); color: white; }
.option-group { padding: 0; margin: 22px 0 5px; border: 0; }
.option-group legend { margin-bottom: 10px; color: var(--navy-900); font-weight: 800; font-size: .88rem; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.primary-button, .secondary-button, .quiet-button {
  border-radius: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 850;
  min-height: 46px;
}
.primary-button { color: white; background: var(--orange); box-shadow: 0 8px 22px rgba(244,121,32,.22); }
.primary-button:hover { background: var(--orange-dark); transform: translateY(-1px); }
.secondary-button { color: var(--navy-900); border-color: #cbd5e0; background: white; }
.quiet-button { background: transparent; border-color: #bdc9d6; color: var(--navy-900); }
.quiet-button:hover, .secondary-button:hover { border-color: var(--navy-700); }
.wide { width: 100%; }
.hidden { display: none !important; }

.side-panel { display: grid; gap: 18px; }
.side-card { padding: 24px; }
.side-card h2 { margin: 0 0 18px; font-size: 1.45rem; letter-spacing: -.03em; }
.dark-card { color: white; border: 0; background: linear-gradient(145deg, var(--navy-900), var(--navy-950)); position: relative; overflow: hidden; }
.dark-card::after { content: ""; position: absolute; width: 180px; height: 5px; background: var(--orange); right: -35px; top: 48px; transform: rotate(-38deg); opacity: .9; }
.dark-card .eyebrow { color: #ffad72; }
.process-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.process-list li { display: flex; gap: 12px; align-items: flex-start; }
.process-list li > span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #55708c; border-radius: 6px; color: #ffad72; font-weight: 900; font-size: .78rem; }
.process-list div { display: grid; }
.process-list small { color: #aebcc9; margin-top: 2px; }
.notice-card { box-shadow: none; border-left: 4px solid var(--orange); }
.notice-card p { color: var(--muted); margin: 7px 0 0; font-size: .88rem; }

.route-summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; margin-bottom: 14px; border-radius: 12px; background: var(--navy-950); color: white; }
.route-summary strong { font-size: 1rem; }
.route-summary span { color: #aebcc9; font-size: .82rem; }
.offers { display: grid; gap: 12px; }
.offer-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 15px; border: 1px solid var(--line); border-radius: 13px; padding: 17px; position: relative; background: white; }
.offer-card.recommended { border: 2px solid var(--orange); }
.offer-label { display: inline-block; margin-bottom: 7px; padding: 4px 8px; background: var(--orange-soft); color: var(--orange-dark); border-radius: 999px; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.offer-card h3 { margin: 0; font-size: 1rem; }
.offer-meta { display: flex; flex-wrap: wrap; gap: 9px 15px; margin-top: 8px; color: var(--muted); font-size: .78rem; }
.offer-price { text-align: right; }
.offer-price strong { display: block; color: var(--navy-950); font-size: 1.5rem; }
.offer-price small { color: var(--muted); }
.offer-card button { margin-top: 9px; padding: 8px 14px; min-height: 38px; }

.vehicle-list { display: grid; gap: 12px; }
.vehicle-item { border: 1px solid var(--line); border-radius: 11px; padding: 14px; }
.vehicle-item-top { display: flex; justify-content: space-between; gap: 10px; }
.vehicle-item strong { color: var(--navy-950); }
.vehicle-item small { display: block; margin-top: 4px; color: var(--muted); }
.status-pill { align-self: start; color: var(--green); background: var(--green-soft); border-radius: 999px; padding: 4px 8px; font-size: .68rem; font-weight: 850; white-space: nowrap; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.feature-tags span { padding: 3px 7px; background: #edf2f7; color: #536276; border-radius: 6px; font-size: .67rem; font-weight: 750; }

.tracking-shell { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 24px; align-items: start; }
.tracking-search { padding: 24px; }
.tracking-search .primary-button { width: 100%; margin-top: 14px; }
.text-button { width: 100%; margin-top: 10px; border: 0; background: transparent; color: var(--sky); font-size: .82rem; font-weight: 800; }
.tracking-result { min-height: 410px; padding: 30px; }
.empty-state { display: grid; place-items: center; align-content: center; text-align: center; color: var(--muted); }
.empty-state h2 { color: var(--navy-950); margin: 10px 0 4px; }
.route-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); font-size: 1.7rem; font-weight: 900; }
.tracking-header { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.tracking-header h2 { margin: 0; }
.tracking-header p { color: var(--muted); margin: 5px 0 0; }
.tracking-code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 900; color: var(--orange-dark); }
.tracking-stage { display: grid; grid-template-columns: repeat(4, 1fr); margin: 24px 0; }
.stage { position: relative; padding-top: 34px; color: #8a96a6; font-size: .78rem; }
.stage::before { content: ""; position: absolute; top: 10px; left: 0; width: 18px; height: 18px; background: white; border: 3px solid #bdc7d2; border-radius: 50%; z-index: 2; }
.stage:not(:last-child)::after { content: ""; position: absolute; top: 18px; left: 18px; right: 0; height: 3px; background: #d7dee6; }
.stage.done, .stage.current { color: var(--navy-900); font-weight: 800; }
.stage.done::before, .stage.current::before { border-color: var(--green); background: var(--green); }
.stage.done::after { background: var(--green); }
.stage.current::before { box-shadow: 0 0 0 6px rgba(20,132,92,.13); }
.tracking-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fact { padding: 14px; border-radius: 10px; background: #f3f6f9; }
.fact span { display: block; color: var(--muted); font-size: .72rem; }
.fact strong { display: block; margin-top: 3px; color: var(--navy-950); }
.privacy-note { margin-top: 18px; padding: 12px; background: var(--orange-soft); color: #8f430e; border-radius: 9px; font-size: .8rem; }

.modal { display: none; position: fixed; inset: 0; z-index: 50; }
.modal.open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 12, 23, .7); backdrop-filter: blur(3px); }
.modal-card { position: relative; z-index: 1; width: min(500px, 92vw); padding: 34px; border-radius: 20px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.32); text-align: center; }
.modal-card h2 { margin: 0 0 8px; font-size: 1.8rem; color: var(--navy-950); }
.modal-card > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; right: 14px; top: 12px; border: 0; background: transparent; font-size: 1.7rem; color: var(--muted); }
.success-mark { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 1.8rem; font-weight: 900; }
.auth-card { width: min(470px, 92vw); text-align: left; }
.auth-card h2 { margin-top: 0; }
.auth-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.auth-brand > div { display: grid; }
.auth-brand small { color: var(--muted); }
.auth-description { margin-top: -2px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin: 22px 0 18px; padding: 4px; border-radius: 11px; background: #edf2f6; }
.auth-tab { min-height: 42px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-weight: 850; }
.auth-tab.active { background: white; color: var(--navy-950); box-shadow: 0 3px 10px rgba(13,34,58,.1); }
.auth-form { display: grid; gap: 14px; }
.prototype-note { margin: 17px 0 0; padding: 11px; border-radius: 8px; background: var(--orange-soft); color: #8f430e !important; font-size: .75rem; }
.booking-code { margin: 20px 0; padding: 14px; border: 2px dashed #aebdcc; border-radius: 10px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; color: var(--navy-950); font-size: 1.4rem; font-weight: 900; letter-spacing: .04em; }
.booking-details { margin-bottom: 20px; color: var(--muted); font-size: .88rem; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 80; max-width: 370px; transform: translateY(100px); opacity: 0; padding: 13px 16px; border-radius: 10px; background: var(--navy-950); color: white; box-shadow: var(--shadow); transition: .25s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 22px 4vw; border-top: 1px solid var(--line); color: var(--muted); background: white; font-size: .78rem; }

@media (max-width: 1020px) {
  .app-header { grid-template-columns: auto 1fr auto; padding-top: 12px; }
  .pilot-badge { justify-self: end; }
  .main-nav { grid-column: 1 / -1; grid-row: 2; min-height: 52px; overflow-x: auto; }
  .nav-item { flex: 1; min-width: max-content; }
  .workspace-grid, .carrier-layout, .tracking-shell { grid-template-columns: 1fr; }
  .side-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 650px; }
}
@media (max-width: 700px) {
  .app-header { padding: 11px 4vw 0; gap: 10px; }
  .brand small { display: none; }
  .pilot-badge { font-size: .65rem; }
  .main-nav { overflow: hidden; }
  .nav-item { min-width: 0; padding: 0 7px; font-size: .78rem; }
  .main-nav .nav-item:first-child { display: none; }
  .account-button { padding-inline: 10px; max-width: 112px; overflow: hidden; text-overflow: ellipsis; }
  main { width: 92vw; padding-top: 28px; }
  .hero { min-height: auto; padding: 20px 0 48px; gap: 28px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-visual { padding: 20px; }
  .route-card { padding: 19px; }
  .start-section { padding: 38px 18px; }
  .action-grid, .home-explainer { grid-template-columns: 1fr; }
  .action-card { min-height: 275px; }
  .page-heading { align-items: flex-start; flex-direction: column; }
  .page-heading h1 { font-size: 2.25rem; }
  .form-panel { padding: 18px; }
  .stepper strong { display: none; }
  .stepper li:not(:last-child)::after { right: 4px; }
  .two-columns, .tracking-facts { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .side-panel { grid-template-columns: 1fr; }
  .form-step { min-height: auto; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price { text-align: left; }
  .route-summary, .tracking-header { align-items: flex-start; flex-direction: column; }
  .tracking-stage { grid-template-columns: 1fr; gap: 10px; }
  .stage { padding: 0 0 0 34px; }
  .stage::before { top: 1px; }
  .stage:not(:last-child)::after { top: 19px; left: 8px; width: 3px; height: 26px; }
  footer { flex-direction: column; }
}

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