/* =====================================================
   Lion Secure Despatch — global stylesheet
   Brand: deep navy + orange accent on black surfaces
   ===================================================== */

:root {
  --navy-900: #060f1c;
  --navy-800: #0a1a2e;
  --navy-700: #0f263f;
  --navy-600: #173456;
  --navy-500: #244a73;

  --orange-500: #f26b1f;
  --orange-400: #ff8534;
  --orange-300: #ffa566;

  --ink-900: #0b1220;
  --ink-700: #243044;
  --ink-500: #4a5468;
  --ink-300: #94a0b6;
  --ink-200: #cdd5e2;
  --ink-100: #e8ecf3;
  --ink-050: #f5f7fa;

  --white: #ffffff;
  --black: #000000;

  --grad-hero: linear-gradient(135deg, rgba(6, 15, 28, 0.92) 0%, rgba(10, 26, 46, 0.78) 50%, rgba(242, 107, 31, 0.18) 100%);
  --grad-orange: linear-gradient(135deg, #f26b1f 0%, #ff8534 100%);
  --grad-navy: linear-gradient(180deg, #0a1a2e 0%, #060f1c 100%);

  --shadow-sm: 0 1px 2px rgba(6, 15, 28, 0.06), 0 1px 3px rgba(6, 15, 28, 0.10);
  --shadow-md: 0 4px 6px rgba(6, 15, 28, 0.07), 0 10px 20px rgba(6, 15, 28, 0.08);
  --shadow-lg: 0 10px 25px rgba(6, 15, 28, 0.10), 0 20px 50px rgba(6, 15, 28, 0.12);
  --shadow-xl: 0 25px 60px rgba(6, 15, 28, 0.20);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --container-wide: 1320px;

  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --header-h: 80px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; letter-spacing: -0.005em; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-wide { max-width: var(--container-wide); }

.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-dark {
  background: var(--navy-900);
  color: var(--ink-100);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--ink-200); }
.section-tone { background: var(--ink-050); }

/* ----------------------------- Eyebrow / kicker ----------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange-500);
}
.section-dark .eyebrow { color: var(--orange-400); }
.section-dark .eyebrow::before { background: var(--orange-400); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242,107,31,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242,107,31,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-arrow::after {
  content: "→";
  transition: transform .25s var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 15, 28, 0.0);
  transition: background .3s var(--ease-out), backdrop-filter .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(6, 15, 28, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: color .2s var(--ease-out), background .2s var(--ease-out);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav a.is-active { color: var(--white); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.18);
}
.header-phone svg { width: 16px; height: 16px; color: var(--orange-400); }
.header-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

/* Compact mobile-only CTA (Call icon + Quote button) */
.header-cta-mobile {
  display: none;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.icon-btn-call {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(242,107,31,0.4);
}
.icon-btn:hover { transform: scale(1.05); }
.icon-btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 12;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(242,107,31,0.25), transparent 60%);
  mix-blend-mode: screen;
  z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 80px;
  max-width: 880px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-tag-pill {
  background: var(--orange-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.86);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  max-width: 760px;
}
.hero-meta-item {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-meta-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* Slim hero variant for inner pages */
.subhero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  color: var(--white);
  background: var(--grad-navy);
  overflow: hidden;
  isolation: isolate;
}
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(242,107,31,0.30), transparent 60%);
  z-index: -1;
}
.subhero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.subhero h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 18px;
}
.subhero p {
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  font-size: 1.1rem;
}
.crumbs {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.crumbs a:hover { color: var(--orange-400); }
.crumbs span { color: rgba(255,255,255,0.3); padding: 0 8px; }

/* ----------------------------- Trust strip ----------------------------- */
.trust-strip {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }
.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-inner span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
}

/* ----------------------------- Cards ----------------------------- */
/* Row sliders: single-line on desktop (items grow to fill) and horizontal scroll on mobile/overflow.
   Padding + negative margin gives hover transforms and shadows room before clipping. */
.row-snap {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 32px;
  margin: -12px -4px -16px;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}
.row-snap::-webkit-scrollbar { height: 8px; }
.row-snap::-webkit-scrollbar-track { background: transparent; }
.row-snap::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.section-dark .row-snap { scrollbar-color: rgba(255,255,255,0.25) transparent; }
.section-dark .row-snap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); }
.row-snap > * { scroll-snap-align: start; }

.feature-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 32px;
  margin: -12px -4px -16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}
