:root {
  --navy-900: #081730;
  --navy-800: #0b1d3a;
  --navy-700: #14305c;
  --navy-600: #1d4282;
  --amber-400: #ffbf52;
  --amber-500: #f5a524;
  --amber-600: #d9881a;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --border: #e6e7eb;
  --text: #0f172a;
  --muted: #5b6472;
  --shadow-sm: 0 1px 2px rgba(8,23,48,0.06), 0 1px 3px rgba(8,23,48,0.04);
  --shadow-md: 0 6px 16px rgba(8,23,48,0.08), 0 2px 6px rgba(8,23,48,0.05);
  --shadow-lg: 0 24px 60px rgba(8,23,48,0.18), 0 8px 24px rgba(8,23,48,0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --pad: clamp(1rem, 3vw, 2rem);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy-800); }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--text); }
.muted { color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute; left: -1000px; top: 0;
  background: var(--navy-800); color: #fff; padding: .5rem .75rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ── Header ───────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.brand img { width: 200px; height: auto; }

.primary-nav ul {
  display: flex; gap: .25rem; list-style: none; padding: 0; margin: 0; align-items: center;
}
.primary-nav a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: 8px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: .95rem;
  transition: background-color .2s;
}
.primary-nav a:not(.btn):hover { background: rgba(11,29,58,0.06); }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: .5rem;
  width: 44px; height: 44px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-800); margin: 4px auto;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 72px;
    background: #fff; border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: 1rem var(--pad); }
  .primary-nav a { padding: .9rem 1rem; border-radius: 10px; }
  body.nav-open .primary-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ── Buttons ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .7rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .005em;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--lg { padding: .9rem 1.4rem; font-size: 1rem; border-radius: 12px; }
.btn--sm { padding: .45rem .85rem; font-size: .9rem; }
.btn--accent {
  background: var(--amber-500); color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(245,165,36,0.28);
}
.btn--accent:hover { background: var(--amber-400); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(245,165,36,0.36); }
.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(245,165,36,0.18), transparent 55%),
    radial-gradient(ellipse at 0% 90%, rgba(29,66,130,0.6), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(3.5rem, 9vw, 7rem);
}
.hero h1 { color: #fff; }
.hero h1 .amber { color: var(--amber-500); }
.hero .lede { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 36rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero__pills {
  list-style: none; padding: 0; margin: 2.25rem 0 0;
  display: flex; flex-wrap: wrap; gap: .4rem .55rem;
}
.hero__pills li {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
}
.hero__art img { width: 100%; max-width: 640px; margin-left: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35)); }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__art { order: -1; }
  .hero__art img { max-width: 480px; margin: 0 auto; }
}

/* ── Eyebrow / section heads ──────────── */
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-600);
  padding: .25rem 0;
  margin-bottom: .8rem;
  position: relative; padding-left: 28px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 20px; height: 2px; background: var(--amber-500);
  transform: translateY(-50%);
}
.hero .eyebrow { color: var(--amber-400); }
.hero .eyebrow::before { background: var(--amber-400); }
.stats .eyebrow, .quote-section .eyebrow { /* no override needed */ }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: #fff; }
.section__head { max-width: 56rem; margin: 0 auto 2.5rem; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.section__head .eyebrow { padding-left: 0; padding-right: 0; }
.section__head .eyebrow::before { display: none; }

/* ── Grids ────────────────────────────── */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ── Cards (services) ─────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(245,165,36,0.5); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(245,165,36,0.12);
  border-radius: 12px;
  color: var(--amber-600);
  margin-bottom: 1rem;
}
.card__icon .icon { width: 26px; height: 26px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ── Value props ──────────────────────── */
.value { padding: 1.25rem; }
.value__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--navy-800); color: var(--amber-500);
  margin-bottom: 1rem;
}
.value__icon .icon { width: 22px; height: 22px; }
.value h3 { font-size: 1.05rem; }
.value p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ── Stats band ───────────────────────── */
.stats {
  background: var(--navy-800);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(245,165,36,0.18), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(29,66,130,0.6), transparent 50%);
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: center;
}
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat__num {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--amber-500);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: .6rem;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── Fleet cards ──────────────────────── */
.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.fleet-card::before {
  content: ""; position: absolute; left: 1.75rem; top: 0;
  width: 36px; height: 4px;
  background: var(--amber-500); border-radius: 0 0 4px 4px;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-card p { color: var(--muted); }
.link {
  font-weight: 700; color: var(--navy-700);
  display: inline-flex; gap: .35rem; align-items: center;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 2px;
  transition: color .2s, gap .2s;
}
.link:hover { color: var(--amber-600); gap: .55rem; }

/* ── Process ──────────────────────────── */
.process {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 800px) { .process { grid-template-columns: 1fr; } }
.process__step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.process__num {
  font-family: var(--font);
  font-size: 2rem; font-weight: 800;
  color: var(--amber-500);
  letter-spacing: -0.02em;
  margin-bottom: .5rem;
}
.process__step p { color: var(--muted); margin: 0; }

/* ── Testimonials ─────────────────────── */
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber-500);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
}
.quote blockquote {
  margin: 0 0 1rem; font-size: 1.02rem;
  color: var(--text);
  font-style: italic;
}
.quote figcaption {
  font-size: .85rem; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}

/* ── Quote section ────────────────────── */
.quote-section { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.quote-section__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .quote-section__inner { grid-template-columns: 1fr; } }
.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.checklist li {
  position: relative; padding-left: 1.75rem; margin-bottom: .55rem;
  color: var(--text);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 18px; height: 18px;
  background: var(--amber-500);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>") center/14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/></svg>") center/14px no-repeat;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  position: relative;
}
.field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: .82rem; font-weight: 600; color: var(--navy-800); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .65rem .8rem;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,165,36,0.18);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-fine { font-size: .8rem; color: var(--muted); margin: .9rem 0 0; }

@media (max-width: 540px) {
  .field-grid { grid-template-columns: 1fr; }
}

.thanks {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber-500);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.thanks h3 { color: var(--navy-800); font-size: 1.4rem; }
.thanks p { color: var(--muted); margin: 0; }

/* ── Footer ───────────────────────────── */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 1.5rem;
}
.site-footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__brand img { margin-bottom: 1rem; }
.site-footer__brand p { color: rgba(255,255,255,0.65); max-width: 28rem; }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,0.7); transition: color .15s; }
.site-footer a:hover { color: var(--amber-500); }
.social-list { display: flex; gap: .5rem; }
.social-list li { margin: 0; }
.social-list a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
}
.social-list a:hover { background: rgba(245,165,36,0.12); border-color: var(--amber-500); color: var(--amber-500); }
.site-footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; flex-wrap: wrap; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,0.55);
}
.site-footer__legal p { margin: 0; }

/* ── Reveal on scroll ─────────────────── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .fleet-card { transition: none; }
}
