/* ==========================================================================
   CarryBuddies — design system
   Palette lifted from the logo: deep navy + signal orange.
   ========================================================================== */

:root {
  --navy-900: #0b1738;
  --navy-800: #10214f;
  --navy-700: #13275c;
  --navy-600: #1c3576;
  --navy-500: #2b4a97;
  --navy-100: #e8edf8;
  --navy-50:  #f4f7fd;

  --orange-600: #e2620a;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #ffedd9;
  --orange-50:  #fff7ed;

  --ink:       #10214f;
  --body:      #4a5878;
  --muted:     #78859f;
  --line:      #e2e8f4;
  --surface:   #ffffff;
  --canvas:    #f7f9fd;

  --green-500: #16a34a;
  --green-50:  #ecfdf3;
  --red-500:   #dc2626;
  --red-50:    #fef2f2;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(16, 33, 79, .06), 0 1px 3px rgba(16, 33, 79, .04);
  --shadow:    0 4px 12px rgba(16, 33, 79, .07), 0 2px 4px rgba(16, 33, 79, .04);
  --shadow-lg: 0 18px 40px rgba(16, 33, 79, .12), 0 4px 12px rgba(16, 33, 79, .06);
  --shadow-xl: 0 32px 64px rgba(16, 33, 79, .16);

  --wrap: 1160px;
  --nav-h: 76px;

  --sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  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; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 800;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); letter-spacing: -.015em; }
h4 { font-size: 1.06rem; letter-spacing: -.01em; font-weight: 700; }

::selection { background: var(--orange-100); color: var(--navy-800); }

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

/* -------------------------------------------------------------- layout -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 9vw, 118px) 0; }
.section--tight { padding: clamp(56px, 6vw, 80px) 0; }
.section--canvas { background: var(--canvas); }
.section--navy { background: var(--navy-800); color: #c8d3ec; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

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

.center { text-align: center; }
.stack-sm > * + * { margin-top: 10px; }

/* ------------------------------------------------------ section heading -- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .775rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section--navy .eyebrow {
  color: var(--orange-400);
  background: rgba(249, 115, 22, .12);
  border-color: rgba(249, 115, 22, .28);
}

.head { max-width: 640px; margin-bottom: 54px; }
.head.center { margin-inline: auto; }
.head p { font-size: 1.09rem; margin-top: 18px; }
.section--navy .head p { color: #a9b8d8; }

.lede { font-size: 1.15rem; line-height: 1.6; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: -.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px) scale(.985); }

.btn--primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .3);
}
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(249, 115, 22, .38); }

.btn--navy { background: var(--navy-700); color: #fff; box-shadow: 0 8px 20px rgba(19, 39, 92, .24); }
.btn--navy:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn--ghost { background: #fff; color: var(--navy-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--navy-500); color: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--onNavy { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.26); backdrop-filter: blur(8px); }
.btn--onNavy:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); transform: translateY(-2px); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--sm { padding: 10px 19px; font-size: .875rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--orange-600);
  font-size: .95rem;
}
.link-arrow svg { transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------- navbar -- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(16, 33, 79, .05); }

.nav__inner { display: flex; align-items: center; gap: 20px; width: 100%; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 38px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  position: relative;
  font-size: .93rem;
  font-weight: 600;
  color: var(--body);
  padding: 9px 13px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
/* The CTA inside the menu is the single primary action on desktop; it also
   rides along into the mobile drawer. */
.nav__menu .btn { margin-left: 10px; }
.nav__link:hover { color: var(--navy-800); background: var(--navy-50); }
.nav__link.is-active { color: var(--navy-800); font-weight: 700; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--orange-500);
}

.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--navy-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__burger span {
  display: block; position: relative;
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--navy-700);
  transition: background .2s ease;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--navy-700);
  transition: transform .25s ease, top .25s ease;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 110px);
  background:
    radial-gradient(1000px 460px at 82% -8%, var(--orange-50) 0%, transparent 62%),
    radial-gradient(760px 420px at 6% 8%, var(--navy-50) 0%, transparent 60%),
    var(--surface);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange-500); }
.hero__lede { font-size: 1.16rem; max-width: 520px; margin-bottom: 34px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: .885rem; font-weight: 600; color: var(--body);
}
.hero__trust svg { flex-shrink: 0; color: var(--green-500); }

