:root {
  --navy-950: #06152f;
  --navy-900: #081d3d;
  --navy-800: #0b2a55;
  --navy-700: #123f78;
  --blue-100: #eaf1f9;
  --orange-700: #d94d0f;
  --orange-600: #ee5e18;
  --orange-500: #f36c21;
  --orange-300: #ffad73;
  --gold-400: #f7ad3a;
  --green-700: #12664b;
  --green-100: #e9f7f1;
  --red-700: #a62929;
  --red-100: #fff0f0;
  --ink: #101827;
  --muted: #5d6878;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-warm: #fff8f3;
  --shadow-sm: 0 8px 24px rgba(6, 21, 47, .08);
  --shadow-md: 0 18px 50px rgba(6, 21, 47, .13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--navy-700); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(243, 108, 33, .45); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -80px;
  z-index: 9999;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--navy-900);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 54px 0; }
.section-soft { background: var(--surface-soft); }
.section-warm { background: var(--surface-warm); }
.section-navy { color: #fff; background: var(--navy-900); }
.section-orange { color: #fff; background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); }
.stack > * + * { margin-top: 1.1rem; }
.stack-sm > * + * { margin-top: .65rem; }
.cluster { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.align-center { align-items: center; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.white-muted { color: rgba(255,255,255,.74); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.section-navy h1, .section-navy h2, .section-navy h3,
.section-orange h1, .section-orange h2, .section-orange h3 { color: #fff; }
h1 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }
.section-navy .lead, .section-orange .lead { color: rgba(255,255,255,.82); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  color: var(--orange-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 99px; background: currentColor; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }

.topbar { color: #fff; background: var(--navy-950); font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--orange-300); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,42,85,.08);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; min-width: 220px; color: var(--navy-900); text-decoration: none; }
.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 8px 20px rgba(6,21,47,.16);
}
.brand-mark svg { width: 38px; }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font-size: 1.22rem; letter-spacing: .12em; }
.brand-copy span { display: block; margin-top: .25rem; font-size: .62rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav .ndoda-menu { display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.site-nav .ndoda-menu li { margin: 0; padding: 0; list-style: none; }
.brand-logo-custom { display: grid; place-items: center; flex: 0 0 auto; }
.brand-logo-custom img { display: block; width: auto; max-width: 78px; max-height: 58px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: .78rem .72rem;
  color: var(--navy-900);
  border-radius: 8px;
  font-size: .91rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange-700); background: var(--surface-warm); }
.site-nav .nav-cta { margin-left: .35rem; padding-inline: 1rem; color: #fff; background: var(--orange-600); }
.site-nav .nav-cta:hover { color: #fff; background: var(--orange-700); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; color: #fff; background: var(--navy-900); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 9px; background: currentColor; transition: transform .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--orange-600); box-shadow: 0 9px 24px rgba(238,94,24,.22); }
.btn-primary:hover { color: #fff; background: var(--orange-700); }
.btn-secondary { color: #fff; background: var(--navy-800); box-shadow: 0 9px 24px rgba(11,42,85,.18); }
.btn-secondary:hover { color: #fff; background: var(--navy-950); }
.btn-outline { color: var(--navy-900); border-color: rgba(11,42,85,.25); background: #fff; }
.btn-outline:hover { color: var(--navy-900); border-color: var(--navy-800); background: var(--blue-100); }
.btn-light { color: var(--navy-900); background: #fff; }
.btn-light:hover { color: var(--navy-900); background: var(--blue-100); }
.btn-sm { min-height: 40px; padding: .6rem .9rem; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 76px;
  background:
    radial-gradient(circle at 80% 18%, rgba(243,108,33,.12), transparent 30%),
    linear-gradient(155deg, #fff 0%, #f7f9fc 55%, #eef3f9 100%);
}
.hero::before { content: ""; position: absolute; inset: auto -8% -30% 45%; height: 60%; border-radius: 50%; background: rgba(11,42,85,.04); transform: rotate(-10deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 48px; }
.hero-copy h1 span { color: var(--orange-600); }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.25rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.3rem; margin-top: 1.5rem; color: var(--navy-800); font-size: .9rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-row span::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--green-700); font-size: .75rem; }

.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}
.hero-orbit { position: absolute; width: 440px; height: 440px; border: 1px dashed rgba(11,42,85,.18); border-radius: 50%; animation: rotate 24s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 6px rgba(243,108,33,.12); }
.hero-orbit::before { top: 32px; left: 88px; }
.hero-orbit::after { right: 26px; bottom: 116px; }
.road-card {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / .92;
  overflow: hidden;
  border: 1px solid rgba(11,42,85,.08);
  border-radius: 36px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow-md);
}
.road-card::before { content: ""; position: absolute; inset: 14% 15% auto; height: 42%; border-radius: 50% 50% 0 0; background: radial-gradient(circle at 50% 100%, #ffbe55 0, #f36c21 34%, transparent 35%); }
.road-path { position: absolute; left: 12%; right: 12%; bottom: -4%; height: 76%; clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%); background: #fff; }
.road-path::before { content: ""; position: absolute; left: 49%; top: 8%; width: 2%; height: 83%; background: repeating-linear-gradient(to bottom, var(--orange-500) 0 18px, transparent 18px 36px); }
.road-side { position: absolute; bottom: 20%; z-index: 2; width: 68px; height: 34px; color: #fff; }
.road-side.scooter { left: 11%; }
.road-side.van { right: 12%; width: 92px; height: 46px; }
.hero-amp { position: absolute; left: 50%; top: 48%; z-index: 3; transform: translate(-50%, -50%); color: var(--orange-500); font-family: Georgia, serif; font-size: 9rem; font-weight: 800; line-height: 1; text-shadow: 0 8px 16px rgba(6,21,47,.32); }
.hero-badge {
  position: absolute;
  right: -12px;
  bottom: 26px;
  z-index: 4;
  width: 185px;
  padding: 1rem;
  color: var(--navy-900);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; font-size: 1.4rem; }
.hero-badge span { display: block; color: var(--muted); font-size: .82rem; }
@keyframes rotate { to { transform: rotate(360deg); } }

.page-hero { position: relative; overflow: hidden; padding: 70px 0; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.page-hero::after { content: ""; position: absolute; width: 450px; height: 450px; right: -110px; top: -210px; border-radius: 50%; border: 65px solid rgba(243,108,33,.18); }
.page-hero h1 { color: #fff; max-width: 850px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; color: rgba(255,255,255,.65); font-size: .85rem; }
.breadcrumbs a { color: #fff; }

.stats-strip { position: relative; z-index: 5; margin-top: -34px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(11,42,85,.08); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.stat { padding: 1.45rem 1.3rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy-900); font-size: 1.25rem; }
.stat span { color: var(--muted); font-size: .84rem; }

.card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid rgba(11,42,85,.09);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 22px rgba(6,21,47,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(243,108,33,.35); box-shadow: var(--shadow-sm); }
.card p:last-child { margin-bottom: 0; }
.icon-badge { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1rem; color: #fff; border-radius: 14px; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.icon-badge.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); }
.icon-badge svg { width: 26px; height: 26px; }
.card-link { display: inline-flex; margin-top: .6rem; color: var(--orange-700); font-weight: 800; text-decoration: none; }
.card-link::after { content: "→"; margin-left: .4rem; transition: transform .15s ease; }
.card-link:hover::after { transform: translateX(3px); }

.split-panel { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-900); box-shadow: var(--shadow-md); }
.split-panel-copy { padding: clamp(2rem, 4vw, 4rem); color: #fff; }
.split-panel-copy h2 { color: #fff; }
.split-panel-copy p { color: rgba(255,255,255,.78); }
.split-panel-art { min-height: 420px; background:
  linear-gradient(160deg, rgba(6,21,47,.05), rgba(6,21,47,.55)),
  radial-gradient(circle at 25% 15%, rgba(243,108,33,.88), transparent 29%),
  linear-gradient(140deg, #f5a35e 0%, #d8e2ef 45%, #7b8ba3 100%);
  position: relative;
}
.split-panel-art::before { content: ""; position: absolute; left: 8%; right: 8%; bottom: 0; height: 70%; clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%); background: rgba(11,42,85,.88); }
.split-panel-art::after { content: ""; position: absolute; left: 49%; bottom: 0; width: 2%; height: 62%; background: repeating-linear-gradient(to bottom, #fff 0 20px, transparent 20px 42px); }

.check-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .75rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 23px; height: 23px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--green-700); font-size: .74rem; font-weight: 900; }
.section-navy .check-list li::before { color: var(--navy-900); background: #fff; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 1.5rem 1.3rem 1.4rem; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step); width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 1rem; color: #fff; border-radius: 50%; background: var(--orange-600); font-weight: 900; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 41px; left: calc(100% - 4px); width: 26px; height: 2px; background: var(--orange-300); }

.vehicle-pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.vehicle-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem .85rem; color: var(--navy-900); border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 750; }
.vehicle-pill svg { width: 24px; height: 24px; color: var(--orange-600); }

.callout { position: relative; padding: clamp(2rem, 5vw, 4.2rem); overflow: hidden; color: #fff; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-md); }
.callout::after { content: "&"; position: absolute; right: 4%; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.06); font-family: Georgia, serif; font-size: 16rem; font-weight: 900; line-height: .7; }
.callout-content { position: relative; z-index: 1; max-width: 760px; }
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.78); }

.logo-cloud { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-placeholder { min-height: 92px; display: grid; place-items: center; padding: 1rem; color: #8b95a3; border: 1px dashed #c8d0da; border-radius: 12px; background: #fff; font-size: .82rem; font-weight: 800; text-align: center; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem .2rem; color: var(--navy-900); font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border-radius: 50%; background: var(--navy-800); }
.faq details[open] summary::after { content: "−"; background: var(--orange-600); }
.faq details > div { padding: 0 .2rem 1.3rem; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy-900); background: var(--blue-100); font-size: .85rem; }
tr:last-child td { border-bottom: 0; }

.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--navy-700); border-radius: 8px; color: var(--navy-900); background: var(--blue-100); }
.notice.warning { border-color: var(--orange-600); background: var(--surface-warm); }
.notice.success { border-color: var(--green-700); background: var(--green-100); }
.notice.danger { border-color: var(--red-700); background: var(--red-100); }
.notice strong { display: block; margin-bottom: .2rem; }

/* Registration and calculator */
.registration-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 28px; }
.form-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.form-shell-header { padding: 1.4rem 1.5rem; color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.form-shell-header h2 { margin: 0; color: #fff; font-size: 1.45rem; }
.form-shell-header p { margin: .35rem 0 0; color: rgba(255,255,255,.75); font-size: .9rem; }
.form-progress { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.progress-item { position: relative; padding: 1rem .5rem; color: #7a8492; border: 0; border-right: 1px solid var(--line); background: transparent; font-size: .72rem; font-weight: 800; text-align: center; }
.progress-item:last-child { border-right: 0; }
.progress-item span { width: 28px; height: 28px; display: grid; place-items: center; margin: 0 auto .35rem; border-radius: 50%; color: #fff; background: #9da7b4; }
.progress-item.is-active { color: var(--navy-900); background: #fff; }
.progress-item.is-active span { background: var(--orange-600); }
.progress-item.is-complete span { background: var(--green-700); }
.form-step { display: none; padding: 1.55rem; }
.form-step.is-active { display: block; }
.form-step h3 { margin-bottom: .25rem; }
.form-step > .muted { margin-bottom: 1.25rem; }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: .38rem; }
.field.full { grid-column: 1 / -1; }
.field label, .fieldset-label { color: var(--navy-900); font-size: .84rem; font-weight: 800; }
.required { color: var(--red-700); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: .72rem .8rem;
  color: var(--ink);
  border: 1px solid #cbd3de;
  border-radius: 9px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(243,108,33,.12); outline: 0; }
.field small { color: var(--muted); font-size: .74rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.choice-card { position: relative; display: block; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card-body { display: block; height: 100%; padding: 1rem; border: 2px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.choice-card-body strong { display: block; color: var(--navy-900); }
.choice-card-body span { display: block; margin-top: .25rem; color: var(--muted); font-size: .78rem; }
.choice-card input:checked + .choice-card-body { border-color: var(--orange-500); background: var(--surface-warm); box-shadow: 0 0 0 3px rgba(243,108,33,.1); }
.choice-card input:focus-visible + .choice-card-body { outline: 3px solid rgba(243,108,33,.35); }
.radio-row, .check-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; }
.radio-row label, .check-row label { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink); font-weight: 650; }

.fleet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.fleet-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: .95rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.fleet-item strong { display: block; color: var(--navy-900); }
.fleet-item small { display: block; color: var(--muted); }
.quantity-control { display: inline-grid; grid-template-columns: 34px 54px 34px; align-items: center; overflow: hidden; border: 1px solid #c8d0da; border-radius: 9px; background: #fff; }
.quantity-control button { width: 34px; height: 38px; border: 0; color: var(--navy-900); background: var(--blue-100); font-size: 1.1rem; font-weight: 900; }
.quantity-control input { width: 54px; height: 38px; padding: 0; border: 0; text-align: center; appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }

.price-summary { position: sticky; top: calc(var(--header-h) + 18px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.price-summary-head { padding: 1.2rem; color: #fff; background: var(--navy-900); }
.price-summary-head h3 { margin: 0; color: #fff; }
.price-summary-body { padding: 1.2rem; }
.price-line { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .88rem; }
.price-line strong { color: var(--navy-900); }
.price-total { display: flex; justify-content: space-between; gap: 1rem; margin-top: .9rem; padding-top: .9rem; color: var(--navy-900); border-top: 2px solid var(--navy-900); font-size: 1.15rem; font-weight: 900; }
.price-total span:last-child { color: var(--orange-700); }
.price-summary-note { margin-top: .8rem; color: var(--muted); font-size: .72rem; }

.vehicle-detail-card { margin-top: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.vehicle-detail-card h4 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; font-size: 1rem; }
.vehicle-detail-card h4 span { color: var(--orange-700); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.upload-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.upload-box { position: relative; min-height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; color: var(--muted); border: 1.5px dashed #aeb8c5; border-radius: 12px; background: var(--surface-soft); text-align: center; }
.upload-box strong { color: var(--navy-900); font-size: .86rem; }
.upload-box small { font-size: .7rem; }
.upload-box input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-box.has-file { border-color: var(--green-700); background: var(--green-100); }
.review-list { margin: 0; padding: 0; list-style: none; }
.review-list li { display: grid; grid-template-columns: 180px 1fr; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.review-list strong { color: var(--navy-900); }
.consent-box { padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.consent-box label { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.consent-box input { margin-top: .3rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; }
.contact-card { padding: 1.2rem; border-radius: 14px; color: #fff; background: var(--navy-900); }
.contact-card h3 { color: #fff; }
.contact-card a { color: #fff; }
.contact-item { display: grid; grid-template-columns: 36px 1fr; gap: .8rem; margin-top: 1rem; }
.contact-item .icon-badge { width: 36px; height: 36px; margin: 0; border-radius: 10px; background: var(--orange-600); }
.map-placeholder { min-height: 280px; display: grid; place-items: center; overflow: hidden; border-radius: 16px; color: var(--navy-900); background:
  linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
  repeating-linear-gradient(45deg, #e3e8ef 0 10px, #edf1f5 10px 20px);
  border: 1px solid var(--line);
  text-align: center;
}

.site-footer { color: #fff; background: var(--navy-950); }
.footer-main { padding: 58px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand .brand-mark { width: 48px; height: 48px; }
.footer-brand strong { font-size: 1.25rem; letter-spacing: .12em; }
.footer-main p, .footer-main li, .footer-main a { color: rgba(255,255,255,.7); }
.footer-main h3 { margin-bottom: 1rem; color: #fff; font-size: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: .55rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.55); font-size: .78rem; }

.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 2000; max-width: 760px; margin-inline: auto; display: none; align-items: center; gap: 1rem; padding: 1rem; color: #fff; border-radius: 14px; background: rgba(6,21,47,.97); box-shadow: var(--shadow-md); }
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: .82rem; }
.cookie-banner .btn { flex: 0 0 auto; }

@media (max-width: 1080px) {
  .site-nav a { padding-inline: .5rem; font-size: .84rem; }
  .brand { min-width: 190px; }
  .brand-copy span { font-size: .55rem; }
  .hero-grid { gap: 30px; }
  .hero-art { min-height: 400px; }
  .road-card { width: 380px; }
  .hero-orbit { width: 390px; height: 390px; }
  .registration-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .topbar .topbar-right { display: none; }
  .site-header { height: var(--header-h); }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 1.05rem; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(38px + var(--header-h) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .ndoda-menu { width: 100%; flex-direction: column; align-items: stretch; }
  .site-nav a { width: 100%; padding: .85rem; }
  .site-nav .nav-cta { margin-left: 0; }
  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-art { min-height: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split-panel { grid-template-columns: 1fr; }
  .split-panel-art { min-height: 320px; order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .registration-layout { grid-template-columns: 1fr; }
  .price-summary { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .section { padding: 64px 0; }
  .section-sm { padding: 42px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-left span:nth-child(2) { display: none; }
  .brand-copy span { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 330px; }
  .road-card { width: 310px; border-radius: 24px; }
  .hero-orbit { width: 320px; height: 320px; }
  .hero-amp { font-size: 6.7rem; }
  .hero-badge { right: 0; width: 160px; }
  .page-hero { padding: 54px 0; }
  .stats-strip { margin-top: -22px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .field-grid, .field-grid.three, .choice-grid, .fleet-grid, .upload-grid { grid-template-columns: 1fr; }
  .form-progress { grid-template-columns: repeat(5, minmax(62px, 1fr)); overflow-x: auto; }
  .progress-item { min-width: 68px; font-size: .62rem; }
  .form-step { padding: 1rem; }
  .review-list li { grid-template-columns: 1fr; gap: .15rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

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

@media print {
  .topbar, .site-header, .site-footer, .cookie-banner, .btn, .form-nav { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 24px 0; }
  .card, .form-shell, .price-summary { box-shadow: none; }
}