.feature-grid::-webkit-scrollbar { height: 8px; }
.feature-grid::-webkit-scrollbar-track { background: transparent; }
.feature-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.section-dark .feature-grid { scrollbar-color: rgba(255,255,255,0.25) transparent; }
.section-dark .feature-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); }
.feature-grid > * {
  flex: 1 0 280px;
  min-width: 280px;
  scroll-snap-align: start;
}
.feature {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(242,107,31,0.12);
  color: var(--orange-500);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-500); margin: 0; font-size: 0.96rem; }

.section-dark .feature {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .feature:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(242,107,31,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.section-dark .feature p { color: var(--ink-200); }
.section-dark .feature-icon {
  background: rgba(242,107,31,0.18);
  color: var(--orange-400);
}

/* Service cards (image + overlay) */
.service-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 32px;
  margin: -12px -4px -16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}
.service-grid::-webkit-scrollbar { height: 8px; }
.service-grid::-webkit-scrollbar-track { background: transparent; }
.service-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.service-grid > * {
  flex: 1 0 320px;
  min-width: 320px;
  scroll-snap-align: start;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--white);
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .6s var(--ease-out);
}
.service-card:hover img { transform: scale(1.06); }
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,28,0) 30%, rgba(6,15,28,0.85) 100%);
  z-index: -1;
}
.service-card-body { width: 100%; }
.service-card h3 { color: var(--white); margin-bottom: 8px; }
.service-card p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 0.95rem; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--orange-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------------------------- Section header ----------------------------- */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; color: var(--ink-500); }
.section-dark .section-head p { color: var(--ink-200); }

/* ----------------------------- Two-col split ----------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img.frame {
  box-shadow: var(--shadow-xl);
}
.split-img.frame::after {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 60%;
  height: 60%;
  border: 2px solid var(--orange-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split.reverse > :first-child { order: 2; }

/* Stat blocks */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span { color: var(--ink-500); font-size: 0.95rem; }
.section-dark .stat span { color: var(--ink-200); }

/* ----------------------------- Sectors band ----------------------------- */
.sectors {
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255,255,255,0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.sectors::-webkit-scrollbar { height: 6px; }
.sectors::-webkit-scrollbar-track { background: transparent; }
.sectors::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); }
.sector {
  flex: 1 0 240px;
  min-width: 240px;
  scroll-snap-align: start;
  background: var(--navy-900);
  padding: 32px 28px;
  transition: background .3s var(--ease-out);
}
.sector:hover { background: var(--navy-800); }
.sector-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(242,107,31,0.18);
  color: var(--orange-400);
  margin-bottom: 18px;
}
.sector-icon svg { width: 22px; height: 22px; }
.sector h4 { color: var(--white); margin-bottom: 6px; }
.sector p { font-size: 0.9rem; color: var(--ink-300); margin: 0; }

/* ----------------------------- Fleet table ----------------------------- */
.fleet-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 32px;
  margin: -12px -4px -16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}
.fleet-list::-webkit-scrollbar { height: 8px; }
.fleet-list::-webkit-scrollbar-track { background: transparent; }
.fleet-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.fleet-list > * {
  flex: 1 0 300px;
  min-width: 300px;
  scroll-snap-align: start;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-050);
}
.fleet-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.fleet-card:hover .fleet-card-media img { transform: scale(1.05); }
.fleet-card-body { padding: 24px; }
.fleet-card h3 { margin-bottom: 12px; }
.fleet-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 0.88rem;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-100);
}
.fleet-spec dt { color: var(--ink-500); }
.fleet-spec dd { margin: 0; font-weight: 600; color: var(--ink-900); }

/* ----------------------------- Testimonials ----------------------------- */
.t-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 32px;
  margin: -12px -4px -16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}
.t-grid::-webkit-scrollbar { height: 8px; }
.t-grid::-webkit-scrollbar-track { background: transparent; }
.t-grid::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 4px; }
.t-grid > * {
  flex: 1 0 320px;
  min-width: 320px;
  max-width: 460px;
  scroll-snap-align: start;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  padding: 32px;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.t-card::before {
  content: "“";
  position: absolute;
  top: 8px; left: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--orange-500);
  opacity: 0.18;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.t-card blockquote {
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-700);
  position: relative;
}
.t-card cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-900);
}
.t-card cite span {
  display: block;
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--ink-500);
  margin-top: 2px;
}
.t-stars {
  color: var(--orange-500);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* ----------------------------- CTA banner ----------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  color: var(--white);
  isolation: isolate;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,28,0.95) 0%, rgba(10,26,46,0.85) 100%), url('') center/cover;
  z-index: -1;
}
.cta-banner.with-image::after {
  background: linear-gradient(135deg, rgba(6,15,28,0.92) 0%, rgba(10,26,46,0.7) 100%);
}
.cta-banner img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-banner h2 { color: var(--white); max-width: 18ch; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.84); max-width: 56ch; margin-bottom: 28px; font-size: 1.08rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------------------------- Forms ----------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink-050);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242,107,31,0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--ink-700);
}
.field-checkbox input { width: auto; margin-top: 4px; }

