﻿:root {
  --white: #ffffff;
  --sky: #22a8e8;
  --blue: #0759a7;
  --deep: #06305f;
  --ink: #111827;
  --charcoal: #252a31;
  --silver: #f2f5f8;
  --line: #dbe5ee;
  --red: #d51f32;
  --shadow: 0 22px 55px rgba(8, 40, 74, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

.home-page main > section:not(.hero):not(.home-overview):not(.home-route-strip) {
  display: none;
}

.home-page .hero {
  min-height: calc(100vh - 76px);
  padding-top: 42px;
  padding-bottom: 54px;
}

.home-page h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  line-height: 1;
}

.home-page .hero-truck-card img {
  height: min(46vh, 430px);
}

.home-page .footer {
  display: grid;
}

.home-overview {
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: #f4f6f8;
}

.home-overview-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.home-overview-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.home-overview-heading p:not(.eyebrow) {
  color: #526171;
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.home-summary-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 40, 74, 0.06);
}

.home-summary-card span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #246bfe;
  border: 2px solid #246bfe;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-summary-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.home-summary-card p {
  color: #526171;
  line-height: 1.62;
}

.home-summary-card a {
  align-self: end;
  margin-top: 22px;
  color: #0759a7;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-summary-quote {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
}

.home-summary-quote span {
  color: #ffffff;
  border-color: #3b82f6;
  background: #3b82f6;
}

.home-summary-quote h3,
.home-summary-quote a {
  color: #ffffff;
}

.home-summary-quote p {
  color: #c8d0e0;
}

.home-route-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background: #0b1220;
}

.home-route-strip h2 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0;
}

.home-route-strip .eyebrow {
  color: #7bd4ff;
}

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 229, 238, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: clamp(150px, 15vw, 220px);
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.brand-text small {
  color: #6c7785;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-logo {
  width: min(340px, 68vw);
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 22px rgba(7, 89, 167, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314153;
  font-weight: 700;
  font-size: 0.93rem;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--deep);
  border-radius: var(--radius);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 28px;
  padding: 78px max(24px, calc((100vw - 1180px) / 2)) 88px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0 47%, rgba(255, 255, 255, 0.62) 64%, rgba(7, 89, 167, 0.1));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("assets/optimized/fairline-fleet-lineup.jpg") center right / cover no-repeat,
    url("assets/optimized/fairline-hero-truck.jpg") center right / cover no-repeat;
  opacity: 0.18;
}

.hero-banner {
  opacity: 1;
  background: #0b1220;
}

.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroFlash 12s infinite;
}

.hero-banner img:nth-child(2) {
  animation-delay: 4s;
}

.hero-banner img:nth-child(3) {
  animation-delay: 8s;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.42) 42%, rgba(3, 7, 18, 0.22)),
    linear-gradient(0deg, rgba(3, 7, 18, 0.42), transparent 55%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.16), transparent);
  z-index: -2;
}

.home-page .hero {
  color: var(--white);
  grid-template-columns: minmax(0, 1fr);
  background: #0b1220;
}

.home-page .hero-content {
  max-width: 780px;
  padding: 20px 0;
}

.home-page h1 {
  color: var(--white);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.34);
}

.home-page .hero-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.home-page .eyebrow {
  color: #7bd4ff;
}

.home-page .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.home-page .hero-truck-card {
  background: rgba(3, 7, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.road-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  overflow: hidden;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(37, 42, 49, 0.14));
}

.road-lines::before {
  content: "";
  position: absolute;
  inset: 48px -20%;
  background: repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.86) 72px 128px, transparent 128px 210px);
  transform: perspective(360px) rotateX(58deg);
  animation: roadMove 2.2s linear infinite;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 900;
  max-width: 820px;
}

.hero-subtitle {
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  color: #455667;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 34px;
}

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

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 16px 32px rgba(7, 89, 167, 0.28);
}

.btn-secondary {
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-truck-card {
  position: relative;
  align-self: end;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: truckFloat 5s ease-in-out infinite;
}

.hero-truck-card img {
  height: min(58vh, 540px);
  object-fit: cover;
}

.truck-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(34, 168, 232, 0.26), transparent 42%, rgba(213, 31, 50, 0.12));
  z-index: 1;
  pointer-events: none;
}

.section {
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
}

.split-section,
.why-section,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.section-silver {
  background: var(--silver);
}

