: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; }
}

/* ========================================================================== 
   NDODA Connect 2.0 — premium visual system
   ========================================================================== */
:root {
  --navy-950: #06152f;
  --navy-900: #081d3d;
  --navy-850: #0a244a;
  --navy-800: #0b2f5f;
  --navy-700: #14477f;
  --orange-700: #d94d0f;
  --orange-600: #ee5e18;
  --orange-500: #ff6b1a;
  --surface-soft: #f6f8fb;
  --line: #dce3eb;
  --ink: #111827;
  --muted: #5c6677;
  --shadow-sm: 0 10px 30px rgba(6,21,47,.07);
  --shadow-md: 0 24px 70px rgba(6,21,47,.15);
  --radius-md: 20px;
  --radius-lg: 30px;
  --max: 1320px;
  --header-h: 102px;
}

body {
  font-family: "Inter", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -.006em;
  background: #fff;
}
h1, h2, h3, h4, h5, h6,
.btn, .site-nav a, .eyebrow, .stat strong, .footer-main h3 {
  font-family: "Manrope", "Inter", Aptos, "Segoe UI", Arial, sans-serif;
}
h1, h2, h3, h4 { letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5.3vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); line-height: 1.08; }
h3 { font-size: clamp(1.12rem, 1.75vw, 1.42rem); line-height: 1.22; }
p { line-height: 1.72; }
.lead { line-height: 1.65; }
.container { width: min(calc(100% - 3rem), var(--max)); }
.narrow { width: min(calc(100% - 3rem), 880px); }
.section { padding: 96px 0; }
.section-sm { padding: 62px 0; }
.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.center { max-width: 900px; }
.grid-2 { gap: clamp(30px, 4vw, 56px); }
.grid-3 { gap: 28px; }
.grid-4 { gap: 24px; }