/* hero visual — mock tracking card */
.hero__visual { position: relative; }
.hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 26px;
  position: relative;
  z-index: 2;
}
.hero__card::before {
  content: "";
  position: absolute; inset: -22px -22px auto auto;
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-100) 0%, transparent 68%);
  border-radius: 50%;
  z-index: -1;
}
.trip-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.trip-head__id { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .05em; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.pill--live { background: var(--green-50); color: var(--green-500); }
.pill--live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* "Coming soon" marker for capabilities that are built but not switched on yet. */
.pill--soon { background: var(--orange-50); color: var(--orange-600); }
.is-soon { position: relative; }
.is-soon::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(249, 115, 22, .035) 14px 28px);
  pointer-events: none;
}

.route { display: grid; grid-template-columns: 22px 1fr; gap: 0 16px; }
.route__marks { display: grid; grid-template-rows: repeat(3, 1fr); justify-items: center; padding: 6px 0; }
.route__line { width: 2px; background: linear-gradient(var(--orange-500) 0 50%, var(--line) 50% 100%); grid-row: 1 / -1; grid-column: 1; border-radius: 2px; }

.route__step { display: flex; gap: 16px; padding: 11px 0; }
.route__dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: #fff; border: 2.5px solid var(--line); color: var(--muted);
}
.route__step.is-done .route__dot { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.route__step.is-now  .route__dot { border-color: var(--orange-500); color: var(--orange-500); box-shadow: 0 0 0 4px var(--orange-100); }
.route__label { font-weight: 700; color: var(--ink); font-size: .95rem; }
.route__meta  { font-size: .81rem; color: var(--muted); }

.route__track { position: relative; padding-left: 11px; }
.route__track::before {
  content: ""; position: absolute; left: 10px; top: 22px; bottom: 22px;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--orange-500) 0%, var(--orange-500) 55%, var(--line) 55%, var(--line) 100%);
}
.route__track .route__step { position: relative; padding-left: 0; }
.route__track .route__step .route__dot { margin-left: -11px; position: relative; z-index: 1; }

.hero__otp {
  margin-top: 22px; padding: 16px 18px;
  background: var(--navy-50);
  border: 1px dashed var(--navy-100);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.hero__otp-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.hero__otp-code { display: flex; gap: 7px; margin-top: 6px; }
.hero__otp-code span {
  width: 32px; height: 38px; display: grid; place-items: center;
  background: #fff; border: 1.5px solid var(--navy-100); border-radius: 8px;
  font-weight: 800; color: var(--navy-700); font-size: 1.02rem;
}

.hero__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 13px 17px;
  display: flex; align-items: center; gap: 11px;
  z-index: 3;
}
.hero__float--tl { top: -56px; left: -44px; animation: float 5.5s ease-in-out infinite; }
.hero__float--br { bottom: -26px; right: -26px; animation: float 5.5s ease-in-out infinite .9s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero__float-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hero__float-icon--green { background: var(--green-50); color: var(--green-500); }
.hero__float-icon--orange { background: var(--orange-50); color: var(--orange-500); }
.hero__float-title { font-size: .87rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.hero__float-sub { font-size: .76rem; color: var(--muted); }

/* --------------------------------------------------------------- stats -- */
.stats { border-block: 1px solid var(--line); background: var(--canvas); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }
.stat { text-align: center; }
.stat__num { font-size: clamp(1.85rem, 3.2vw, 2.45rem); font-weight: 800; color: var(--navy-700); letter-spacing: -.03em; line-height: 1.1; }
.stat__num .unit { color: var(--orange-500); }
.stat__label { font-size: .87rem; color: var(--muted); font-weight: 600; margin-top: 5px; }

/* --------------------------------------------------------------- cards -- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card h3 { margin-bottom: 11px; }
.card p { font-size: .96rem; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: var(--navy-50);
  color: var(--navy-600);
}
.icon-badge--orange { background: var(--orange-50); color: var(--orange-500); }
.icon-badge--green  { background: var(--green-50);  color: var(--green-500); }
.icon-badge--navy   { background: var(--navy-700);  color: #fff; }

/* ------------------------------------------------------------ how-steps -- */
.tabs { display: inline-flex; gap: 5px; padding: 5px; background: var(--navy-50); border: 1px solid var(--line); border-radius: 100px; margin-bottom: 46px; }
.tab {
  padding: 11px 26px; border-radius: 100px; border: none; background: transparent;
  font-weight: 700; font-size: .94rem; color: var(--body); cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.tab.is-active { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }

.panel[hidden] { display: none; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy-700); color: #fff;
  font-weight: 800; font-size: 1.06rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(19, 39, 92, .2);
}
.step--orange .step__num { background: var(--orange-500); box-shadow: 0 8px 18px rgba(249, 115, 22, .3); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .96rem; }
.step::after {
  content: "";
  position: absolute; top: 31px; left: 62px; right: -20px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
}
.steps .step:last-child::after { display: none; }

/* ------------------------------------------------------------- feature -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--rev .split__media { order: -1; }

.feature-list { margin-top: 26px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-500);
  margin-top: 2px;
}
.feature-list strong { display: block; color: var(--ink); font-weight: 700; font-size: .99rem; }
.feature-list span { font-size: .93rem; }
.section--navy .feature-list strong { color: #fff; }
.section--navy .feature-list .tick { background: rgba(22, 163, 74, .16); }

/* ------------------------------------------------------------- routes -- */
.route-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--orange-400); }
.route-card__cities { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.route-card__cities svg { color: var(--orange-500); flex-shrink: 0; }
.route-card__meta { font-size: .83rem; color: var(--muted); margin-top: 3px; }
.route-card__price { text-align: right; flex-shrink: 0; }
.route-card__price b { display: block; font-size: 1.12rem; color: var(--navy-700); letter-spacing: -.02em; }
.route-card__price span { font-size: .76rem; color: var(--muted); }

/* --------------------------------------------------------- testimonials -- */
.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote__stars { display: flex; gap: 3px; color: var(--orange-500); }
.quote p { font-size: 1rem; color: var(--ink); line-height: 1.6; flex-grow: 1; }
.quote__who { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--navy-700); color: #fff; font-weight: 800; font-size: .95rem;
}
.quote__name { font-weight: 700; color: var(--ink); font-size: .94rem; line-height: 1.3; }
.quote__role { font-size: .82rem; color: var(--muted); }

