/* ==========================================================================
   BLACKLINE Aviation — Design System
   Premium, minimal, monochrome. Black / White / Charcoal / Neutral only.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --charcoal: #17171a;
  --charcoal-2: #232326;
  --ink: #111113;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --stone: #ece9e3;
  --line: #e2dfd8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --text: #161617;
  --text-muted: #5c5c60;
  --text-invert: #ffffff;
  --text-invert-muted: rgba(255, 255, 255, 0.66);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 820px;
  --radius: 2px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--black); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.section--dark :focus-visible,
.hero :focus-visible,
.philosophy :focus-visible {
  outline-color: var(--white);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- Layout helpers ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 100px 0; }
.section--tight { padding: 72px 0; }
.section--muted { background: var(--off-white); }
.section--dark {
  background: var(--black);
  color: var(--text-invert);
}
.section--dark .section-head__lede,
.section--dark p { color: var(--text-invert-muted); }
.section--dark h2, .section--dark h3 { color: var(--text-invert); }

.align-center { text-align: center; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.text-muted-invert { color: var(--text-invert-muted); }

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
}

/* ---- Typography ---- */
h1 { font-family: var(--font-serif); font-weight: 600; }
h2 { font-family: var(--font-serif); font-weight: 600; }
h3 { font-family: var(--font-sans); font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.section--dark .eyebrow,
.hero .eyebrow,
.philosophy .eyebrow,
.priority-band .eyebrow,
.request-confirm .eyebrow { color: rgba(255,255,255,0.55); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__title { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; }
.section-head__lede { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--text-muted); }

.fine-print { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.fine-print-inline { font-size: 13px; font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.section--dark .fine-print { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--lg { padding: 19px 38px; font-size: 13px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--primary:hover { background: #262628; border-color: #262628; }

.btn--invert { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--invert:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--ghost { background: transparent; color: var(--text-invert); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--ghost-invert { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-invert:hover { background: rgba(255,255,255,0.1); }

.btn__icon { display: inline-flex; width: 16px; height: 16px; }
.btn__icon svg { width: 100%; height: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.site-header__bar {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 46px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--black);
  transition: right .25s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--black); }

.site-header__actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-call { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.4px; }
.header-call__icon { width: 16px; height: 16px; display: inline-flex; }
.header-call__icon svg { width: 100%; height: 100%; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--black);
  flex-shrink: 0;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle__icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close { display: block; }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 28px 32px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 30px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__link.is-active { color: rgba(255,255,255,0.55); }
.mobile-nav__actions { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.mobile-nav__foot { margin-top: 32px; font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,0.4); text-align: center; }

@media (max-width: 960px) {
  .site-nav, .site-header__actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header__logo img { height: 38px; }
  :root { --header-h: 72px; }
}

/* Mobile floating call button */
.mobile-call-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 90;
}
.mobile-call-fab svg { width: 24px; height: 24px; }
@media (max-width: 960px) {
  .mobile-call-fab { display: flex; }
  body { padding-bottom: 0; }
}
.page-request-service .mobile-call-fab { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--text-invert);
  padding: 88px 0 96px;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top right, black, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  margin: 18px 0 22px;
  max-width: 15ch;
}
.hero__lede { font-size: 18px; line-height: 1.65; color: var(--text-invert-muted); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__trust {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__media { position: relative; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .hero { padding: 56px 0 64px; }
}

/* ==========================================================================
   Media panel (placeholder-ready photography slot)
   ========================================================================== */
.media-panel {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 4/5);
  overflow: hidden;
  border-radius: var(--radius);
}
.media-panel--photo img { width: 100%; height: 100%; object-fit: cover; }

/* Editorial studio placeholder: tonal gradient + soft sheen + an oversized,
   quiet brand mark bleeding off-frame. No illustration, no stock imagery —
   just considered emptiness, the way a house-of-fashion site fills a slot
   before real photography is dropped in. */
.media-panel--dark {
  background:
    radial-gradient(120% 90% at 12% -10%, rgba(255,255,255,0.09), transparent 55%),
    linear-gradient(160deg, #232326 0%, #131315 42%, #060606 100%);
}
.media-panel--light {
  background:
    radial-gradient(120% 90% at 12% -10%, rgba(255,255,255,0.9), transparent 55%),
    linear-gradient(160deg, var(--stone) 0%, var(--off-white) 100%);
}
.media-panel__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 38%, rgba(255,255,255,0.05) 50%, transparent 62%);
  pointer-events: none;
}
.media-panel--light .media-panel__sheen {
  background: linear-gradient(112deg, transparent 38%, rgba(0,0,0,0.03) 50%, transparent 62%);
}
.media-panel__mark {
  position: absolute;
  right: -12%;
  bottom: -14%;
  width: 66%;
  max-width: 380px;
  height: auto;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}
.media-panel--light .media-panel__mark { opacity: 0.07; }
.media-panel__corner {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.media-panel__corner--tl { top: 22px; left: 22px; border-top: 1px solid rgba(255,255,255,0.3); border-left: 1px solid rgba(255,255,255,0.3); }
.media-panel__corner--br { bottom: 22px; right: 22px; border-bottom: 1px solid rgba(255,255,255,0.3); border-right: 1px solid rgba(255,255,255,0.3); }
.media-panel--light .media-panel__corner--tl { border-color: rgba(0,0,0,0.22); }
.media-panel--light .media-panel__corner--br { border-color: rgba(0,0,0,0.22); }
.media-panel__tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.media-panel--light .media-panel__tag { color: rgba(0,0,0,0.6); }

/* ==========================================================================
   Service cards / feature cards
   ========================================================================== */
.service-grid { margin-top: 8px; }
.service-card {
  display: block;
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover { border-color: var(--black); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.service-card__title { font-size: 20px; margin-bottom: 12px; }
.service-card__desc { color: var(--text-muted); line-height: 1.6; font-size: 15px; margin-bottom: 20px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.service-card__link .btn__icon { width: 14px; height: 14px; }

.feature-grid { margin-top: 8px; }
.feature-card { text-align: left; }
.feature-card__icon {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; margin-bottom: 20px; color: var(--white);
}
.feature-card__icon svg { width: 18px; height: 18px; }
.feature-card__title { font-size: 17px; margin-bottom: 10px; }
.feature-card__body { color: var(--text-invert-muted); font-size: 14.5px; line-height: 1.6; }

/* light-section variant (About values reuse .section--dark, so no extra needed) */

/* ==========================================================================
   Tag cloud (aircraft types / fleet audiences)
   ========================================================================== */
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.tag-cloud li {
  border: 1px solid var(--line);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section--muted .tag-cloud li { border-color: rgba(0,0,0,0.15); background: var(--white); }

/* ==========================================================================
   Presentation columns (home) — text-only two-up comparison, no imagery
   ========================================================================== */
.presentation-cols { margin-top: 8px; }
.presentation-col { padding: 0 8px; }
.presentation-col__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.presentation-col h3 { font-size: 21px; margin-bottom: 12px; }
.presentation-col p { color: var(--text-muted); line-height: 1.7; font-size: 15.5px; }
.presentation-col:first-child {
  border-right: 1px solid var(--line);
  padding-right: 40px;
}
.presentation-col:last-child { padding-left: 40px; }
@media (max-width: 620px) {
  .presentation-col:first-child { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 32px; margin-bottom: 32px; }
  .presentation-col:last-child { padding: 0; }
}

/* ==========================================================================
   Pricing preview (home)
   ========================================================================== */
.price-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
.price-preview-card { background: var(--white); padding: 34px 24px; text-align: center; }
.price-preview-card h3 { font-size: 14px; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 14px; color: var(--text-muted); }
.price-preview-card__from { font-family: var(--font-serif); font-size: 30px; margin-bottom: 4px; }
.price-preview-card__from strong { font-weight: 700; }
.price-preview-card__label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
@media (max-width: 900px) { .price-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-preview-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Priority band
   ========================================================================== */
.priority-band__inner { max-width: 720px; }
.priority-band h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 18px; }
.priority-band p { color: var(--text-invert-muted); line-height: 1.7; margin-bottom: 14px; font-size: 16px; }
.priority-band .btn { margin-top: 8px; }

/* ==========================================================================
   Airport / area cards
   ========================================================================== */
.airport-grid { margin-top: 8px; }
.airport-card { border: 1px solid var(--line); padding: 34px 28px; text-align: center; }
.airport-card__code {
  display: inline-block; font-family: var(--font-serif); font-size: 14px; font-weight: 700; letter-spacing: 3px;
  color: var(--text-muted); margin-bottom: 14px;
}
.airport-card h3, .airport-card h2 { font-size: 19px; margin-bottom: 6px; }
.airport-card p { color: var(--text-muted); font-size: 14.5px; }
.airport-card--lg { text-align: left; padding: 40px 32px; }
.airport-card--lg .airport-card__icon { display: inline-flex; width: 30px; height: 30px; margin-bottom: 16px; color: var(--text); }
.airport-card--lg .airport-card__icon svg { width: 100%; height: 100%; }
.airport-card--lg h2 { font-size: 22px; margin-bottom: 4px; }
.airport-card__city { font-weight: 600; color: var(--text); margin-bottom: 14px !important; }
.airport-card--lg p:last-child { color: var(--text-muted); line-height: 1.6; }

.area-card {
  margin-top: 32px;
  border: 1px solid var(--line);
  padding: 40px 32px;
}
.area-card .airport-card__icon { display: inline-flex; width: 30px; height: 30px; margin-bottom: 16px; }
.area-card .airport-card__icon svg { width: 100%; height: 100%; }
.area-card h2 { font-size: 22px; margin-bottom: 10px; }
.area-card p { color: var(--text-muted); line-height: 1.6; }

.link-list { display: inline-flex; flex-direction: column; gap: 14px; margin: 8px 0 20px; }
.link-list li span {
  font-family: var(--font-serif); font-size: 19px; padding-bottom: 8px; border-bottom: 1px solid var(--line); display: inline-block;
}

/* ==========================================================================
   Philosophy band
   ========================================================================== */
.philosophy { background: var(--off-white); }
.philosophy__phrase {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.4vw, 48px);
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 16ch;
  margin: 0 auto 28px;
  line-height: 1.3;
}
.philosophy__phrase span { color: var(--text-muted); }
.philosophy__body { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 17px; line-height: 1.75; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { padding: 90px 0; }
.cta-band--dark { background: var(--black); color: var(--text-invert); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-band__copy { max-width: 560px; }
.cta-band__copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 12px 0 14px; }
.cta-band__copy p { color: var(--text-invert-muted); font-size: 16px; line-height: 1.6; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-band { padding: 64px 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { padding: 68px 0 20px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.14; margin-bottom: 20px; max-width: 18ch; }
.page-hero__lede { font-size: 18px; line-height: 1.65; color: var(--text-muted); max-width: 62ch; }
.page-hero--form { padding-bottom: 8px; }

/* ==========================================================================
   Services detail — jump nav + numbered text rows
   ========================================================================== */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.jump-nav a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.jump-nav a:hover,
.jump-nav a:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.service-row { padding: 56px 0; scroll-margin-top: var(--header-h); }
.service-row:nth-child(even) { background: var(--off-white); }
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 48px; align-items: start; }
.service-row__head { display: flex; gap: 20px; }
.service-row__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-top: 6px;
  flex-shrink: 0;
}
.service-row__head h2 { font-size: 26px; margin-bottom: 10px; }
.service-row__short { font-size: 16.5px; color: var(--text-muted); line-height: 1.6; max-width: 42ch; }
.service-row__cta { margin-top: 24px; }
@media (max-width: 860px) {
  .service-row { padding: 44px 0; }
  .service-row__inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   Check lists
   ========================================================================== */
.check-list { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--text); line-height: 1.5; }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--text); }
.section--dark .check-list li svg { color: var(--white); }
.check-list--cols {
  display: block;
  column-count: 2;
  column-gap: 32px;
  margin-top: 4px;
}
.check-list--cols li { display: flex; break-inside: avoid; margin-bottom: 12px; }
@media (max-width: 560px) {
  .check-list--cols { column-count: 1; }
}

/* ==========================================================================
   Pricing tables
   ========================================================================== */
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.pricing-table th, .pricing-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--line); font-size: 15px; }
.pricing-table thead th {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); font-weight: 700;
  border-bottom: 2px solid var(--black);
}
.pricing-table tbody th {
  text-align: left; font-family: var(--font-serif); font-size: 17px; font-weight: 600;
}
.pricing-table tbody tr:hover { background: var(--off-white); }
.pricing-table--single { max-width: 560px; margin: 0 auto; }
.pricing-table--single th, .pricing-table--single td { text-align: left; }
.pricing-table--single td { text-align: right; font-weight: 600; }

.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.addon-card { background: var(--white); padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.addon-card__name { font-size: 15px; }
.addon-card__price { font-weight: 700; font-family: var(--font-serif); font-size: 17px; white-space: nowrap; }
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr; } }

.pricing-notes { max-width: 640px; margin: 0 auto; }
.pricing-notes__fleet { font-family: var(--font-serif); font-size: 20px; margin: 18px 0 26px; }

/* ==========================================================================
   Step cards (fleet programs)
   ========================================================================== */
.step-grid { margin-top: 8px; }
.step-card { border-top: 1px solid rgba(255,255,255,0.16); padding-top: 24px; }
.step-card__num { font-family: var(--font-serif); font-size: 15px; color: rgba(255,255,255,0.4); }
.step-card h3 { font-size: 19px; margin: 14px 0 10px; color: var(--white); }
.step-card p { color: var(--text-invert-muted); line-height: 1.6; font-size: 15px; }

/* ==========================================================================
   Request Service form
   ========================================================================== */
.request-form-wrap { max-width: var(--container-narrow); margin: 0 auto; }
.request-form { display: flex; flex-direction: column; gap: 8px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-section {
  border: none;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  margin: 0;
}
.form-section:first-of-type { border-top: none; padding-top: 8px; }
.form-section legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0;
  margin-bottom: 22px;
  width: 100%;
}

.form-grid { display: grid; gap: 20px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid--2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.is-hidden { display: none; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.req { color: var(--text); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"],
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  border-radius: var(--radius);
  width: 100%;
  transition: border-color .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5c60' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--black); }
.field textarea { resize: vertical; min-height: 120px; }

.checkbox-line { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 14.5px; }
.checkbox-line input { width: 18px; height: 18px; }

.checkbox-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 11px 18px; border-radius: 999px;
  font-size: 13.5px; cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checkbox-pill:has(input:checked) { border-color: var(--black); background: var(--off-white); }
.checkbox-pill input { width: 15px; height: 15px; }

.file-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px;
  border: 1.5px dashed var(--line); padding: 40px 24px; border-radius: var(--radius); cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.file-drop:hover { border-color: var(--black); background: var(--off-white); }
.file-drop__icon { width: 30px; height: 30px; color: var(--text-muted); }
.file-drop__icon svg { width: 100%; height: 100%; }
.file-drop__text { font-weight: 600; font-size: 14.5px; }
.file-drop__hint { font-size: 12.5px; color: var(--text-muted); }
.file-drop input[type="file"] {
  position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden;
}
.file-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.file-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13.5px; border: 1px solid var(--line); padding: 10px 14px; border-radius: var(--radius);
}
.file-list button {
  background: none; border: none; color: var(--text-muted); font-size: 12px; text-decoration: underline; padding: 0;
}

.field-error { color: #b3261e; font-size: 13.5px; margin-top: 10px; }

.form-submit { padding-top: 20px; }
.form-submit__note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.6; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

.request-confirm {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  padding: 64px 32px;
}
.request-confirm__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--black); color: var(--white);
  font-size: 22px; margin-bottom: 24px;
}
.request-confirm h2 { font-size: 28px; margin-bottom: 14px; }
.request-confirm p { color: var(--text-muted); font-size: 16px; line-height: 1.6; max-width: 48ch; margin: 0 auto; }
.request-confirm__priority { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
.request-confirm__priority .eyebrow { color: var(--text-muted); }
.request-confirm__priority .btn { background: var(--black); color: var(--white); border-color: var(--black); }
.request-confirm__priority .btn:hover { background: #262628; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: var(--text-invert); padding-top: 88px; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer__brand img { height: 58px; width: auto; margin-bottom: 22px; }
.site-footer__phrase { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.site-footer__desc { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.site-footer__heading { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.site-footer__list { display: flex; flex-direction: column; gap: 12px; }
.site-footer__list a, .site-footer__list li { font-size: 14.5px; color: rgba(255,255,255,0.78); }
.site-footer__list a:hover { color: var(--white); }
.site-footer__muted { color: rgba(255,255,255,0.4) !important; font-size: 13px !important; }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap;
  padding: 28px 0 36px; font-size: 12.5px; color: rgba(255,255,255,0.4);
}
.site-footer__legal { max-width: 640px; line-height: 1.6; }

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer { padding-top: 64px; }
}

/* ==========================================================================
   Motion: reveal-on-scroll (progressive enhancement, no layout dependency)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal-ready.is-visible { opacity: 1; transform: none; }
}