/* Top strip + one-line desktop navigation */
.topbar { background: #071a35; font-size: .78rem; }
.topbar-inner { min-height: 36px; }
.topbar-left, .topbar-right { gap: 1.1rem; }
.topbar-location { font-weight: 700; }
.topbar-location::before { content: "●"; margin-right: .45rem; color: var(--orange-500); font-size: .6rem; vertical-align: .12em; }
.topbar-tagline { color: rgba(255,255,255,.72); font-style: italic; letter-spacing: .02em; }
.site-header {
  height: var(--header-h);
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(8,29,61,.08);
  box-shadow: 0 4px 18px rgba(6,21,47,.035);
}
.header-inner { gap: 1rem; }
.brand { min-width: 236px; width: 236px; flex: 0 0 236px; }
.ndoda-default-logo,
.brand-logo-custom img,
.ndoda-custom-logo {
  display: block;
  width: auto;
  max-width: 236px;
  max-height: 88px;
  object-fit: contain;
}
.brand-logo-custom { width: 236px; justify-content: flex-start; }
.site-nav { margin-left: auto; gap: .35rem; min-width: 0; }
.site-nav .ndoda-menu { gap: .08rem; flex-wrap: nowrap; }
.site-nav .ndoda-menu li { flex: 0 0 auto; }
.site-nav a {
  white-space: nowrap;
  padding: .72rem .56rem;
  border-radius: 7px;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: -.015em;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: transparent; color: var(--orange-700); }
.site-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--orange-500); border-radius: 0; }
.site-nav .nav-cta {
  margin-left: .55rem;
  padding: .82rem 1.08rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff741f, var(--orange-600));
  box-shadow: 0 10px 24px rgba(238,94,24,.2);
}
.site-nav .nav-cta:hover { color:#fff; background: var(--orange-700); box-shadow: 0 12px 28px rgba(217,77,15,.25); }

/* Refined controls */
.btn { min-height: 50px; padding: .86rem 1.3rem; border-radius: 10px; font-size: .94rem; letter-spacing: -.01em; }
.btn-primary { background: linear-gradient(135deg, #ff741f, var(--orange-600)); }
.btn-outline { border-color: rgba(8,29,61,.20); }

/* Home hero uses a clean AI-generated transport visual, not embedded text. */
.hero {
  padding: 82px 0 92px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,107,26,.11), transparent 29%),
    linear-gradient(150deg, #ffffff 0%, #f7f9fc 58%, #edf3f9 100%);
}
.hero::before { inset: auto -12% -42% 36%; height: 76%; background: rgba(9,43,84,.035); }
.hero-grid { grid-template-columns: minmax(0,.91fr) minmax(520px,1.09fr); gap: clamp(44px, 5vw, 78px); }
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 680px; font-size: clamp(1.05rem,1.5vw,1.2rem); }
.hero-actions { margin: 2rem 0 1.25rem; }
.trust-row { gap: .65rem 1.1rem; color: #294766; font-size: .84rem; }
.trust-row span::before { background: var(--navy-800); }
.hero-art {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(8,29,61,.08);
  border-radius: 30px;
  background: url('../images/ndoda-hero-logistics.webp') center center / cover no-repeat;
  box-shadow: 0 32px 80px rgba(6,21,47,.20);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,21,47,0) 45%, rgba(6,21,47,.35) 100%);
  pointer-events: none;
}
.hero-art::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #ff8a32, var(--orange-600));
}
.hero-orbit, .road-card { display: none !important; }
.hero-badge {
  left: 24px;
  right: auto;
  bottom: 24px;
  z-index: 3;
  width: min(245px, calc(100% - 48px));
  padding: 1rem 1.1rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(6,21,47,.82);
  box-shadow: 0 14px 34px rgba(6,21,47,.24);
  backdrop-filter: blur(12px);
}
.hero-badge strong { color:#fff; font-family:"Manrope",sans-serif; }
.hero-badge span { color: rgba(255,255,255,.78); }
.stats-strip { margin-top: -42px; }
.stats { border-radius: 18px; box-shadow: 0 18px 45px rgba(6,21,47,.09); }
.stat { padding: 1.5rem 1.45rem; }

/* Inner-page heroes */
.page-hero {
  isolation: isolate;
  min-height: 335px;
  display: flex;
  align-items: center;
  padding: 76px 0;
  background: #071b37;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/ndoda-hero-logistics.webp') center 52% / cover no-repeat;
  opacity: .38;
  transform: scale(1.01);
}
.page-hero::after {
  width: auto;
  height: auto;
  inset: 0;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(6,21,47,.96) 0%, rgba(6,21,47,.87) 48%, rgba(6,21,47,.46) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; margin-bottom: .45em; font-size: clamp(2.5rem, 4.5vw, 4.35rem); }
.page-hero p { max-width: 790px; font-size: clamp(1rem,1.4vw,1.15rem); }
.breadcrumbs { margin-bottom: 1.1rem; font-size: .79rem; font-weight: 600; }

/* Cards + content rhythm */
.card {
  padding: 1.8rem;
  border-color: rgba(8,29,61,.075);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(6,21,47,.045);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(6,21,47,.085); }
.icon-badge { width: 52px; height: 52px; border-radius: 13px; box-shadow: 0 8px 20px rgba(8,29,61,.12); }
.section-soft { background: #f6f8fb; }
.section-warm { background: linear-gradient(180deg,#fffaf6 0%,#fff7f0 100%); }

/* AI imagery integrated into editorial sections */
.split-panel { grid-template-columns: 1fr 1fr; border-radius: 28px; box-shadow: 0 30px 70px rgba(6,21,47,.16); }
.split-panel-copy { padding: clamp(2.4rem,4.5vw,4.7rem); }
.split-panel-art {
  min-height: 470px;
  background:
    linear-gradient(180deg, rgba(6,21,47,.02), rgba(6,21,47,.20)),
    url('../images/ndoda-driver-member.webp') center center / cover no-repeat;
}
.split-panel-art::before, .split-panel-art::after { display:none; }
.ndoda-page-about .map-placeholder {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(6,21,47,.03), rgba(6,21,47,.2)),
    url('../images/ndoda-logistics-network.webp') center center / cover no-repeat;
  border: 0;
  box-shadow: var(--shadow-sm);
}
.ndoda-page-about .map-placeholder > * { display: none; }

/* Distinct photography emphasis by page */
.ndoda-page-membership .page-hero::before,
.ndoda-page-register .page-hero::before { background-image: url('../images/ndoda-owner-driver.webp'); background-position:center 42%; opacity:.32; }
.ndoda-page-benefits .page-hero::before,
.ndoda-page-training .page-hero::before { background-image: url('../images/ndoda-driver-member.webp'); background-position:center 38%; opacity:.32; }
.ndoda-page-opportunities .page-hero::before,
.ndoda-page-partners .page-hero::before { background-image: url('../images/ndoda-logistics-network.webp'); background-position:center 48%; opacity:.34; }

/* Tables, FAQs, notices */
.table-wrap { border-radius: 16px; box-shadow: 0 8px 25px rgba(6,21,47,.04); }
th, td { padding: 1rem 1.05rem; }
.faq summary { padding: 1.35rem .2rem; }
.notice { border-radius: 10px; }

/* Registration — give every step room to breathe. */
.ndoda-page-register .section { padding-top: 70px; }
.ndoda-page-register .section > .container { width: min(calc(100% - 3rem), 1360px); }
.ndoda-registration,
.ndoda-contact-form-wrap { font-family: "Inter", Aptos, "Segoe UI", Arial, sans-serif !important; }
.ndoda-registration-layout { grid-template-columns: minmax(0,1fr) 360px !important; gap: 36px !important; }
.ndoda-form-shell,
.ndoda-contact-form,
.ndoda-success-panel { border-radius: 22px !important; border-color: rgba(8,29,61,.085) !important; box-shadow: 0 18px 50px rgba(6,21,47,.08) !important; }
.ndoda-form-heading { padding: 1.8rem 2rem !important; background: linear-gradient(135deg,#071b37,#123f78) !important; }
.ndoda-form-heading h2 { font-family:"Manrope",sans-serif !important; letter-spacing:-.03em; }
.ndoda-form-step { padding: 2rem !important; }
.ndoda-field-grid { gap: 1.15rem 1.25rem !important; }
.ndoda-field input,
.ndoda-field select,
.ndoda-field textarea { min-height: 49px !important; border-radius: 10px !important; }
.ndoda-choice-card > span { padding: 1.15rem !important; border-radius: 14px !important; }
.ndoda-fleet-item { padding: 1.05rem !important; border-radius: 13px !important; }
.ndoda-price-card { top: calc(var(--header-h) + 24px) !important; border-radius: 20px !important; box-shadow: 0 18px 45px rgba(6,21,47,.085) !important; }
.ndoda-price-head { padding: 1.35rem !important; }
.ndoda-price-body { padding: 1.35rem !important; }
.ndoda-upload { min-height: 138px !important; border-radius: 13px !important; }
.ndoda-btn { font-family:"Manrope",sans-serif !important; border-radius:10px !important; }

/* Contact page — balanced columns and clean form alignment. */
.contact-grid { grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: clamp(34px,4vw,58px); align-items: start; }
.contact-card { padding: 2rem; border-radius: 20px; background: linear-gradient(145deg,#071b37,#0b3566); box-shadow: 0 20px 48px rgba(6,21,47,.14); }
.contact-card h2, .contact-card h3 { color:#fff; }
.contact-item { grid-template-columns: 42px 1fr; gap: .9rem; margin-top: 1.25rem; }
.contact-item .icon-badge { width:42px; height:42px; }
.ndoda-contact-form { padding: 2rem !important; }
.ndoda-contact-form .ndoda-field-grid { margin-top: 1.45rem !important; }
.ndoda-contact-form .ndoda-btn { margin-top: 1rem; min-width: 170px; }
.ndoda-page-contact .map-placeholder {
  min-height: 250px;
  margin-top: 1.25rem !important;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6,21,47,.89), rgba(11,63,120,.70)),
    url('../images/ndoda-logistics-network.webp') center / cover no-repeat;
  border:0;
  box-shadow: var(--shadow-sm);
}
.ndoda-page-contact .map-placeholder .muted { color:rgba(255,255,255,.74); }

/* Callouts */
.callout { border-radius: 26px; background: linear-gradient(135deg,#071b37,#0c3e75); box-shadow: 0 28px 68px rgba(6,21,47,.15); }
.callout::after { color: rgba(255,255,255,.05); }

/* Footer */
.site-footer { background: #06152f; }
.footer-main { padding: 68px 0 42px; }
.footer-grid { grid-template-columns: 1.35fr .7fr .82fr 1fr; gap: clamp(28px,4vw,52px); }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  width: 245px;
  max-width: 100%;
  margin-bottom: 1.25rem;
  padding: .65rem .8rem;
  border-radius: 14px;
  background: #fff;
}
.footer-logo-wrap img { display:block; width:100%; height:auto; }
.footer-intro p { max-width: 440px; }
.footer-tagline { color:#fff !important; }
.footer-register { display:inline-flex; align-items:center; gap:.5rem; margin-top:1rem; color:#fff !important; font-weight:800; text-decoration:none; }
.footer-register span { color:var(--orange-500); }
.footer-bottom { padding: 1.15rem 0; }
.footer-bottom a { color:rgba(255,255,255,.72); }

/* Desktop-to-tablet transition: switch to the hamburger before labels can wrap. */
@media (max-width: 1220px) {
  :root { --header-h: 88px; }
  .brand { min-width: 218px; width:218px; flex-basis:218px; }
  .ndoda-default-logo, .brand-logo-custom img, .ndoda-custom-logo { max-width:218px; max-height:78px; }
  .menu-toggle { display:block; flex:0 0 auto; }
  .site-nav {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    top: calc(36px + var(--header-h) + 10px);
    z-index: 1100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 150px);
    overflow:auto;
    margin:0;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:#fff;
    box-shadow:0 24px 60px rgba(6,21,47,.18);
  }
  .site-nav.is-open { display:flex; }
  .site-nav .ndoda-menu { width:100%; flex-direction:column; align-items:stretch; }
  .site-nav .ndoda-menu li { width:100%; }
  .site-nav a { width:100%; padding:.8rem .9rem; font-size:.9rem; }
  .site-nav a[aria-current="page"] { box-shadow:none; border-radius:8px; background:var(--surface-warm); }
  .site-nav .nav-cta { margin:.4rem 0 0; justify-content:center; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(430px,.95fr); gap: 36px; }
  .hero-art { min-height: 440px; }
}

@media (max-width: 960px) {
  .topbar-right { display:none; }
  .hero { padding:66px 0 78px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:780px; text-align:left; }
  .hero-actions, .trust-row { justify-content:flex-start; }
  .hero-art { min-height: 480px; }
  .grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .grid-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .split-panel { grid-template-columns:1fr; }
  .split-panel-art { min-height:390px; order:-1; }
  .contact-grid { grid-template-columns:1fr; }
  .ndoda-registration-layout { grid-template-columns:1fr !important; }
  .ndoda-price-card { position:static !important; }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  :root { --header-h: 78px; }
  .container, .narrow { width:min(calc(100% - 1.25rem),var(--max)); }
  .section { padding:70px 0; }
  .topbar-inner { min-height:34px; justify-content:center; }
  .topbar-left { justify-content:center; gap:.75rem; }
  .topbar-location { display:none; }
  .site-header { height:var(--header-h); }
  .brand { width:168px; min-width:168px; flex-basis:168px; }
  .ndoda-default-logo, .brand-logo-custom img, .ndoda-custom-logo { max-width:168px; max-height:68px; }
  .site-nav { left:.65rem; right:.65rem; top:calc(34px + var(--header-h) + 7px); }
  .hero { padding:48px 0 62px; }
  .hero-art { min-height:330px; border-radius:22px; }
  .hero-badge { left:16px; bottom:16px; width:min(220px,calc(100% - 32px)); }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { width:100%; }
  .trust-row { display:grid; grid-template-columns:1fr; }
  .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, .steps { grid-template-columns:1fr; }
  .step::after { display:none !important; }
  .page-hero { min-height:300px; padding:60px 0; }
  .split-panel-copy { padding:2rem 1.35rem; }
  .split-panel-art { min-height:300px; }
  .card { padding:1.45rem; }
  .ndoda-page-register .section > .container { width:min(calc(100% - 1rem),1360px); }
  .ndoda-form-heading { padding:1.4rem 1.2rem !important; }
  .ndoda-form-step, .ndoda-contact-form { padding:1.15rem !important; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom-inner { flex-direction:column; }
  .cookie-banner { flex-direction:column; align-items:stretch; }
}

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

/* ========================================================================== 
   NDODA v2.0.1 — Published Contact Us / Pagelayer alignment hardening
   Keeps the original v2 design; only stabilises the Contact page layout.
   ========================================================================== */
body.ndoda-page-contact .site-main {
  overflow-x: clip;
}

/* Keep the two public-facing contact columns at professional proportions. */
body.ndoda-page-contact .section > .container.contact-grid {
  display: grid !important;
  grid-template-columns: minmax(390px, .88fr) minmax(0, 1.12fr) !important;
  align-items: start !important;
  gap: clamp(36px, 4vw, 60px) !important;
  width: min(calc(100% - 3rem), 1320px) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.ndoda-page-contact .contact-grid > * {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* Pagelayer can add flex sizing to wrappers; never allow either column to collapse. */
body.ndoda-page-contact .contact-grid > .pagelayer-col,
body.ndoda-page-contact .contact-grid > .pagelayer-column,
body.ndoda-page-contact .contact-grid > [class*="pagelayer-col"] {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

body.ndoda-page-contact .contact-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: clamp(1.8rem, 2.4vw, 2.35rem) !important;
}

body.ndoda-page-contact .contact-card h1,
body.ndoda-page-contact .contact-card h2,
body.ndoda-page-contact .contact-card h3 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 .8rem !important;
  font-size: clamp(1.85rem, 3vw, 2.75rem) !important;
  line-height: 1.08 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.ndoda-page-contact .contact-card > p {
  width: 100% !important;
  max-width: 42rem !important;
}

/* Contact rows: icon stays left and text receives the remaining width. */
body.ndoda-page-contact .contact-item {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  grid-auto-flow: row !important;
  align-items: start !important;
  column-gap: 1rem !important;
  row-gap: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-top: 1.3rem !important;
}

body.ndoda-page-contact .contact-item > .icon-badge {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
}

body.ndoda-page-contact .contact-item > div,
body.ndoda-page-contact .contact-item > p,
body.ndoda-page-contact .contact-item > span:not(.icon-badge) {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  line-height: 1.6 !important;
}

body.ndoda-page-contact .contact-item strong {
  display: inline-block !important;
  margin-bottom: .15rem !important;
}

/* Form always fills its right column and remains a true 2-column form on desktop. */
body.ndoda-page-contact .ndoda-contact-form-wrap,
body.ndoda-page-contact .ndoda-contact-form {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.ndoda-page-contact .ndoda-contact-form {
  padding: clamp(1.7rem, 2.5vw, 2.25rem) !important;
}

body.ndoda-page-contact .ndoda-contact-form h2 {
  margin: .2rem 0 .4rem !important;
  font-size: clamp(1.9rem, 3vw, 2.75rem) !important;
  line-height: 1.08 !important;
  white-space: normal !important;
}

body.ndoda-page-contact .ndoda-contact-form .ndoda-field-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.15rem !important;
}

body.ndoda-page-contact .ndoda-contact-form .ndoda-field,
body.ndoda-page-contact .ndoda-contact-form .ndoda-field-full {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.ndoda-page-contact .ndoda-contact-form .ndoda-field-full {
  grid-column: 1 / -1 !important;
}

body.ndoda-page-contact .ndoda-contact-form input,
body.ndoda-page-contact .ndoda-contact-form select,
body.ndoda-page-contact .ndoda-contact-form textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body.ndoda-page-contact .map-placeholder {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 960px) {
  body.ndoda-page-contact .section > .container.contact-grid {
    grid-template-columns: 1fr !important;
    width: min(calc(100% - 2rem), 820px) !important;
    gap: 28px !important;
  }
}

@media (max-width: 640px) {
  body.ndoda-page-contact .section > .container.contact-grid {
    width: min(calc(100% - 1.25rem), 820px) !important;
  }

  body.ndoda-page-contact .contact-card,
  body.ndoda-page-contact .ndoda-contact-form {
    padding: 1.25rem !important;
  }

  body.ndoda-page-contact .ndoda-contact-form .ndoda-field-grid {
    grid-template-columns: 1fr !important;
  }

  body.ndoda-page-contact .ndoda-contact-form .ndoda-field-full {
    grid-column: auto !important;
  }
}
