/* ==========================================================================
   SULTAN TRANSPORTATION LLC — Core Stylesheet
   USDOT 3946117 · MC-1467044
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --navy-900: #070d18;
  --navy-800: #0b1526;
  --navy-700: #101f36;
  --navy-600: #16304f;
  --navy-500: #1e3f66;

  --amber-400: #ffc247;
  --amber-500: #f5a524;
  --amber-600: #d98613;

  --ink: #0b1526;
  --ink-soft: #43506b;
  --line: #e3e8f0;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;

  --white: #ffffff;
  --white-70: rgba(255, 255, 255, .70);
  --white-55: rgba(255, 255, 255, .55);
  --white-12: rgba(255, 255, 255, .12);
  --white-08: rgba(255, 255, 255, .08);

  --ok: #16a34a;

  /* Type */
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --gutter: 24px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(11, 21, 38, .06), 0 4px 12px rgba(11, 21, 38, .05);
  --shadow-md: 0 12px 32px rgba(11, 21, 38, .10);
  --shadow-lg: 0 28px 70px rgba(7, 13, 24, .18);
  --shadow-amber: 0 12px 28px rgba(217, 134, 19, .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

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

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); }

p { text-wrap: pretty; }

::selection { background: var(--amber-500); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tight { padding: clamp(56px, 6vw, 84px) 0; }
.section--alt { background: var(--surface-alt); }

.section--dark {
  background: var(--navy-800);
  color: var(--white-70);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 16px; }

/* ---------- 4. Section headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber-500);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--amber-400); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { margin-top: 18px; font-size: 1.075rem; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--amber-500);
  --btn-fg: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-amber); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: var(--white-12);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--white-08);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: none;
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { background: var(--surface-alt); border-color: #cbd4e2; box-shadow: none; }

.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .93rem;
  color: var(--amber-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--dark .link-arrow { color: var(--amber-400); }

/* ---------- 6. Top bar + header ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--white-55);
  font-size: .84rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__creds { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar__creds strong { color: var(--white-70); font-weight: 600; }
.topbar__links { display: flex; align-items: center; gap: 20px; }
.topbar a { transition: color .2s var(--ease); }
.topbar a:hover { color: var(--amber-400); }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9ff0b6;
}
.status-dot::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 0 0 rgba(52, 209, 122, .6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(52, 209, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 209, 122, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 38, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 34px rgba(7, 13, 24, .35); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .07em;
  color: var(--white);
}
.brand__sub {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-400);
  font-weight: 600;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 auto 0 20px;
}
.nav__link {
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--white-70);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--white); background: var(--white-08); }
.nav__link.is-active { color: var(--amber-400); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .97rem;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--amber-400); }
.nav__phone:hover { color: var(--amber-400); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--white-12);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: background-color .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--white-70);
  overflow: hidden;
  padding: clamp(80px, 11vw, 148px) 0 clamp(72px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(105deg, rgba(7, 13, 24, .96) 0%, rgba(7, 13, 24, .82) 45%, rgba(7, 13, 24, .55) 100%),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center right;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(60% 60% at 88% 12%, rgba(245, 165, 36, .16), transparent 68%),
    radial-gradient(50% 50% at 8% 90%, rgba(30, 63, 102, .55), transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, #000 30%, transparent 78%);
}

.hero__inner { max-width: 800px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--white-12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  font-size: .84rem;
  color: var(--white-70);
  margin-bottom: 30px;
}
.hero__badge b { color: var(--white); font-weight: 600; }
.hero__badge-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(52, 209, 122, .16);
  color: #7ceaa5;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 { color: var(--white); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__text {
  margin-top: 26px;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.68;
  max-width: 620px;
  color: var(--white-70);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--white-12);
}
.hero__proof-item { display: flex; align-items: center; gap: 11px; font-size: .93rem; color: var(--white-70); }
.hero__proof-item svg { width: 20px; height: 20px; color: var(--amber-400); flex: none; }

/* ---------- 8. Stats strip ---------- */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -58px;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat { padding: 34px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-800);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__value span { color: var(--amber-500); }
.stat__label {
  margin-top: 10px;
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- 9. Cards ---------- */
.card {
  position: relative;
  padding: 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #cfd9e8;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: .97rem; }

.card__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-500));
  color: var(--amber-400);
}
.card__icon svg { width: 26px; height: 26px; }