/* ----------------------------- Footer ----------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--ink-200);
  padding: 80px 0 30px;
  border-top: 4px solid var(--orange-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: var(--ink-200); font-size: 0.94rem; transition: color .2s var(--ease-out); }
.footer-grid ul a:hover { color: var(--orange-400); }
.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 0.94rem; color: var(--ink-300); max-width: 36ch; }
.footer-contact a {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-200);
  font-size: 0.94rem;
  margin-bottom: 12px;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--ink-300);
}
.footer-bottom .credit { color: var(--ink-300); }
.footer-bottom .credit a {
  color: var(--orange-400);
  font-weight: 500;
  transition: color .2s var(--ease-out);
}
.footer-bottom .credit a:hover { color: var(--orange-300); }
.footer-badges {
  display: flex; align-items: center; gap: 16px;
}
.footer-badges img {
  height: 44px;
  background: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ----------------------------- Misc ----------------------------- */
.lift-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.lift-on-scroll.in { opacity: 1; transform: translateY(0); }

/* Skip link for a11y */
.skip {
  position: absolute; left: -9999px;
  background: var(--orange-500); color: var(--white);
  padding: 10px 14px; border-radius: 6px;
  z-index: 200;
}
.skip:focus { left: 16px; top: 16px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .4s var(--ease-out);
  aspect-ratio: 4/3;
}
.gallery a { display:block; overflow: hidden; border-radius: var(--radius-md); }
.gallery a:hover img { transform: scale(1.04); }
.gallery a:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 4/4; }
.gallery a:nth-child(2),
.gallery a:nth-child(3) { grid-column: span 6; }
.gallery a:nth-child(n+4) { grid-column: span 4; }

/* Process / steps */
.steps {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  counter-reset: step;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 28px;
  margin: -4px -4px -12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.steps::-webkit-scrollbar { height: 6px; }
.steps::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); }
.steps > * {
  flex: 1 0 240px;
  min-width: 240px;
  scroll-snap-align: start;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-400);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}
.step h4 { color: var(--white); margin-bottom: 8px; }
.step p { color: var(--ink-200); font-size: 0.92rem; margin: 0; }

/* Inline check list */
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--ink-700);
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.section-dark .check-list li { color: var(--ink-200); }

/* ----------------------------- Slider arrows ----------------------------- */
.slider-wrap { position: relative; }
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 6px 20px rgba(6,15,28,0.18), 0 1px 2px rgba(6,15,28,0.10);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background .25s var(--ease-out),
              color .25s var(--ease-out),
              opacity .25s var(--ease-out),
              box-shadow .25s var(--ease-out);
  cursor: pointer;
  border: 0;
  padding: 0;
}
.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow:hover {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242,107,31,0.45);
}
.slider-prev { left: -22px; }
.slider-next { right: -22px; }
.slider-prev svg { transform: scaleX(-1); }
.slider-arrow.is-end { opacity: 0; pointer-events: none; }
.slider-wrap:not(.has-overflow) .slider-arrow { display: none; }

@media (max-width: 760px) {
  .slider-arrow { display: none !important; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery a:nth-child(1) { grid-column: span 12; }
  .gallery a:nth-child(2),
  .gallery a:nth-child(3) { grid-column: span 6; }
  .gallery a:nth-child(n+4) { grid-column: span 6; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .brand-logo { height: 44px; }
  .nav { display: none; }
  .header-cta { display: none; }
  .header-cta-mobile { display: flex; }
  .nav-toggle { display: grid; place-items: center; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(6, 15, 28, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 11;
  }
  .nav.is-open a {
    padding: 16px 12px;
    font-size: 1.05rem;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 60px); padding-bottom: 60px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-strip-inner { font-size: 0.7rem; gap: 14px; }
  .gallery a { grid-column: span 12 !important; }
}