.section-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--sky);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.section-copy h2,
.section-heading h2,
.why-copy h2,
.quote-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  margin-bottom: 24px;
}

.section-copy p,
.quote-copy p {
  color: #526171;
  line-height: 1.8;
  font-size: 1.03rem;
}

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

.about-grid div {
  padding: 20px;
  background: var(--silver);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-grid strong,
.about-grid span {
  display: block;
}

.about-grid span {
  color: #647384;
  margin-top: 8px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-grid,
.fleet-grid,
.service-card,
.fleet-card,
.counter-card {
  background: var(--white);
  border: 1px solid rgba(219, 229, 238, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(8, 40, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card {
  min-height: 222px;
  padding: 28px;
}

.service-card:hover,
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 168, 232, 0.55);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.service-card h3,
.fleet-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-card p,
.fleet-card p {
  color: #5c6877;
  line-height: 1.65;
}

.routes-section {
  background: linear-gradient(180deg, var(--white), #f7fbff);
}

.map-panel {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 34%, rgba(34, 168, 232, 0.2), transparent 12%),
    radial-gradient(circle at 78% 52%, rgba(7, 89, 167, 0.18), transparent 15%),
    linear-gradient(135deg, #f8fbfe, #edf4fa);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(7, 89, 167, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 89, 167, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 18;
  animation: routeMove 1.7s linear infinite;
  filter: drop-shadow(0 6px 10px rgba(7, 89, 167, 0.24));
}

.route-path-alt {
  stroke: var(--sky);
}

.pin {
  fill: var(--white);
  stroke: var(--red);
  stroke-width: 7;
  transform-origin: center;
  animation: pinPulse 1.8s ease-in-out infinite;
}

.country {
  position: absolute;
  padding: 10px 14px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 168, 232, 0.35);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(8, 40, 74, 0.1);
}

.country-zw { left: 50%; top: 27%; }
.country-za { left: 11%; bottom: 30%; }
.country-zm { left: 16%; top: 25%; }
.country-mz { right: 12%; top: 54%; }

.why-section {
  background: var(--deep);
  color: var(--white);
}

.why-section .eyebrow {
  color: #7bd4ff;
}

.why-copy h2 {
  color: var(--white);
}

.counter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.counter-card {
  padding: 22px;
  color: var(--ink);
}

.counter-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.counter-card span {
  display: block;
  color: #617083;
  margin-top: 8px;
  font-weight: 800;
}

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

.why-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.why-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-right: 12px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 168, 232, 0.14);
}

.fleet-card {
  overflow: hidden;
}

.fleet-card img {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.fleet-card h3,
.fleet-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.fleet-card h3 {
  margin-top: 16px;
}

.fleet-card p {
  padding-bottom: 18px;
}

.fleet-page .section-silver {
  padding-top: 58px;
  padding-bottom: 58px;
}

.fleet-page .fleet-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.fleet-page .fleet-card {
  min-height: 0;
}

.fleet-page .fleet-card h3,
.fleet-page .fleet-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.fleet-page .fleet-card h3 {
  font-size: 0.98rem;
}

.fleet-page .fleet-card p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.fleet-workshop-section {
  padding: 78px 0;
  background: #ffffff;
}

.fleet-workshop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.fleet-workshop-copy h2 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: #111827;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.08;
}

.fleet-workshop-copy p {
  max-width: 720px;
  color: #526171;
  font-size: 1rem;
  line-height: 1.72;
}

.workshop-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.workshop-points span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  color: #06305f;
  background: #f2f5f8;
  border: 1px solid #dbe5ee;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workshop-photo-slot {
  margin: 0;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  box-shadow: 0 18px 44px rgba(8, 40, 74, 0.1);
}

.workshop-photo-slot img {
  width: 100%;
  aspect-ratio: 1 / 1.34;
  object-fit: cover;
  border-bottom: 1px solid #dbe5ee;
}

.repair-photo-placeholder {
  aspect-ratio: 1 / 1.34;
  display: grid;
  place-items: center;
  color: #526171;
  background:
    linear-gradient(135deg, rgba(34, 168, 232, 0.12), rgba(213, 31, 50, 0.08)),
    repeating-linear-gradient(
      -45deg,
      #f2f5f8 0,
      #f2f5f8 12px,
      #e6edf4 12px,
      #e6edf4 24px
    );
  border-bottom: 1px solid #dbe5ee;
}

.repair-photo-placeholder span {
  padding: 10px 14px;
  color: #06305f;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #dbe5ee;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workshop-photo-slot figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.workshop-photo-slot strong {
  color: #111827;
  font-size: 1rem;
}

.workshop-photo-slot span {
  color: #526171;
  font-size: 0.88rem;
  line-height: 1.5;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.timeline-line {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--blue), var(--sky));
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

.timeline article {
  position: relative;
  min-height: 150px;
  padding: 0 14px 18px;
  text-align: center;
}

.timeline span {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 25px rgba(7, 89, 167, 0.23);
  font-size: 1.4rem;
  font-weight: 900;
}

.timeline strong {
  display: block;
  line-height: 1.35;
}

.quote-section {
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #3d4c5e;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(34, 168, 232, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b1220;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .brand-logo {
  width: min(260px, 76vw);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 12px;
}

.footer-brand .brand-text small {
  color: rgba(255, 255, 255, 0.78);
}

.footer h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 18px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes roadMove {
  to { transform: perspective(360px) rotateX(58deg) translateX(210px); }
}

@keyframes truckFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes routeMove {
  to { stroke-dashoffset: -72; }
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}

@keyframes shimmer {
  to { background-position: 200% 0; }
}

@keyframes heroFlash {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  7%,
  30% {
    opacity: 1;
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.about-page {
  color: #0d1117;
  background: #f4f6f8;
}

.about-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid #dde3ea;
}

.about-nav {
  width: min(1280px, calc(100% - 40px));
  min-height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.about-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(150px, 15vw, 220px);
}

.about-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-links {
  justify-content: center;
  gap: 40px;
  color: #111827;
  font-size: 0.68rem;
  font-weight: 500;
}

.about-links a {
  padding: 14px 0;
}

.about-links a::after {
  background: #246bfe;
}

.about-links .is-active {
  color: #246bfe;
}

.about-links .is-active::after {
  width: 100%;
}

.about-quote {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #ffffff;
  background: #030712;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.about-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.56)),
    url("assets/optimized/about-hero-side-tipper.jpg") center / cover no-repeat,
    url("assets/optimized/fairline-fleet-close.jpg") center / cover no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.48), rgba(3, 7, 18, 0.14) 58%);
}

