/* ============================================================
   BNE IT AG — Design System
   Display: Space Grotesk · Body: Plus Jakarta Sans
   Brand accent: #00a4e6 (BNE cyan) on deep-navy atmosphere
   ============================================================ */

:root {
  --brand:        #00a4e6;
  --brand-bright: #38c6ff;
  --brand-deep:   #0077b6;
  --ink:          #0b1424;
  --ink-soft:     #33415c;
  --muted:        #64748b;
  --line:         #e4e8ef;
  --bg:           #ffffff;
  --bg-alt:       #f5f7fb;
  --bg-tint:      #eef5fb;
  --navy:         #0a1424;
  --navy-2:       #0e1d35;
  --white:        #ffffff;
  --ok:           #16a34a;

  --grad-brand:   linear-gradient(120deg, #00a4e6 0%, #0077b6 100%);
  --grad-hero:    radial-gradient(1200px 700px at 72% 8%, rgba(0,164,230,.28), transparent 60%),
                  radial-gradient(900px 600px at 8% 92%, rgba(0,119,182,.30), transparent 55%),
                  linear-gradient(165deg, #0a1424 0%, #0c1a30 55%, #0a1424 100%);

  --shadow-sm:   0 1px 2px rgba(11,20,36,.06), 0 2px 8px rgba(11,20,36,.05);
  --shadow-md:   0 8px 30px rgba(11,20,36,.10);
  --shadow-lg:   0 24px 70px rgba(11,20,36,.16);
  --shadow-brand:0 20px 60px rgba(0,119,182,.35);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body:    "Montserrat", system-ui, sans-serif;

  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* --- typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.6rem, 6.2vw, 5rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }
.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-deep); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.text-grad {
  background: linear-gradient(100deg, var(--brand-bright), var(--brand) 55%, var(--brand-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 11px 20px; font-size: .92rem; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(0,119,182,.45); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-deep); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; }
.no-hero .site-header { position: sticky; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 14px 0; }
.site-header.is-stuck { position: fixed; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 12px 0; box-shadow: var(--shadow-sm); animation: dropin .4s var(--ease); }
@keyframes dropin { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.site-header__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand__logo { height: 38px; width: auto; }
.brand__logo--dark { display: none; }
.has-hero .site-header:not(.is-stuck) .brand__logo--light { display: block; }
.has-hero .site-header:not(.is-stuck) .brand__logo--dark { display: none; }
.no-hero .brand__logo--light, .is-stuck .brand__logo--light { display: none; }
.no-hero .brand__logo--dark, .is-stuck .brand__logo--dark { display: block; }

.mainnav { display: flex; align-items: center; gap: 8px; }
.mainnav a:not(.btn) {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  padding: 9px 14px; border-radius: 999px; color: var(--ink-soft); transition: color .2s, background .2s;
}
.has-hero .site-header:not(.is-stuck) .mainnav a:not(.btn) { color: rgba(255,255,255,.82); }
.mainnav a:not(.btn):hover { color: var(--brand); }
.has-hero .site-header:not(.is-stuck) .mainnav a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.1); }
.mainnav a[aria-current="page"] { color: var(--brand); }
.mainnav__portal { position: relative; }
.mainnav__cta { margin-left: 6px; }

.navtoggle, .navburger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--grad-hero); color: #fff; padding: 190px 0 130px; overflow: hidden; isolation: isolate; }
.hero__canvas { position: absolute; inset: 0; z-index: -1; opacity: .9; }
.hero::after { /* fine grid texture */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 60% 30%, #000 0%, transparent 78%);
}
.hero__inner { max-width: 900px; }
.hero .eyebrow { color: var(--brand-bright); }
.hero .eyebrow::before { background: var(--brand-bright); }
.hero h1 { color: #fff; margin: 22px 0 22px; max-width: 16ch; }
.hero__lead { color: rgba(255,255,255,.78); max-width: 56ch; margin-bottom: 34px; }
.hero .cta-row { margin-bottom: 56px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 30px 46px; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.hero__proof-item { display: flex; flex-direction: column; }
.hero__proof-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: #fff; }
.hero__proof-lbl { font-size: .86rem; color: rgba(255,255,255,.6); letter-spacing: .02em; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrolldash 2s var(--ease) infinite; }
@keyframes scrolldash { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lead { color: rgba(255,255,255,.72); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { margin: 16px 0 18px; }

/* --- pillars / feature grid --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.pillar {
  position: relative; padding: 34px 30px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--line); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-tint); color: var(--brand-deep); margin-bottom: 22px; }
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.28rem; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: .98rem; }
.pillar__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--brand-deep); }
.pillar__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.pillar:hover .pillar__link svg { transform: translateX(5px); }

/* --- split feature --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__body h2 { margin: 16px 0 18px; }
.split__list { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; }
.split__list svg { width: 22px; height: 22px; flex: none; color: var(--brand); margin-top: 2px; }
.split__list strong { display: block; font-family: var(--font-display); }
.split__list span { color: var(--muted); font-size: .95rem; }

/* --- product mock panel (used as media) --- */
.mock {
  border-radius: var(--r-lg); background: linear-gradient(160deg, #0c1a30, #0a1424);
  box-shadow: var(--shadow-lg); padding: 18px; border: 1px solid rgba(255,255,255,.08); overflow: hidden;
}
.mock__bar { display: flex; gap: 7px; padding: 4px 4px 16px; }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock__screen { background: #0e1d35; border-radius: 14px; padding: 20px; border: 1px solid rgba(255,255,255,.06); }
.mock__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; border-radius: 12px; background: rgba(255,255,255,.04); margin-bottom: 11px; }
.mock__row:last-child { margin-bottom: 0; }
.mock__tag { font-family: var(--font-display); font-size: .72rem; padding: 5px 11px; border-radius: 999px; font-weight: 600; }
.mock__tag--ok { background: rgba(22,163,74,.2); color: #4ade80; }
.mock__tag--wait { background: rgba(0,164,230,.18); color: var(--brand-bright); }
.mock__label { color: rgba(255,255,255,.86); font-size: .92rem; }
.mock__sub { color: rgba(255,255,255,.45); font-size: .78rem; }
.mock__bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; padding-top: 8px; }
.mock__bars i { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad-brand); opacity: .85; }

/* --- process / steps --- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 26px 0; border-top: 1px solid var(--line); }
.step__num { counter-increment: step; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--muted); }

/* --- stats band --- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 700; }
.stat__num .text-grad { display: inline; }
.stat__lbl { color: var(--muted); font-size: .95rem; margin-top: 4px; }
.section--navy .stat__lbl { color: rgba(255,255,255,.6); }

/* --- pricing --- */
.price-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: stretch; }
.price {
  border-radius: var(--r-xl); padding: 40px; border: 1px solid var(--line); background: var(--bg);
  display: flex; flex-direction: column;
}
.price--feature { background: var(--grad-hero); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price--feature h3, .price--feature .price__amount { color: #fff; }
.price__kicker { font-family: var(--font-display); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .78rem; color: var(--brand-deep); }
.price--feature .price__kicker { color: var(--brand-bright); }
.price h3 { font-size: 1.5rem; margin: 12px 0 6px; }
.price__amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; }
.price__amount small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price--feature .price__amount small { color: rgba(255,255,255,.6); }
.price__desc { color: var(--muted); margin: 8px 0 22px; }
.price--feature .price__desc { color: rgba(255,255,255,.72); }
.price__list { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.price__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.price__list svg { width: 20px; height: 20px; flex: none; color: var(--brand); margin-top: 2px; }
.price--feature .price__list svg { color: var(--brand-bright); }
.price .btn { margin-top: auto; }

/* --- feature list block --- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--brand); margin-top: 2px; }

/* --- CTA band --- */
.ctaband { position: relative; background: var(--grad-hero); color: #fff; border-radius: var(--r-xl); padding: 68px 56px; overflow: hidden; text-align: center; }
.ctaband h2 { color: #fff; margin-bottom: 16px; }
.ctaband .lead { color: rgba(255,255,255,.78); max-width: 60ch; margin: 0 auto 30px; }
.ctaband .cta-row { justify-content: center; }

/* --- badges row (compliance, not hero) --- */
.trust { display: flex; flex-wrap: wrap; gap: 14px; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); font-size: .88rem; font-weight: 500; color: var(--ink-soft); }
.trust__item svg { width: 17px; height: 17px; color: var(--brand); }
.section--navy .trust__item { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.82); }

/* --- FAQ --- */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--brand); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 40px 24px 0; color: var(--muted); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.pagehero { position: relative; background: var(--grad-hero); color: #fff; padding: 170px 0 80px; overflow: hidden; isolation: isolate; }
.pagehero::after { content:""; position:absolute; inset:0; z-index:-1; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 70% 20%, #000, transparent 75%); }
.pagehero h1 { color: #fff; margin: 20px 0 18px; max-width: 20ch; }
.pagehero .lead { color: rgba(255,255,255,.78); max-width: 62ch; }
.pagehero .eyebrow { color: var(--brand-bright); }
.pagehero .eyebrow::before { background: var(--brand-bright); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.field { display: block; margin-bottom: 18px; }
.field span { display: block; font-family: var(--font-display); font-weight: 500; font-size: .88rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: 1rem; background: var(--bg); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,164,230,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 10px; }
.form-msg { padding: 14px 16px; border-radius: var(--r-sm); margin-bottom: 18px; font-size: .95rem; }
.form-msg--ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-msg--err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.contact-side { background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 40px; }
.contact-side h3 { color: #fff; margin-bottom: 8px; }
.contact-side p { color: rgba(255,255,255,.7); }
.contact-side__item { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.contact-side__item:first-of-type { border-top: none; margin-top: 10px; }
.contact-side__item svg { width: 22px; height: 22px; color: var(--brand-bright); flex: none; }
.contact-side__item a { color: #fff; font-weight: 600; }
.honey { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose a { color: var(--brand-deep); text-decoration: underline; }

/* ============================================================
   MOTION — reveal on scroll
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 76px 0 34px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__brand img { height: 42px; width: auto; margin-bottom: 20px; }
.site-footer__claim { max-width: 34ch; margin-bottom: 14px; }
.site-footer__meta { font-size: .88rem; color: rgba(255,255,255,.45); }
.site-footer__col h3 { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; font-family: var(--font-display); }
.site-footer__col a { display: block; padding: 6px 0; color: rgba(255,255,255,.72); transition: color .2s; }
.site-footer__col a:hover { color: var(--brand-bright); }
.site-footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: .84rem; color: rgba(255,255,255,.45); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .price-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .navburger { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; }
  .navburger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
  .has-hero .site-header:not(.is-stuck) .navburger { color: #fff; }
  .no-hero .navburger, .is-stuck .navburger { color: var(--ink); }
  .mainnav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--navy); color: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    padding: 96px 24px 40px; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 90;
  }
  .navtoggle:checked ~ .mainnav { transform: translateX(0); }
  .mainnav a:not(.btn) { color: rgba(255,255,255,.85) !important; font-size: 1.1rem; padding: 12px 8px; }
  .mainnav__cta { margin: 12px 0 0; }
  .navtoggle:checked ~ .navburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navtoggle:checked ~ .navburger span:nth-child(2) { opacity: 0; }
  .navtoggle:checked ~ .navburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-3, .grid-4, .grid-2, .stats { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .ctaband { padding: 48px 26px; }
  .section { padding: 76px 0; }
  .hero { padding: 150px 0 90px; }
  .field--row { grid-template-columns: 1fr; }
}
