/* ============================================================
   CARGO VAN DISPATCH — STYLESHEET
   Fresh modern industrial aesthetic
   Primary: Deep slate navy + high-vis orange accent
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-hero: clamp(2.6rem,   1rem    + 5vw,    5.5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem;

  /* Brand palette — Industrial modern */
  --color-bg:           #f4f5f7;
  --color-surface:      #ffffff;
  --color-surface-2:    #f9fafb;
  --color-border:       #e2e5eb;
  --color-divider:      #dde1e9;

  --color-text:         #0f1623;
  --color-text-muted:   #5a6478;
  --color-text-faint:   #9aa0b0;
  --color-text-inverse: #ffffff;

  /* Accent: high-visibility orange — reads "freight", "urgency", "movement" */
  --color-accent:       #e85d04;
  --color-accent-hover: #c94e00;
  --color-accent-light: #fff0e8;

  /* Navy: authority and trust */
  --color-navy:         #0d1b3e;
  --color-navy-mid:     #162040;
  --color-navy-light:   #1e2d52;

  /* Utility */
  --color-success:      #1a7a4a;
  --color-error:        #c0392b;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,22,35,0.07);
  --shadow-md: 0 4px 16px rgba(15,22,35,0.10);
  --shadow-lg: 0 12px 40px rgba(15,22,35,0.14);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);

  /* Layout */
  --content-default: 1140px;
  --content-narrow: 720px;

  /* Fonts */
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

/* ── DARK MODE ── */
[data-theme="dark"] {
  --color-bg:           #0a0f1c;
  --color-surface:      #111827;
  --color-surface-2:    #141d2e;
  --color-border:       #1f2d48;
  --color-divider:      #1a2640;
  --color-text:         #e8ecf4;
  --color-text-muted:   #8a95a8;
  --color-text-faint:   #4a5568;
  --color-text-inverse: #ffffff;
  --color-accent:       #ff7a2f;
  --color-accent-hover: #ff6010;
  --color-accent-light: #1f1208;
  --color-navy:         #0d1b3e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:           #0a0f1c;
    --color-surface:      #111827;
    --color-surface-2:    #141d2e;
    --color-border:       #1f2d48;
    --color-divider:      #1a2640;
    --color-text:         #e8ecf4;
    --color-text-muted:   #8a95a8;
    --color-text-faint:   #4a5568;
    --color-accent:       #ff7a2f;
    --color-accent-hover: #ff6010;
    --color-accent-light: #1f1208;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}

/* ── BASE RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.1; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 70ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: rgba(232,93,4,0.2);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.section--alt {
  background: var(--color-surface);
}
.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 58ch;
}
.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section__header .section__sub {
  margin-inline: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75em 1.75em;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.35);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
}
.btn--white:hover, .btn--white:focus-visible {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}
.btn--lg {
  padding: 0.9em 2.2em;
  font-size: var(--text-sm);
}
.btn--full { width: 100%; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.header--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-6);
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo--footer .logo__text { color: rgba(255,255,255,0.9); }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav__link:hover, .nav__link:focus-visible, .nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav__link--cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: var(--space-2) var(--space-5);
}
.nav__link--cta:hover, .nav__link--cta:focus-visible {
  background: var(--color-accent-hover) !important;
  box-shadow: 0 4px 14px rgba(232,93,4,0.4);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #162040 40%, #1a0a00 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,93,4,0.12) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-16), 10vh, var(--space-24));
  grid-column: 1;
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
}
.hero__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero__image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  z-index: 1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -1px;
  background: linear-gradient(90deg, var(--color-navy) 0%, transparent 50%);
  z-index: 2;
}

/* ── TICKER ── */
.ticker {
  background: var(--color-accent);
  overflow: hidden;
  padding-block: var(--space-3);
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: var(--space-6);
  animation: ticker-scroll 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}
.ticker__dot {
  opacity: 0.6;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HOW IT WORKS - STEPS ── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.step {
  flex: 1;
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}
.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.step__arrow {
  font-size: var(--text-xl);
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: var(--space-10);
  font-weight: 700;
}

/* ── WHY US ── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.why__intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.why__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.feature {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature__icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.feature__icon svg {
  width: 20px;
  height: 20px;
}
.feature__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feature__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ── ABOUT ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 7vw, var(--space-20));
  align-items: center;
}
.about__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-navy);
}
.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text-col p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a0d00 100%);
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(232,93,4,0.18) 0%, transparent 70%);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  flex-wrap: wrap;
}
.cta-band__heading {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}
.cta-band__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
}

/* ── FOOTER ── */
.footer {
  background: #060c1a;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  max-width: 50ch;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
}
.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--color-accent); }
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  max-width: none;
}

/* ── CONTACT PAGE ── */
.page-hero {
  background: var(--color-navy);
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,93,4,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section__eyebrow { margin-bottom: var(--space-3); }
.page-hero__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.page-hero__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 58ch;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}

/* Qualifying Questions Box */
.qualify-box {
  background: var(--color-navy);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
  color: #fff;
}
.qualify-box__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
}
.qualify-box__header svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}
.qualify-box__intro {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-5);
  max-width: none;
}
.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  counter-reset: qualify;
  margin-bottom: var(--space-5);
}
.qualify-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.88);
  max-width: none;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  counter-increment: qualify;
}
.qualify-list li strong {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-1);
}
.qualify-box__note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  max-width: none;
}

/* Contact Form */
.contact-form-wrap { display: flex; flex-direction: column; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.form-label__hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-required { color: var(--color-accent); margin-left: 2px; }

.form-input {
  padding: var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.15);
}
.form-input::placeholder { color: var(--color-text-faint); }

.form-textarea {
  resize: vertical;
  min-height: 200px;
  line-height: 1.65;
}

.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
  max-width: none;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  background: var(--color-surface);
  border: 2px solid var(--color-success);
  border-radius: var(--radius-xl);
}
.form-success__icon {
  font-size: 3rem;
  color: var(--color-success);
  margin-bottom: var(--space-4);
}
.form-success__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}
.form-success__msg {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 45ch;
  margin-inline: auto;
}

/* Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: sticky;
  top: 90px;
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.info-card--accent {
  background: var(--color-navy);
  border-color: transparent;
  color: #fff;
}
.info-card__title {
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-5);
  color: inherit;
}
.info-card--accent .info-card__title { color: var(--color-accent); }

.info-card__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.info-card__steps li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.info-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.info-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.info-card__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  max-width: none;
}
.info-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: none;
}
.info-card p strong { color: var(--color-text); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__image-wrap {
    display: none;
  }
  .hero__content {
    padding-block: clamp(var(--space-16), 10vh, var(--space-20));
    max-width: 720px;
  }
  .why__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image-col { display: none; }
  .contact-section__grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--color-navy);
    padding: var(--space-6);
    gap: var(--space-2);
    z-index: 99;
  }
  .nav.is-open .nav__link {
    font-size: var(--text-base);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
  }
  .hamburger { display: flex; }

  .steps {
    flex-direction: column;
  }
  .step__arrow { display: none; }

  .why__right { grid-template-columns: 1fr; }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__sub { margin-inline: auto; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }

  .qualify-box { padding: var(--space-5); }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .stat__divider { display: none; }
}