.about-hero-inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 190px;
  color: #ffffff;
}

.about-badge,
.about-kicker {
  display: inline-flex;
  color: #ffffff;
  background: #246bfe;
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-hero h1 {
  max-width: 880px;
  margin: 22px 0 24px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.04;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.55);
}

.about-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 34px 0 34px;
}

.mission-copy {
  padding-left: 28px;
  border-left: 4px solid #246bfe;
}

.mission-copy h2,
.leadership-title h2,
.commitment-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 28px;
  font-weight: 500;
}

.mission-copy p {
  color: #4b5563;
  line-height: 1.76;
  margin-bottom: 18px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mission-stats article {
  min-height: 128px;
  padding: 28px;
  background: #e8edf3;
}

.mission-stats strong {
  display: block;
  color: #246bfe;
  font-size: 2.7rem;
  line-height: 1;
}

.mission-stats span {
  display: block;
  margin-top: 18px;
  color: #526071;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mission-image img {
  height: 320px;
  object-fit: cover;
}

.values-section {
  padding: 38px 0 30px;
  color: #ffffff;
  background: #111827;
}

.about-section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.about-section-heading h2 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 1.95rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 80px;
  height: 4px;
  background: #3b82f6;
  transform: translateX(-50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  min-height: 300px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 34px 36px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.value-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #60a5fa;
  background: #1e3a8a;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.value-card h3 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1rem;
}

.value-card p {
  max-width: 300px;
  color: #b8c2d1;
  line-height: 1.65;
}

.leadership-section {
  padding: 34px 0 34px;
}

.leadership-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.leadership-title::after {
  content: "";
  height: 1px;
  background: #d7dde5;
}

.leadership-title h2 {
  margin-bottom: 12px;
}

.leadership-title p {
  color: #4b5563;
  margin: 0;
}

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

.leader-card {
  min-height: 100%;
}

.leader-card-text {
  display: block;
}

.leader-card img {
  aspect-ratio: 1 / 1.34;
  object-fit: cover;
  filter: grayscale(1);
}

.leader-placeholder {
  aspect-ratio: 1 / 1.34;
  display: grid;
  place-items: center;
  background: #f3f6fa;
  border: 1px solid #d7dde5;
}

.leader-placeholder::before {
  content: "";
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 31%, #94a3b8 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 82%, #94a3b8 0 43%, transparent 44%);
  opacity: 0.72;
}

.leader-card h3 {
  margin: 18px 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.leader-card span {
  color: #246bfe;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.commitment-section {
  padding: 34px 0 38px;
  background: #e9edf2;
}

.commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.commitment-media {
  position: relative;
}

.commitment-media img {
  height: 480px;
  object-fit: cover;
  filter: brightness(0.78);
}

.commitment-media figcaption {
  position: absolute;
  right: 0;
  bottom: -28px;
  width: min(320px, 86%);
  padding: 28px 32px;
  color: #ffffff;
  background: #3b82f6;
}

.commitment-media strong,
.commitment-media span {
  display: block;
}

.commitment-media strong {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.commitment-media span {
  line-height: 1.5;
}

.about-kicker {
  margin-bottom: 28px;
  color: #246bfe;
  background: transparent;
  padding: 0;
}

.commitment-list {
  display: grid;
  gap: 24px;
}

.commitment-list article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
}

.commitment-list span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #246bfe;
  border: 2px solid #246bfe;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 900;
}

.commitment-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.commitment-list p {
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.about-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
  gap: 54px;
  padding: 42px 0 32px;
}

.footer-grid h2,
.footer-grid h3 {
  color: #ffffff;
}

.footer-logo-mark {
  width: min(230px, 82vw);
  height: auto;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 8px;
}

.footer-grid h2 {
  font-size: 1rem;
}

.footer-grid h3 {
  margin-bottom: 22px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.about-socials {
  display: flex;
  gap: 12px;
}

.about-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 32px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 0 0 72px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.76), rgba(3, 7, 18, 0.22)),
    url("assets/optimized/fairline-hero-truck.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 840px;
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.2)),
    url("assets/optimized/fairline-fleet-lineup.jpg") center / cover no-repeat;
}