/* ----------------------------------------------------------------- FAQ -- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq__item[open] { border-color: var(--navy-100); box-shadow: var(--shadow); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--ink); font-size: 1.01rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .chev { flex-shrink: 0; color: var(--muted); transition: transform .25s ease, color .25s ease; }
.faq__item[open] .faq__q .chev { transform: rotate(180deg); color: var(--orange-500); }
.faq__a { padding: 0 24px 22px; font-size: .97rem; }
.faq__a p + p { margin-top: 12px; }

/* ----------------------------------------------------------------- CTA -- */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 45%, var(--navy-600) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(46px, 6vw, 76px) clamp(28px, 5vw, 68px);
  overflow: hidden;
  text-align: center;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta::before { width: 340px; height: 340px; top: -140px; right: -90px; background: radial-gradient(circle, rgba(249,115,22,.28) 0%, transparent 66%); }
.cta::after  { width: 300px; height: 300px; bottom: -150px; left: -80px; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 66%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: #b9c6e4; font-size: 1.09rem; max-width: 560px; margin: 0 auto 32px; }

/* -------------------------------------------------------------- footer -- */
.footer { background: var(--navy-900); color: #93a3c4; padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 40px; padding-bottom: 52px; }
.footer__logo { background: #fff; padding: 12px 16px; border-radius: 14px; display: inline-block; margin-bottom: 20px; }
.footer__logo img { height: 38px; width: auto; }
.footer__about { font-size: .93rem; max-width: 320px; line-height: 1.68; }
.footer h4 { color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; font-weight: 800; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .92rem; transition: color .18s ease, padding-left .18s ease; }
.footer__links a:hover { color: var(--orange-400); padding-left: 4px; }

.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #b8c5e0;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.footer__social a:hover { background: var(--orange-500); color: #fff; transform: translateY(-2px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  font-size: .87rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bottom a:hover { color: var(--orange-400); }

.footer__note {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .84rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #8c9cbe;
}

/* -------------------------------------------------------- page headers -- */
.pagehead {
  background:
    radial-gradient(760px 320px at 80% 0%, var(--orange-50) 0%, transparent 62%),
    var(--canvas);
  border-bottom: 1px solid var(--line);
  padding: clamp(52px, 6vw, 82px) 0;
}
.pagehead h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-bottom: 16px; }
.pagehead p { font-size: 1.09rem; max-width: 640px; }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: var(--orange-600); }

/* --------------------------------------------------------- legal pages -- */
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 26px); }
.legal-toc h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.legal-toc ul { display: grid; gap: 3px; border-left: 2px solid var(--line); }
.legal-toc a {
  display: block; padding: 7px 14px; font-size: .89rem; font-weight: 600;
  color: var(--body); margin-left: -2px; border-left: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.legal-toc a:hover, .legal-toc a.is-active { color: var(--orange-600); border-left-color: var(--orange-500); }

.prose { max-width: 760px; }
.prose h2 { font-size: 1.55rem; margin: 46px 0 16px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.13rem; margin: 28px 0 11px; }
.prose p { margin-bottom: 16px; font-size: 1rem; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 4px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 1rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500);
}
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 32px; counter-increment: n; font-size: 1rem; }
.prose ol li::before {
  content: counter(n);
  position: absolute; left: 0; top: .1em;
  width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center;
  background: var(--navy-50); color: var(--navy-700);
  font-size: .76rem; font-weight: 800;
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--orange-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.callout {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  border: 1px solid var(--navy-100);
  background: var(--navy-50);
  font-size: .95rem;
}
.callout strong { display: block; margin-bottom: 5px; color: var(--ink); }
.callout--warn { background: var(--red-50); border-color: #fecaca; }
.callout--warn strong { color: #991b1b; }
.callout--ok { background: var(--green-50); border-color: #bbf7d0; }

.updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  background: #fff; border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 100px;
}

/* -------------------------------------------------- prohibited grid -- */
.ban-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ban {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 17px 19px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.ban__mark {
  width: 27px; height: 27px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-50); color: var(--red-500);
  font-weight: 800; font-size: .9rem;
}
.ban--ok .ban__mark { background: var(--green-50); color: var(--green-500); }
.ban b { display: block; color: var(--ink); font-size: .95rem; font-weight: 700; line-height: 1.35; }
.ban span { font-size: .84rem; color: var(--muted); }

/* ------------------------------------------------------------- pricing -- */
.calc {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .87rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
/* Every text-like control in a .field shares one look. Written as an
   exclusion list rather than a list of types, so a new input type (tel, url,
   date, search…) is styled without having to remember to add it here.
   Range sliders live in .field too, hence the exclusions. */
.field select,
.field textarea,
.field input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="file"]) {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; font-size: .96rem; color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-400);
  box-shadow: 0 0 0 4px var(--orange-50);
}
.field textarea { resize: vertical; min-height: 130px; }
.field__hint { font-size: .81rem; color: var(--muted); margin-top: 6px; }

.field__error { font-size: .82rem; font-weight: 600; color: var(--red-500); margin-top: 6px; }
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid { border-color: var(--red-500); }
.field input.is-invalid:focus,
.field textarea.is-invalid:focus { box-shadow: 0 0 0 4px var(--red-50); }

/* Honeypot — off-screen rather than display:none, since some bots skip
   display:none fields. Never focusable, never announced. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading::after {
  content: "";
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.range { width: 100%; accent-color: var(--orange-500); height: 6px; }

.calc__out {
  margin-top: 26px; padding: 22px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius);
  color: #c3d0ea;
}
.calc__out-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; opacity: .8; }
.calc__out-val { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.15; margin: 4px 0 2px; }
.calc__out-sub { font-size: .86rem; }
.calc__rows { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); display: grid; gap: 9px; font-size: .89rem; }
.calc__row { display: flex; justify-content: space-between; }
.calc__row b { color: #fff; font-weight: 700; }

/* ---------------------------------------------------------- fee table -- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
thead th {
  text-align: left; font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); padding: 15px 20px; background: var(--canvas); border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tbody td { padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: .95rem; }
tbody tr:last-child td { border-bottom: none; }
tbody td:first-child { font-weight: 700; color: var(--ink); }

/* --------------------------------------------------------- animations -- */
/* Content is visible by default. It is only hidden for the animation when JS is
   actually running (the `js` class is set by an inline script in <head>), so a
   script failure or a no-JS browser can never leave the page blank. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------- responsive -- */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { max-width: 500px; margin-inline: auto; }
  .hero__float--tl { left: -14px; }
  .hero__float--br { right: -10px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
  .legal-toc ul { display: flex; flex-wrap: wrap; border-left: none; border-top: 2px solid var(--line); padding-top: 10px; }
  .legal-toc a { border-left: none; border-top: 2px solid transparent; margin-top: -12px; }
  .legal-toc a:hover, .legal-toc a.is-active { border-left-color: transparent; border-top-color: var(--orange-500); }
}

/* Nav collapses earlier than the content grids — the full link row plus the
   logo needs ~1000px to sit on one line. */
@media (max-width: 1050px) {
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 14px; font-size: 1rem; border-radius: 12px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--navy-50); }
  .nav__menu .btn { margin: 12px 0 0; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__cta { order: 2; margin-left: auto; }
}

@media (max-width: 900px) {
  .grid-3, .grid-4, .steps, .ban-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .step::after { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .steps, .ban-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .btn-row .btn { width: 100%; }
  .hero__float { display: none; }
  .route-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .route-card__price { text-align: left; }
  .tabs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; border-radius: var(--radius); }
  .tab { border-radius: 12px; padding: 12px 10px; font-size: .89rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta { border-radius: var(--radius-lg); }
}
