/* ═══════════════════════════════════════════════
   DISPATCH LOGISTICS — Shared Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --navy:    #0a1628;
  --navy-mid:#142240;
  --navy-light:#1e3460;
  --orange:  #f47c20;
  --orange-dark:#d96a10;
  --white:   #ffffff;
  --bg:      #f5f6f8;
  --card:    #ffffff;
  --ink:     #1a2540;
  --muted:   #3d4e66;
  --line:    #e3e8ee;
  --success: #1fba59;
  --radius:  3px;
  --maxw:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────── */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--orange);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 0; text-decoration: none; }
.nav-logo-main {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 1.35rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); line-height: 1;
}
.nav-logo-main span { color: var(--orange); }
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.2em; color: #9aa3b0; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #9aa3b0; text-decoration: none; padding: 0.4rem 0.75rem;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn-nav-primary {
  background: var(--orange); color: var(--white) !important;
  border-radius: var(--radius); padding: 0.4rem 0.9rem !important;
  transition: background 0.2s !important;
}
.nav-links .btn-nav-primary:hover { background: var(--orange-dark) !important; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 0.25rem;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: 0.2s;
}
.nav-mobile { display: none; }
.nav-mobile.open {
  display: flex; flex-direction: column;
  background: var(--navy-mid); padding: 1rem 1.5rem 1.5rem;
  border-bottom: 3px solid var(--orange);
}
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #9aa3b0; text-decoration: none; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem 1.75rem;
  border-radius: var(--radius); transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem 1.75rem;
  border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, transform 0.15s; cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.65); transform: translateY(-1px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #25d366;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem 1.25rem;
  border-radius: var(--radius); border: 2px solid #25d366;
  transition: background 0.2s, color 0.2s, transform 0.15s; cursor: pointer;
}
.btn-whatsapp:hover { background: #25d366; color: var(--white); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; padding: 0.75rem 1.25rem;
  border-radius: var(--radius); border: 2px solid var(--line);
  transition: border-color 0.2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--navy); }

/* ── SECTION BASE ────────────────────────── */
section { padding: 4rem 1.5rem; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-header { margin-bottom: 2.5rem; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.section-eyebrow-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.section-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem); line-height: 1;
  text-transform: uppercase; color: var(--navy);
}
.section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-top: 0.75rem; max-width: 520px; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #162d50 60%, #0f2040 100%);
  position: relative; overflow: hidden;
  padding: 4.5rem 1.5rem 4rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.04) 80px, rgba(255,255,255,0.04) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.04) 80px, rgba(255,255,255,0.04) 81px);
  pointer-events: none;
}
.hero::after {
  content: 'DISPATCH'; position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(6rem, 16vw, 14rem); color: rgba(255,255,255,0.06);
  text-transform: uppercase; letter-spacing: -0.02em;
  pointer-events: none; white-space: nowrap;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero-eyebrow-line { width: 28px; height: 3px; background: var(--orange); flex-shrink: 0; }
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7.5rem); line-height: 0.9;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--orange); }
.hero-sub { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 540px; margin-bottom: 0.75rem; font-weight: 500; }
.hero-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ── HOW IT WORKS ────────────────────────── */
.how-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.step {
  padding: 2rem 1.75rem; border-left: 1px solid var(--line);
  position: relative; transition: background 0.2s;
}
.step:first-child { border-left: none; }
.step:hover { background: var(--white); }
.step-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.2s; }
.step:hover .step-bar { background: var(--orange); }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; color: var(--orange); line-height: 1; margin-bottom: 0.5rem; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.2; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── SPLIT (CLIENT / CARRIER) ────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; border-top: 4px solid var(--line); }
.split-panel { padding: 4rem 3rem; position: relative; overflow: hidden; }
.split-panel-dark { background: var(--navy); }
.split-panel-dark .section-title { color: var(--white); }
.split-panel-dark .section-sub { color: rgba(255,255,255,0.78); }
.split-panel-light { background: var(--bg); }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 1.75rem; }
.tag {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 2px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}
.tag-light { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.carrier-note {
  margin-top: 1rem; padding: 1rem 1.25rem;
  border-left: 3px solid var(--orange); background: rgba(244,124,32,0.08);
  font-size: 0.82rem; color: var(--muted); line-height: 1.6;
}

/* ── VEHICLE CARDS ───────────────────────── */
.vehicle-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.vehicle-card {
  background: var(--white); padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  transition: background 0.2s; cursor: default;
}
.vehicle-card:hover { background: var(--navy); }
.vehicle-icon { font-size: 1.75rem; line-height: 1; transition: transform 0.2s; }
.vehicle-card:hover .vehicle-icon { transform: scale(1.15); }
.vehicle-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--navy); text-align: center; transition: color 0.2s;
}
.vehicle-card:hover .vehicle-label { color: var(--white); }