.fleet-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.76), rgba(3, 7, 18, 0.24)),
    url("assets/optimized/fairline-fleet-lineup.jpg") center / cover no-repeat;
}

.quote-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.76), rgba(3, 7, 18, 0.24)),
    url("assets/optimized/fairline-fleet-close.jpg") center / cover no-repeat;
}

.tracking-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.18)),
    url("assets/optimized/hero-one-truck.jpg") center / cover no-repeat;
}

.routes-hero {
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.18)),
    url("assets/optimized/fairline-hero-truck.jpg") center / cover no-repeat;
}

.route-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.route-list article {
  min-height: 180px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 40, 74, 0.07);
}

.route-list h3 {
  margin-bottom: 12px;
}

.route-list p {
  color: #526171;
  line-height: 1.65;
}

.tracking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  background: #f4f6f8;
}

.tracking-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 40, 74, 0.07);
}

.tracking-hint {
  margin: 0;
  color: #526171;
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.tracking-status article {
  min-height: 170px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tracking-status span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: #246bfe;
  border: 2px solid #246bfe;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.tracking-status strong {
  display: block;
  margin-bottom: 8px;
}

.tracking-status p {
  color: #526171;
  line-height: 1.6;
  margin: 0;
}

.tracking-status article.is-complete,
.tracking-status article.is-current {
  border-color: #246bfe;
  box-shadow: 0 16px 34px rgba(36, 107, 254, 0.13);
}

.tracking-status article.is-current {
  transform: translateY(-3px);
}

.tracking-status article.is-complete span,
.tracking-status article.is-current span {
  color: #ffffff;
  background: #246bfe;
}

.tracking-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 40, 74, 0.07);
}

.tracking-result[hidden] {
  display: none;
}

.tracking-result-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #246bfe;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tracking-result h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.tracking-result p {
  margin: 0;
  color: #526171;
  line-height: 1.65;
}

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

.tracking-result dl div {
  padding: 16px;
  background: #f4f6f8;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
}

.tracking-result dt {
  margin-bottom: 6px;
  color: #526171;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tracking-result dd {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.45;
}

.simple-footer {
  padding-top: 30px;
}

.services-page {
  background: #f3f5f8;
}

