:root {
  color-scheme: light;
  --ink: #18212a;
  --muted: #5c6670;
  --soft: #f5f7f8;
  --line: #dde4e8;
  --panel: #ffffff;
  --panel-tint: #fbfcfd;
  --orange: #f15a24;
  --orange-dark: #c63d11;
  --teal: #007a78;
  --teal-soft: rgba(0, 122, 120, 0.1);
  --gold: #ffb000;
  --night: #111820;
  --shadow: 0 18px 50px rgba(17, 24, 32, 0.12);
  --shadow-soft: 0 12px 34px rgba(17, 24, 32, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 228, 232, 0.82);
  backdrop-filter: blur(14px);
}

.site-header.has-shadow {
  box-shadow: 0 10px 28px rgba(17, 24, 32, 0.08);
}

.brand img,
.footer-brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #313d47;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(241, 90, 36, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(198, 61, 17, 0.28);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-outline {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 10px 26px rgba(17, 24, 32, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 0.94rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 112px));
  overflow: hidden;
  background: var(--night);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-courier.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 20, 27, 0.92) 0%, rgba(14, 20, 27, 0.78) 38%, rgba(14, 20, 27, 0.2) 74%),
    linear-gradient(180deg, rgba(14, 20, 27, 0.28) 0%, rgba(14, 20, 27, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
  min-height: inherit;
  padding: 80px 0 74px;
}

.hero-copy {
  width: min(100%, 690px);
  min-width: 0;
  max-width: 690px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: #ffbe4d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 7.35rem);
  font-weight: 950;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 920;
}

h3 {
  font-size: 1.17rem;
  font-weight: 880;
}

.hero-lede {
  max-width: min(100%, 660px);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  width: fit-content;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 42px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-aside {
  align-self: end;
  padding-bottom: 26px;
}

.dispatch-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.dispatch-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 900;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 6px rgba(57, 217, 138, 0.14);
}

.dispatch-route {
  display: grid;
  gap: 14px;
  padding: 22px 0;
}

.dispatch-route span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dispatch-route strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.25;
}

.dispatch-route svg {
  width: 20px;
  height: 20px;
  color: #ffbe4d;
}

.dispatch-features {
  display: grid;
  gap: 10px;
}

.dispatch-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  font-weight: 800;
}

.dispatch-features svg {
  width: 18px;
  height: 18px;
  color: #ffbe4d;
}

.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 22px;
  background: #ffffff;
  color: #35414b;
  font-weight: 760;
}

.trust-grid svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--teal);
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-muted {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow),
.coverage-copy > p,
.quote-copy > p {
  max-width: 710px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--teal);
  opacity: 0;
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--orange);
}

.service-card-featured {
  border-color: var(--night);
  background: var(--night);
  color: #ffffff;
  box-shadow: 0 20px 54px rgba(17, 24, 32, 0.2);
}

.service-card-featured::before {
  opacity: 1;
  background: var(--orange);
}

.service-card-featured svg {
  color: #ffbe4d;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card p,
.industry-grid p,
.process-panel p,
.coverage-group p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.48fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.coverage-groups {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.coverage-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
}

.coverage-group:first-child {
  border-color: rgba(0, 122, 120, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.coverage-group h3 {
  font-size: 1.05rem;
}

.region-label {
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.coverage-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 122, 120, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #34404a;
  font-size: 0.92rem;
  font-weight: 800;
}

.process-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.process-header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.process-header .eyebrow {
  margin-bottom: 10px;
}

.process-header h3 {
  max-width: 12ch;
  font-size: 1.42rem;
}

.process-panel ol {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-panel li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.process-panel li:not(:last-child)::after {
  position: absolute;
  top: 52px;
  bottom: -18px;
  left: 22px;
  width: 1px;
  content: "";
  background: var(--line);
}

.process-panel li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.industry-grid article {
  min-height: 190px;
  padding: 28px;
  background: #ffffff;
}

.industry-grid article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--teal);
}

.industry-grid article + article {
  border-left: 1px solid var(--line);
}

.quote-section {
  padding: clamp(72px, 9vw, 118px) 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.86)),
    url("assets/hero-courier.png") center / cover;
  color: #ffffff;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.quote-copy h2 {
  color: #ffffff;
}

.quote-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-contact {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quote-contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: #ffffff;
  font-weight: 850;
}

.quote-contact svg {
  width: 20px;
  height: 20px;
  color: #ffbe4d;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #2c3741;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8dd;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 122, 120, 0.12);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-dark {
  background: var(--night);
  color: #ffffff;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.reviews-layout h2 {
  color: #ffffff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

figure {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
}

figcaption {
  margin-top: 18px;
  color: #ffbe4d;
  font-size: 0.9rem;
  font-weight: 850;
}

.site-footer {
  padding: 30px 0 88px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  gap: 18px;
  color: var(--ink);
  font-weight: 850;
}

.mobile-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 32px rgba(17, 24, 32, 0.12);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.mobile-contact a + a {
  color: #ffffff;
  background: var(--orange);
}

.mobile-contact svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 12px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: center right 18%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 20, 27, 0.95), rgba(14, 20, 27, 0.78)),
      linear-gradient(180deg, rgba(14, 20, 27, 0.28), rgba(14, 20, 27, 0.78));
  }

  .hero-inner {
    min-height: calc(100svh - 180px);
    padding: 70px 0 58px;
  }

  .trust-grid,
  .hero-inner,
  .service-grid,
  .split-layout,
  .industry-grid,
  .quote-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    align-self: auto;
    max-width: 430px;
    padding-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .industry-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img,
  .footer-brand img {
    width: 124px;
  }

  .hero-inner {
    min-height: calc(100svh - 174px);
    padding: 52px 0 42px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 17vw, 4.3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .hero-actions,
  .hero-metrics,
  .form-row,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 28px;
  }

  .trust-grid div,
  .service-card,
  .industry-grid article,
  .process-panel,
  figure {
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .quote-section {
    padding: 64px 0;
  }

  .mobile-contact {
    display: grid;
  }
}