.card__list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: .93rem;
}
.card__list li { display: flex; gap: 10px; align-items: flex-start; }
.card__list li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(245, 165, 36, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d98613' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.card--dark {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border-color: rgba(255, 255, 255, .09);
  color: var(--white-70);
}
.card--dark:hover { border-color: rgba(245, 165, 36, .35); }

.card--feature {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card--feature .link-arrow { margin-top: auto; padding-top: 22px; }

/* Numbered process cards */
.step {
  position: relative;
  padding: 32px 28px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--amber-500);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: .95rem; }

/* ---------- 10. Split media block ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(140deg, rgba(7, 13, 24, .35), rgba(7, 13, 24, .78)),
    linear-gradient(150deg, var(--navy-600), var(--navy-800));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.split__media[data-img] { background-blend-mode: normal; }

.split__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(11, 21, 38, .82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--white-12);
  color: var(--white-70);
}
.split__badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.split__badge span { font-size: .9rem; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
}
.checklist li svg {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  color: var(--amber-500);
}
.checklist strong { color: var(--ink); font-weight: 600; }
.section--dark .checklist strong { color: var(--white); }

/* ---------- 11. Credentials / compliance panel ---------- */
.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cred { background: var(--navy-800); padding: 30px 26px; }
.cred__label {
  font-size: .74rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--white-55);
  font-weight: 600;
  margin-bottom: 12px;
}
.cred__value {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.cred__note { margin-top: 8px; font-size: .85rem; color: var(--white-55); }
.cred__value--ok { color: #7ceaa5; }

/* ---------- 12. Coverage / map ---------- */
.coverage {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.map { position: relative; }
.map svg { width: 100%; height: auto; }
.map__state { fill: rgba(255, 255, 255, .07); stroke: rgba(255, 255, 255, .16); stroke-width: .8; transition: fill .3s var(--ease); }
.map__state--core { fill: rgba(245, 165, 36, .30); stroke: rgba(245, 165, 36, .55); }
.map:hover .map__state { fill: rgba(255, 255, 255, .11); }
.map:hover .map__state--core { fill: rgba(245, 165, 36, .42); }
.map__hub-ring { fill: none; stroke: var(--amber-400); stroke-width: 1.5; opacity: .8; transform-origin: center; animation: ring 3s ease-out infinite; }
@keyframes ring {
  0%   { r: 4; opacity: .85; }
  100% { r: 26; opacity: 0; }
}
.map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 26px;
  font-size: .88rem;
}
.map__legend span { display: inline-flex; align-items: center; gap: 9px; }
.map__legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.legend-core { background: rgba(245, 165, 36, .55); }
.legend-all  { background: rgba(255, 255, 255, .18); }
.legend-hub  { background: var(--amber-400); border-radius: 50%; }

/* ---------- 13. Quote / testimonial ---------- */
.quote {
  position: relative;
  padding: clamp(36px, 4vw, 54px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: .8;
  color: rgba(245, 165, 36, .28);
  margin-bottom: 8px;
}
.quote p {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}
.quote__by { margin-top: 24px; font-size: .92rem; }
.quote__by strong { color: var(--ink); display: block; font-weight: 600; }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 880px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open] { border-color: rgba(245, 165, 36, .55); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--ink);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a524' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(135deg); }
.faq__a { padding: 0 26px 24px; font-size: .98rem; }

/* ---------- 15. CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--white-70);
  padding: clamp(56px, 7vw, 92px) 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(45% 90% at 82% 30%, rgba(245, 165, 36, .22), transparent 70%),
    radial-gradient(40% 80% at 10% 100%, rgba(30, 63, 102, .6), transparent 70%);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); max-width: 620px; }
.cta-band p { margin-top: 14px; max-width: 560px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 16. Forms ---------- */
.form-panel {
  padding: clamp(30px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.field label span { color: #d94a24; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-alt);
  font-size: .97rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 165, 36, .16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field__hint { font-size: .82rem; color: #7c879e; }

.form-note { margin-top: 18px; font-size: .84rem; color: #7c879e; text-align: center; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .93rem;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(22, 163, 74, .1); color: #14803c; border: 1px solid rgba(22, 163, 74, .25); }
.form-status--err { background: rgba(217, 74, 36, .08); color: #b33c1c; border: 1px solid rgba(217, 74, 36, .22); }

/* Contact info tiles */
.contact-tile {
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-tile:hover { border-color: #cfd9e8; box-shadow: var(--shadow-sm); }
.contact-tile__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245, 165, 36, .13);
  color: var(--amber-600);
}
.contact-tile__icon svg { width: 22px; height: 22px; }
.contact-tile h3 { font-size: 1.02rem; margin-bottom: 6px; }
.contact-tile a { color: var(--ink); font-weight: 500; }
.contact-tile a:hover { color: var(--amber-600); }
.contact-tile p { font-size: .94rem; }

/* ---------- 17. Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--white-70);
  padding: clamp(64px, 8vw, 104px) 0 clamp(56px, 7vw, 88px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(55% 80% at 85% 15%, rgba(245, 165, 36, .16), transparent 68%),
    radial-gradient(50% 70% at 5% 95%, rgba(30, 63, 102, .55), transparent 72%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.page-hero p { margin-top: 20px; max-width: 640px; font-size: 1.08rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--white-55);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--amber-400); }
.breadcrumb span { opacity: .5; }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--white-55);
  padding-top: clamp(56px, 6vw, 80px);
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer__col h4 {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__list a { transition: color .2s var(--ease); }
.footer__list a:hover { color: var(--amber-400); }
.footer__about { max-width: 340px; margin-top: 20px; line-height: 1.7; }
.footer__creds {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__chip {
  padding: 6px 13px;
  border: 1px solid var(--white-12);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--white-70);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .04em;
}
.footer__contact { display: grid; gap: 14px; }
.footer__contact a { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--amber-500); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--amber-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
}
.footer__bottom a:hover { color: var(--amber-400); }

/* ---------- 19. Scroll reveal ----------
   Scoped to .js so that with scripting unavailable the content simply shows. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 20. Responsive ---------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}

@media (max-width: 960px) {
  .nav__menu {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 96px 24px 32px;
    background: var(--navy-900);
    border-bottom: 1px solid var(--white-12);
    transform: translateY(-100%);
    transition: transform .38s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; }
  .nav__toggle { display: grid; position: relative; z-index: 2; }
  .nav__phone { display: none; }
  .nav__cta .btn { display: none; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split, .coverage { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 320px; }
  .stats { margin-top: -40px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  /* City labels shrink below legibility once the map is phone-width;
     the lane list above the map carries the same information. */
  .map__cities { display: none; }
  .map__ring-label { font-size: 20px; }
  .map__hub-label { font-size: 24px; }
  .topbar__creds { gap: 12px; font-size: .78rem; }
  .topbar__links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 100%; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .grid--4 { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .stat:nth-child(3) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__proof { gap: 14px 20px; }
}

/* ---------- 21. Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .cta-band, .nav__toggle, .site-footer { display: none; }
  body { color: #000; font-size: 12pt; }
  .hero, .page-hero { background: #fff; color: #000; padding: 24pt 0; }
  .hero h1, .page-hero h1 { color: #000; }
}