.services-showcase-hero {
  min-height: 610px;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.68), rgba(3, 7, 18, 0.22) 62%),
    url("assets/optimized/fairline-fleet-close.jpg") center / cover no-repeat,
    url("assets/optimized/fairline-fleet-close.jpg") center / cover no-repeat;
}

.services-showcase-hero h1 {
  max-width: 720px;
  margin: 22px 0 26px;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.08;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.services-showcase-hero h1 strong {
  display: block;
  color: #3b82f6;
  font-weight: 900;
}

.services-showcase-hero p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.75;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 94px 0 88px;
}

.service-feature {
  min-height: 320px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #dce4ee;
}

.service-feature h2 {
  margin: 22px 0 18px;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}

.service-feature p {
  color: #526171;
  line-height: 1.7;
}

.service-feature ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-feature li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #263241;
  font-size: 0.84rem;
}

.service-feature li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid #2563eb;
  border-radius: 50%;
}

.service-feature a {
  display: inline-flex;
  margin-top: 36px;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-line-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0f2c58;
  border: 2px solid #0f2c58;
  font-size: 0.62rem;
  font-weight: 900;
}

.service-feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  padding: 0;
  overflow: hidden;
}

.service-feature-copy {
  padding: 34px;
}

.service-feature-wide img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.service-feature-dark {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
}

.service-feature-dark .service-line-icon {
  color: #60a5fa;
  border-color: #60a5fa;
}

.service-feature-dark h2 {
  color: #ffffff;
}

.service-feature-dark p {
  color: #b9c3d3;
}

.rating-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 92px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rating-bar::after {
  content: "";
  grid-column: 1 / -1;
  height: 4px;
  background: #3b82f6;
}

.rating-bar span {
  color: #aab6c9;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-bar strong {
  color: #3b82f6;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics span {
  padding: 14px;
  color: #526171;
  background: #f0f3f7;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.mini-metrics strong {
  display: block;
  color: #111827;
  font-size: 1rem;
}

.service-track-card {
  display: grid;
  align-content: center;
  color: #ffffff;
  background: #3b82f6;
  border-color: #3b82f6;
}

.service-track-card h2,
.service-track-card p {
  color: #ffffff;
}

.compact-tracking {
  grid-template-columns: 1fr auto;
  gap: 0;
  padding: 0;
  margin-top: 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.compact-tracking label {
  gap: 0;
}

.compact-tracking label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.compact-tracking input {
  min-height: 50px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.compact-tracking input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.compact-tracking button {
  width: 54px;
  border: 0;
  color: #123b78;
  background: #ffffff;
  font-weight: 900;
}

.services-compliance {
  padding: 86px 0;
  background: #e6eaef;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 76px;
  align-items: center;
}

.compliance-copy h2,
.services-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
}

.compliance-copy article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  margin-top: 34px;
}

.compliance-copy article span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #1e3a8a;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.compliance-copy h3 {
  margin-bottom: 8px;
}

.compliance-copy p {
  color: #526171;
  line-height: 1.6;
  margin: 0;
}

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

.compliance-stats article {
  min-height: 144px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px;
  text-align: center;
  background: #ffffff;
}

.compliance-stats strong {
  color: #3b82f6;
  font-size: 3rem;
  line-height: 1;
}

.compliance-stats span {
  margin-top: 12px;
  color: #182233;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services-extra {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 84px 0 22px;
}

.services-extra article {
  min-height: 220px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #dce4ee;
}

.services-extra h2 {
  margin: 22px 0 12px;
  font-size: 1.08rem;
}

.services-extra p {
  color: #526171;
  line-height: 1.6;
}

.services-cta {
  padding: 86px 0 100px;
  text-align: center;
  background: #f5f7fa;
}

.services-cta p {
  max-width: 620px;
  margin: 18px auto 32px;
  color: #526171;
  line-height: 1.65;
}

.services-cta .btn {
  min-width: 190px;
  min-height: 48px;
  margin: 0 6px;
  border-radius: 2px;
  font-size: 0.82rem;
}

.services-cta .btn-secondary {
  border-color: #9ca3af;
  box-shadow: none;
}

.services-footer .footer-grid {
  padding-top: 38px;
}

.routes-page {
  background: #f7f9fb;
}