/* ── LOAD TYPES ──────────────────────────── */
.loads-section { background: var(--bg); }
.load-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem;
}
.load-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.load-card:hover { border-color: var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.load-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.load-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); }

/* ── COVERAGE ────────────────────────────── */
.coverage-section { background: var(--white); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.area-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.area-chip {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 2px;
  background: var(--bg); color: var(--navy); border: 1px solid var(--line);
}
.area-chip.primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.wa-card {
  background: var(--navy); border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.wa-icon { font-size: 2rem; }
.wa-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.wa-desc { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.6; }
.wa-number { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; color: #25d366; letter-spacing: 0.05em; }

/* ── FINAL CTA BAND ──────────────────────── */
.final-cta { background: var(--navy); padding: 4rem 1.5rem; text-align: center; }
.final-cta h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem,5vw,3.25rem); text-transform: uppercase; color: var(--white); margin-bottom: 0.75rem; }
.final-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.78); margin-bottom: 2rem; }
.final-cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ── FOOTER ──────────────────────────────── */
footer { background: var(--navy-mid); padding: 3.5rem 1.5rem 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-main { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 0.2rem; }
.footer-logo-main span { color: var(--orange); }
.footer-slogan { font-size: 0.78rem; color: #5a6a84; letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact p, .footer-contact a { font-size: 0.84rem; color: #7a8ca6; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: #5a6a84; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.84rem; color: #7a8ca6; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.75rem; color: #3a4a60; }
.footer-bottom-wa { font-size: 0.75rem; color: #3a4a60; text-decoration: none; transition: color 0.2s; }
.footer-bottom-wa:hover { color: #25d366; }

/* ── PAGE HEADER (form pages) ────────────── */
.page-header { background: var(--navy); padding: 3rem 1.5rem 2.5rem; }
.page-header-inner { max-width: 800px; margin: 0 auto; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.page-eyebrow-line { width: 24px; height: 3px; background: var(--orange); }
.page-eyebrow span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
.page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem,6vw,3.5rem); text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 0.75rem; }
.page-desc { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.7; max-width: 540px; }

/* ── PROGRESS BAR ────────────────────────── */
.progress-bar { background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 1.5rem; overflow-x: auto; }
.progress-inner { max-width: 800px; margin: 0 auto; display: flex; gap: 0; }
.progress-step {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1rem 0.9rem 0; white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #4a5a70; transition: color 0.2s; flex-shrink: 0;
}
.progress-step + .progress-step { border-left: 1px solid rgba(255,255,255,0.07); padding-left: 1rem; }
.progress-step.active { color: var(--orange); }
.progress-step.done { color: #3a8a55; }
.progress-num {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}
.progress-step.done .progress-num { background: #3a8a55; color: var(--white); border-color: #3a8a55; }
.progress-step.active .progress-num { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ── FORM LAYOUT ─────────────────────────── */
.form-wrap { max-width: 800px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.form-section { display: none; }
.form-section.active { display: block; }
.section-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 1.5rem; }
.section-card-header { background: var(--navy); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.section-card-icon { font-size: 1.1rem; }
.section-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.section-card-body { padding: 1.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
.section-card-body.single { grid-template-columns: 1fr; }

/* Form fields */
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.req { color: var(--orange); }
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.65rem 0.85rem; font-size: 0.9rem; font-family: 'Barlow', sans-serif;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none;
}
.field input:not([type="checkbox"]):not([type="radio"]):focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,124,32,0.12);
}
.field input[type="file"] {
  padding: 0.5rem 0.85rem; font-size: 0.85rem; cursor: pointer;
}
.field textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.field-helper { font-size: 0.77rem; color: var(--muted); line-height: 1.5; }
.field-error { font-size: 0.77rem; color: #d04040; display: none; }
.field.has-error input:not([type="checkbox"]):not([type="radio"]), .field.has-error select, .field.has-error textarea { border-color: #d04040; }
.field.has-error .field-error { display: block; }
.field.has-error .radio-group { outline: 2px solid #d04040; border-radius: 4px; padding: 0.35rem; }

/* Radio / checkbox groups */
.radio-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-option { display: flex; align-items: center; gap: 0.4rem; }
.radio-option input[type="radio"], .radio-option input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0;
}
.radio-option label { font-size: 0.85rem; color: var(--ink); cursor: pointer; font-weight: 500; user-select: none; }

.checkbox-wrap { display: flex; align-items: flex-start; gap: 0.65rem; margin-top: 0.5rem; }
.checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.checkbox-wrap label { font-size: 0.85rem; color: var(--ink); line-height: 1.6; cursor: pointer; }

/* Form nav */
.form-nav { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; gap: 0.75rem; }
.step-counter { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.btn-next {
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s; margin-left: auto;
}
.btn-next:hover { background: var(--orange-dark); }
.btn-back {
  background: transparent; color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-submit {
  background: var(--orange); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.2s; margin-left: auto; display: flex; align-items: center; gap: 0.5rem;
}
.btn-submit:hover { background: var(--orange-dark); }
.btn-submit:disabled { background: #9aa3b0; cursor: not-allowed; }

/* Sending state */
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Error banner */
.error-banner {
  display: none; background: #fff2f2; border: 1px solid #f5b0b0;
  border-radius: var(--radius); padding: 0.85rem 1.25rem;
  font-size: 0.85rem; color: #9a2020; line-height: 1.6; margin-bottom: 1rem;
}

/* Success screen */
.success-screen { display: none; text-align: center; padding: 4rem 1rem; }
.success-screen.active { display: block; }
.success-icon {
  width: 60px; height: 60px; background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white); margin: 0 auto 1.5rem; font-weight: 700;
}
.success-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; }
.success-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 1rem; }
.success-ref { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 2rem; }
.success-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Declaration box (carrier) */
.declaration-box { padding: 1rem 1.25rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; }
.declaration-box .decl-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.declaration-box ol { font-size: 0.83rem; color: var(--muted); line-height: 1.9; padding-left: 1.25rem; }
.doc-note { padding: 1rem 1.25rem; background: rgba(244,124,32,0.05); border: 1px solid rgba(244,124,32,0.15); border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── TERMS PAGE ──────────────────────────── */
.terms-body { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.terms-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin: 2rem 0 0.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.terms-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.terms-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.75rem; }
.terms-body ul { font-size: 0.9rem; color: var(--muted); line-height: 1.8; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.terms-body li { margin-bottom: 0.3rem; }
.terms-effective { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 3rem 1.5rem; }
  .coverage-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  section { padding: 3rem 1.25rem; }
  .form-wrap { padding: 1.5rem 1rem 4rem; }
  .section-card-body { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .btn-primary, .btn-secondary, .btn-whatsapp { font-size: 0.82rem; padding: 0.8rem 1.25rem; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn-primary, .final-cta-btns .btn-whatsapp { width: 100%; max-width: 320px; justify-content: center; }
  .progress-step .progress-label { display: none; }
  .form-nav { flex-wrap: wrap; }
}
