@font-face {
  font-family: "MontserratDomo";
  src: url("/assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratDomo";
  src: url("/assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WorkSansDomo";
  src: url("/assets/fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WorkSansDomo";
  src: url("/assets/fonts/WorkSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --alucard: #000250;
  --royal: #0464de;
  --lime: #ade37b;
  --frost: #effff4;
  --ice: #d3e3f4;
  --black: #000000;
  --white: #ffffff;
  --ink: #05081f;
  --muted: #53627c;
  --line: rgba(0, 2, 80, 0.13);
  --shadow: 0 26px 80px rgba(0, 2, 80, 0.18);
  --display: "MontserratDomo", "Montserrat", Arial, sans-serif;
  --body: "WorkSansDomo", "Work Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--frost);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(239, 255, 244, 0.9);
  border-bottom: 1px solid rgba(0, 2, 80, 0.08);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 12px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  max-width: 100vw;
  width: 100%;
  z-index: 20;
  backdrop-filter: blur(18px);
}

@supports (width: 100dvw) {
  .site-header {
    max-width: 100dvw;
    width: 100dvw;
  }
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(0, 2, 80, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  text-decoration: none;
  width: 170px;
}

.brand img {
  height: auto;
  object-fit: contain;
  width: 166px;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 30px);
  justify-content: center;
}

.nav a,
.header-cta,
.hero-actions a,
.audience-panel a,
.contact-actions a {
  text-decoration: none;
}

.nav a {
  color: var(--alucard);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.nav a[aria-current="page"] {
  color: var(--royal);
  font-weight: 700;
}

.nav a[aria-current="page"]::after {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  width: 28px;
}

.menu-toggle {
  align-items: center;
  background: var(--alucard);
  border: 1px solid rgba(0, 2, 80, 0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 20px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 46px;
  padding: 0 16px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.button-primary {
  background: var(--lime);
  border: 1px solid var(--lime);
  color: var(--alucard);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  background: var(--alucard);
  color: var(--white);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 2, 80, 0.96) 0%, rgba(0, 2, 80, 0.84) 40%, rgba(0, 2, 80, 0.3) 72%, rgba(0, 2, 80, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 100, 222, 0.28), rgba(0, 2, 80, 0.18));
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero::after {
  background-image:
    linear-gradient(rgba(173, 227, 123, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 227, 123, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.35;
  position: absolute;
  z-index: 3;
}

.hero-media {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 130px clamp(22px, 6vw, 86px) 70px;
  position: relative;
  width: min(880px, 100%);
  z-index: 4;
}

.eyebrow {
  color: var(--royal);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow,
.band-blue .eyebrow {
  color: var(--lime);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  line-height: 0.86;
  margin-bottom: 28px;
  width: min(780px, 100%);
  overflow-wrap: break-word;
  text-transform: uppercase;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  color: var(--alucard);
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

h3 {
  color: var(--alucard);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.7vw, 1.38rem);
  line-height: 1.55;
  max-width: 620px;
}

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

.proof-row {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  padding-top: 26px;
}

.proof-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.3;
}

.proof-row strong {
  color: var(--white);
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(4, 100, 222, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(0, 2, 80, 0.98), rgba(0, 2, 80, 0.88)),
    url("/assets/photos/domo-workshop-hero.png") center / cover;
  color: var(--white);
  min-height: 68vh;
  overflow: hidden;
  padding-top: clamp(140px, 15vw, 190px);
  position: relative;
}

.page-hero::after {
  background-image:
    linear-gradient(rgba(173, 227, 123, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 227, 123, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.page-hero-fleet {
  background:
    linear-gradient(90deg, rgba(0, 2, 80, 0.98), rgba(0, 2, 80, 0.78)),
    url("/assets/mockups/domo-sign.png") 76% center / cover;
}

.page-hero-fleet .page-hero-copy {
  max-width: 980px;
}

.page-hero-fleet h1 {
  font-size: clamp(3rem, 6.4vw, 6.4rem);
}

.page-hero-fleet h1 span {
  white-space: nowrap;
}

.page-hero-capacity {
  background:
    radial-gradient(circle at 70% 25%, rgba(173, 227, 123, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(0, 2, 80, 0.98), rgba(4, 100, 222, 0.78)),
    url("/assets/mockups/domo-cards.png") center / cover;
}

.page-hero-copy {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--lime);
}

.page-hero h1 {
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  overflow-wrap: normal;
}

.page-hero h1 span {
  white-space: normal;
}

.page-hero.page-hero-fleet h1 span {
  white-space: nowrap;
}

section {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 86px);
  scroll-margin-top: 78px;
}

.band-light {
  background:
    linear-gradient(135deg, rgba(211, 227, 244, 0.6), rgba(239, 255, 244, 1) 48%, rgba(173, 227, 123, 0.14)),
    var(--frost);
}

.section-head {
  margin: 0 auto 48px;
  max-width: 980px;
  text-align: center;
}

.section-head.split {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: 1200px;
  text-align: left;
}

.section-head.split p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.audience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.audience-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}

.audience-panel::before {
  background: var(--royal);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}

.private-panel::before {
  background: var(--lime);
}

.panel-number {
  color: rgba(0, 2, 80, 0.16);
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 48px;
}

.audience-panel p,
.service-card p,
.story-copy p,
.fleet-copy p,
.process article p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.audience-panel a {
  color: var(--royal);
  display: inline-flex;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 20px;
  text-transform: uppercase;
}

.route-section {
  background: var(--white);
}

.route-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.route-card {
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--alucard);
  min-height: 188px;
  padding: 24px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.route-card:hover {
  background: var(--alucard);
  border-color: var(--alucard);
  color: var(--white);
  transform: translateY(-4px);
}

.route-card span {
  color: var(--royal);
  display: block;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.route-card:hover span {
  color: var(--lime);
}

.route-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1.08;
}

.route-card-accent {
  background: var(--lime);
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.service-card,
.process article,
.capacity-item {
  border-radius: 8px;
}

.service-card {
  background: linear-gradient(180deg, var(--frost), var(--white));
  border: 1px solid var(--line);
  min-height: 430px;
  overflow: hidden;
  padding: 0 28px 28px;
}

.service-image {
  aspect-ratio: 16 / 10;
  margin: 0 -28px 26px;
  overflow: hidden;
}

.service-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-card span,
.process article span,
.contact-panel span {
  color: var(--royal);
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.promo-strip {
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(4, 100, 222, 0.36), transparent 38%),
    linear-gradient(135deg, var(--alucard), #020661 58%, #001054);
  color: var(--white);
  display: grid;
  gap: 52px;
  grid-template-columns: 0.82fr 1.18fr;
}

.promo-copy {
  max-width: 610px;
}

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

.promo-copy .eyebrow {
  color: var(--lime);
}

.promo-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.promo-visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(173, 227, 123, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  padding: clamp(14px, 2vw, 24px);
}

.promo-visual img {
  border-radius: 6px;
  width: 100%;
}

.fleet {
  align-items: center;
  background: var(--ice);
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.fleet-copy {
  max-width: 620px;
}

.fleet-copy h2 {
  font-size: clamp(1.85rem, 4.1vw, 3.85rem);
}

.check-list {
  color: var(--alucard);
  display: grid;
  gap: 12px;
  line-height: 1.5;
  list-style: none;
  margin: 28px 0 30px;
  padding: 0;
}

.check-list li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 16px 1fr;
}

.check-list li::before {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 9px;
  margin-top: 8px;
  width: 9px;
}

.fleet-visual {
  min-height: 560px;
  position: relative;
}

.fleet-visual img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fleet-metric {
  background: var(--alucard);
  border: 1px solid rgba(173, 227, 123, 0.35);
  border-radius: 8px;
  bottom: 34px;
  color: var(--white);
  left: -32px;
  padding: 28px;
  position: absolute;
  width: min(280px, 70%);
}

.fleet-metric strong {
  display: block;
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.fleet-metric span {
  color: var(--lime);
  display: block;
  margin-top: 10px;
}

.band-blue {
  background:
    linear-gradient(135deg, rgba(4, 100, 222, 0.28), rgba(0, 2, 80, 0.94)),
    var(--alucard);
  color: var(--white);
}

.band-blue h2 {
  color: var(--white);
}

.capacity-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.capacity-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 230px;
  padding: 28px;
}

.capacity-item strong {
  color: var(--lime);
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.94;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.capacity-item span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.story {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: 58px;
  grid-template-columns: 1.05fr 0.95fr;
}

.story-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.clients {
  background:
    radial-gradient(circle at 18% 12%, rgba(4, 100, 222, 0.34), transparent 34%),
    linear-gradient(140deg, #000250 0%, #02035d 58%, #00103d 100%);
  color: var(--white);
  overflow: hidden;
}

.clients-page {
  min-height: calc(100vh - 72px);
  padding-top: clamp(150px, 15vw, 200px);
}

.clients .eyebrow {
  color: var(--lime);
}

.clients h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
}

.clients .section-head.split p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.client-marquee {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.client-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 112px;
  padding: 20px;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.client-logo::after {
  background: var(--lime);
  border-radius: 999px;
  bottom: 12px;
  content: "";
  height: 3px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 44px;
}

.client-logo:hover,
.client-logo:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(173, 227, 123, 0.52);
  transform: translateY(-4px);
}

.client-logo:hover::after,
.client-logo:focus-within::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.client-logo img {
  filter: grayscale(1) brightness(0) invert(1);
  max-height: 58px;
  max-width: 158px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.client-logo--cv {
  background: var(--alucard);
  border-color: rgba(173, 227, 123, 0.24);
  min-height: 128px;
}

.client-logo--wide {
  grid-column: span 2;
}

.client-logo--cv img {
  filter: none;
  max-height: 88px;
  max-width: 92%;
  opacity: 1;
}

.client-logo--cv:not(.client-logo--wide) img {
  max-height: 92px;
  max-width: 132px;
}

.client-logo:hover img,
.client-logo:focus-within img {
  opacity: 1;
  transform: scale(1.04);
}

.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 42px auto 0;
  max-width: 1220px;
}

.clients .button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.process {
  background: var(--alucard);
}

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

.process-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.process article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 210px;
  padding: 24px;
}

.process article h3 {
  color: var(--white);
}

.process article p {
  color: rgba(255, 255, 255, 0.7);
}

.process article span {
  color: var(--lime);
}

.contact {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(211, 227, 244, 0.8), rgba(239, 255, 244, 1)),
    var(--frost);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.72fr;
}

.contact-page {
  min-height: calc(100vh - 72px);
  padding-top: clamp(140px, 14vw, 190px);
}

.contact-copy,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
}

.contact-copy img {
  height: 86px;
  margin-bottom: 34px;
  object-fit: contain;
  object-position: left center;
  width: 210px;
}

.contact-copy h1 {
  color: var(--alucard);
  font-size: clamp(2.2rem, 4.35vw, 4.65rem);
  line-height: 0.94;
}

.contact .button-secondary {
  border-color: var(--alucard);
  color: var(--alucard);
}

.contact-panel {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-panel strong {
  color: var(--alucard);
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 2.12rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.contact-copy .eyebrow,
.contact-panel span {
  font-size: 0.66rem;
}

.contact-copy p {
  font-size: 0.98rem;
  line-height: 1.58;
}

.footer {
  align-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-family: var(--display);
  font-size: 0.8rem;
  gap: 16px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 24px clamp(22px, 6vw, 86px);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    gap: 10px;
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
  }

  .brand {
    order: 1;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    justify-self: end;
    order: 2;
  }

  .nav {
    background: rgba(239, 255, 244, 0.98);
    border: 1px solid rgba(0, 2, 80, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(0, 2, 80, 0.18);
    display: grid;
    gap: 0;
    left: clamp(14px, 4vw, 30px);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: clamp(14px, 4vw, 30px);
    order: 4;
    top: calc(100% + 8px);
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav a {
    border-bottom: 1px solid rgba(0, 2, 80, 0.08);
    display: block;
    font-weight: 700;
    padding: 16px 18px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a[aria-current="page"]::after {
    bottom: 8px;
    left: 18px;
    top: auto;
    transform: none;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 2, 80, 0.92) 0%, rgba(0, 2, 80, 0.78) 58%, rgba(0, 2, 80, 0.38) 100%),
      linear-gradient(180deg, rgba(4, 100, 222, 0.22), rgba(0, 2, 80, 0.18));
  }

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

  .proof-row,
  .audience-grid,
  .section-head.split,
  .promo-strip,
  .fleet,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .route-grid,
  .capacity-grid,
  .process-grid,
  .client-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-metric {
    left: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    height: 52px;
    width: 150px;
  }

  .brand img {
    width: 146px;
  }

  .header-cta {
    font-size: 0.72rem;
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: clamp(2.18rem, 9.2vw, 2.55rem);
    line-height: 0.96;
    max-width: 350px;
  }

  section {
    padding: 64px 18px;
  }

  .hero-content {
    padding: 110px 18px 48px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-row,
  .service-grid,
  .route-grid,
  .capacity-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 620px;
    padding-top: 128px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .page-hero-fleet h1 {
    font-size: clamp(2.02rem, 8.55vw, 2.65rem);
  }

  .page-hero-fleet .page-hero-copy {
    max-width: 100%;
  }

  .route-card {
    min-height: 144px;
    padding: 22px;
  }

  .route-card span {
    margin-bottom: 30px;
  }

  .client-marquee {
    display: flex;
    gap: 12px;
    margin: 0 -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .client-marquee::-webkit-scrollbar {
    display: none;
  }

  .client-logo {
    flex: 0 0 72%;
    min-height: 112px;
    scroll-snap-align: center;
  }

  .audience-panel,
  .capacity-item,
  .process article,
  .contact-copy,
  .contact-panel {
    padding: 24px;
    width: 100%;
  }

  .service-card {
    padding: 0 24px 24px;
  }

  .service-image {
    margin: 0 -24px 22px;
  }

  .fleet-visual {
    min-height: 360px;
  }

  .process-grid {
    gap: 8px;
  }

  .process article {
    min-height: 0;
    padding: 22px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    width: 118px;
  }

  .brand img {
    width: 116px;
  }

  .menu-toggle {
    height: 40px;
    width: 40px;
  }

  .header-cta {
    font-size: 0.68rem;
    min-height: 38px;
    padding: 0 10px;
  }
}