.routes-network-hero {
  min-height: 614px;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(19, 27, 46, 0.82), rgba(19, 27, 46, 0.34)),
    url("assets/optimized/fairline-fleet-lineup.jpg") center / cover no-repeat,
    url("assets/optimized/fairline-hero-truck.jpg") center / cover no-repeat;
}

.routes-network-hero h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.routes-network-hero p {
  max-width: 720px;
  color: #c8d0e0;
  font-size: 1.18rem;
  line-height: 1.7;
}

.route-stat-strip {
  padding: 42px 0;
  background: #eef2f6;
  border-bottom: 1px solid rgba(198, 198, 205, 0.55);
}

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

.route-stats-grid article {
  min-height: 132px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(198, 198, 205, 0.65);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(25, 28, 30, 0.04);
}

.route-stats-grid span {
  display: block;
  margin-bottom: 7px;
  color: #7c839b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-stats-grid strong {
  display: block;
  color: #000000;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.route-stats-grid p {
  margin: 8px 0 0;
  color: #76777d;
}

.routes-network-section {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.88fr);
  gap: 28px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: start;
}

.regional-map-card {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  aspect-ratio: auto;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid #c6c6cd;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(25, 28, 30, 0.06);
}

.map-card-heading {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  padding: 22px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(198, 198, 205, 0.65);
}

.map-card-heading h2 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.map-card-heading p {
  color: #76777d;
}

.regional-map {
  width: 100%;
  height: 100%;
  min-height: 540px;
  transform: scale(1.06);
}

.regional-map-image {
  position: relative;
  min-height: 560px;
  aspect-ratio: 2392 / 1792;
  background: #101827;
}

.regional-map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.regional-map-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 63% 42%, rgba(68, 124, 255, 0.26), transparent 22%),
    linear-gradient(90deg, rgba(8, 12, 24, 0.16), rgba(8, 12, 24, 0.04));
  pointer-events: none;
}

.regional-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.map-border {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 2;
}

.regional-route {
  fill: none;
  stroke: #8ed0ff;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: regionalRouteDash 5s linear forwards infinite;
  filter: drop-shadow(0 0 10px rgba(142, 208, 255, 0.82));
}

.regional-route-delay-one {
  animation-delay: 0.8s;
}

.regional-route-delay-two {
  animation-delay: 1.6s;
}

.regional-route-dashed {
  stroke: #ffffff;
  stroke-width: 8;
  stroke-dasharray: 32 28;
  animation-duration: 3.6s;
}

.city-node {
  cursor: pointer;
}

.city-node circle:not(.pulse-ring) {
  fill: #ffffff;
  stroke: #8ed0ff;
  stroke-width: 4;
}

.city-node text {
  fill: #000000;
  font-size: 13px;
  font-weight: 700;
  transition: fill 0.25s ease;
}

.city-node:hover text {
  fill: #447cff;
}

.border-node circle,
.border-node text {
  fill: #ba1a1a;
}

.pulse-ring {
  fill: #447cff;
  opacity: 0.24;
  transform-origin: center;
  animation: mapPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.route-legend {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 4;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(198, 198, 205, 0.7);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.route-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #191c1e;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #447cff;
  border-radius: 50%;
}

.route-legend span:last-child i {
  background: #ba1a1a;
}

.route-details {
  display: grid;
  gap: 20px;
}

.border-expertise,
.route-tools {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #c6c6cd;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(25, 28, 30, 0.04);
}

.border-expertise h2,
.route-tools h2,
.corridor-heading h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 22px;
}

.border-list {
  display: grid;
  gap: 16px;
}

.border-list section {
  padding: 16px;
  background: #f7f9fb;
  border-left: 4px solid #76777d;
  border-radius: 4px;
}

.border-list section:first-child {
  border-left-color: #447cff;
}

.border-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.border-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.border-list span {
  flex: 0 0 auto;
  padding: 3px 8px;
  color: #ffffff;
  background: #447cff;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.border-list p {
  color: #45464d;
  line-height: 1.55;
  margin: 0;
}

.route-tools {
  color: #ffffff;
  background: #131b2e;
  border-color: #131b2e;
}

.route-tools h2 {
  color: #ffffff;
}

.route-tools div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-tools span {
  min-height: 76px;
  display: flex;
  align-items: end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
}

.corridor-section {
  padding: 70px 0 78px;
  background: #eceef0;
}

.corridor-heading {
  margin-bottom: 34px;
}

.corridor-heading p {
  max-width: 620px;
  color: #45464d;
  line-height: 1.65;
}

.corridor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.corridor-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #c6c6cd;
  border-radius: 4px;
}

.corridor-card figure {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.corridor-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.corridor-card:hover img {
  transform: scale(1.06);
}

.corridor-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 58%);
}

.corridor-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
}

.corridor-card figcaption span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.corridor-card figcaption strong {
  display: block;
  margin-top: 4px;
  font-size: 1.22rem;
}

.corridor-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.corridor-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #eceef0;
}

.corridor-card li:last-child {
  border-bottom: 0;
}

.corridor-card li span {
  color: #76777d;
}

.corridor-card li strong {
  color: #447cff;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.routes-cta {
  padding: 88px 0;
  color: #ffffff;
  text-align: center;
  background: #000000;
}

.routes-cta h2 {
  max-width: 850px;
  margin: 0 auto 22px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1.05;
}

.routes-cta p {
  max-width: 690px;
  margin: 0 auto 34px;
  color: #bec6e0;
  font-size: 1.12rem;
  line-height: 1.7;
}

.routes-cta .btn {
  min-width: 220px;
  margin: 6px;
  border-radius: 4px;
}

.routes-cta .btn-secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid #76777d;
}

.routes-footer {
  background: #131b2e;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 16px;
}

.newsletter-form input {
  min-height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  width: 52px;
  color: #ffffff;
  background: #447cff;
  border: 0;
  border-radius: 0 4px 4px 0;
  font-weight: 900;
}

@keyframes regionalRouteDash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.55);
  }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .why-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-line {
    display: none;
  }

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

  .about-nav {
    grid-template-columns: 1fr auto;
  }

  .about-nav .nav-toggle {
    display: block;
    justify-self: end;
  }

  .about-links {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #dde3ea;
    box-shadow: 0 22px 55px rgba(8, 40, 74, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .about-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-links a {
    padding: 14px;
  }

  .about-quote {
    display: none;
  }

  .about-mission,
  .fleet-workshop-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .leaders-grid,
  .footer-grid,
  .route-list,
  .tracking-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-section {
    grid-template-columns: 1fr;
  }

  .tracking-result {
    grid-template-columns: 1fr;
  }

  .services-showcase-grid,
  .services-extra,
  .compliance-grid,
  .routes-network-section,
  .corridor-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 132px;
  }

  .hero-logo {
    width: min(230px, 70vw);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  .hero-truck-card img {
    height: 360px;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .services-grid,
  .fleet-grid,
  .counter-row,
  .why-list,
  .about-grid,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 430px;
  }

  .country {
    font-size: 0.82rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .timeline article {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 0;
  }

  .timeline span {
    width: 58px;
    height: 58px;
    margin: 0;
    border-width: 5px;
    flex: 0 0 auto;
  }

  .about-nav {
    width: min(100% - 28px, 1280px);
  }

  .about-hero {
    min-height: 520px;
  }

  .about-hero-inner {
    padding-bottom: 86px;
  }

  .about-mission,
  .leadership-section,
  .commitment-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mission-copy {
    padding-left: 18px;
  }

  .mission-stats,
  .values-grid,
  .leaders-grid,
  .footer-grid,
  .route-list,
  .tracking-status,
  .tracking-result dl {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
    padding-bottom: 54px;
  }

  .services-showcase-hero {
    min-height: 520px;
  }

  .services-showcase-grid {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .service-feature-wide {
    grid-template-columns: 1fr;
  }

  .service-feature-wide img {
    min-height: 240px;
  }

  .compliance-stats,
  .mini-metrics,
  .route-tools div {
    grid-template-columns: 1fr;
  }

  .routes-network-hero {
    min-height: 520px;
  }

  .regional-map-card {
    min-height: auto;
  }

  .regional-map-image {
    min-height: 420px;
  }

  .services-cta .btn {
    width: 100%;
    margin: 6px 0;
  }

  .route-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .route-stats-grid article {
    min-height: 92px;
    padding: 12px;
  }

  .route-stats-grid strong {
    font-size: 1.32rem;
  }

  .route-stats-grid span {
    margin-bottom: 5px;
    font-size: 0.56rem;
  }

  .route-stats-grid p {
    margin-top: 6px;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .route-stat-strip {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .routes-network-section {
    width: min(100% - 28px, 1200px);
    padding-top: 34px;
    padding-bottom: 42px;
    gap: 16px;
  }

  .map-card-heading {
    padding: 16px;
  }

  .map-card-heading h2 {
    font-size: 1.05rem;
  }

  .map-card-heading p {
    font-size: 0.86rem;
  }

  .regional-map-image {
    min-height: 340px;
  }

  .route-legend {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
    justify-content: space-between;
  }

  .route-legend span {
    font-size: 0.58rem;
  }

  .border-expertise,
  .route-tools {
    padding: 18px;
  }

  .border-expertise h2,
  .route-tools h2,
  .corridor-heading h2 {
    font-size: 1.35rem;
  }

  .border-list {
    gap: 10px;
  }

  .border-list section {
    padding: 14px;
  }

  .route-tools div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .route-tools span {
    min-height: 64px;
    padding: 12px;
    font-size: 0.72rem;
  }

  .corridor-section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .routes-cta {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .routes-cta h2 {
    font-size: 2rem;
  }

  .routes-cta p {
    font-size: 0.96rem;
  }

  .routes-cta .btn {
    width: 100%;
    margin: 6px 0;
  }

  .mission-image img,
  .commitment-media img {
    height: 300px;
  }

  .value-card {
    min-height: 240px;
  }

  .leadership-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .commitment-media figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about-hero,
  .services-showcase-hero,
  .routes-network-hero {
    min-height: 390px;
  }

  .page-hero {
    min-height: 320px;
    padding-bottom: 38px;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-truck-card img {
    height: 280px;
  }

  .about-hero-inner {
    padding-bottom: 52px;
  }

  .fleet-page .section-silver {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .fleet-page .fleet-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fleet-page .fleet-card {
    width: auto;
    min-width: 0;
  }

  .fleet-page .fleet-card img {
    aspect-ratio: 1 / 0.72;
  }

  .fleet-page .fleet-card h3,
  .fleet-page .fleet-card p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fleet-page .fleet-card h3 {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .fleet-page .fleet-card p {
    padding-bottom: 12px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .fleet-workshop-section {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .fleet-workshop-grid {
    gap: 22px;
  }

  .fleet-workshop-copy h2 {
    font-size: 1.75rem;
  }

  .fleet-workshop-copy p {
    font-size: 0.92rem;
  }

  .workshop-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .workshop-points span {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .fleet-page .commitment-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .fleet-page .commitment-grid {
    gap: 22px;
  }

  .services-showcase-grid {
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 14px;
  }

  .service-feature {
    min-height: 0;
    padding: 20px;
  }

  .service-feature-wide img {
    min-height: 180px;
  }

  .services-extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 36px;
  }

  .services-extra article {
    min-height: 160px;
    padding: 14px;
  }

  .services-extra h2 {
    margin-top: 12px;
    font-size: 0.88rem;
  }

  .services-extra p {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .services-compliance,
  .services-cta {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .compliance-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .compliance-stats article {
    min-height: 96px;
    padding: 14px;
  }

  .compliance-stats strong {
    font-size: 1.75rem;
  }

  .regional-map-image {
    min-height: 270px;
  }

  .routes-network-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .footer-grid {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .footer-logo-mark {
    width: min(180px, 70vw);
  }

  .footer-bottom {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .home-overview {
    padding: 42px 16px;
  }

  .home-overview-heading {
    margin-bottom: 22px;
  }

  .home-overview-heading h2 {
    font-size: 1.85rem;
  }

  .home-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-summary-card {
    min-height: 210px;
    padding: 16px;
  }

  .home-summary-card span {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    font-size: 0.62rem;
  }

  .home-summary-card h3 {
    font-size: 0.98rem;
  }

  .home-summary-card p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .home-summary-card a {
    margin-top: 14px;
    font-size: 0.66rem;
  }

  .home-route-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 16px;
  }

  .home-route-strip h2 {
    font-size: 1.55rem;
  }

  .home-page .footer {
    padding-top: 30px;
    padding-bottom: 18px;
    gap: 18px;
  }

  .home-page .footer > div:nth-of-type(2),
  .home-page .footer > div:nth-of-type(3) {
    display: none;
  }
}

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

  .hero-banner img:first-child {
    opacity: 1;
  }
}

