
/* ── TOKENS ── */
:root {
  --bg:         oklch(98.4% 0.004 250);
  --bg-alt:     oklch(96.5% 0.006 250);
  --bg-dark:    oklch(14% 0.025 255);
  --text:       oklch(13% 0.022 255);
  --muted:      oklch(45% 0.018 255);
  --faint:      oklch(72% 0.012 255);
  --line:       oklch(88% 0.010 255);
  --accent:     oklch(52% 0.18 222);
  --accent-dk:  oklch(43% 0.18 222);
  --accent-bg:  oklch(95% 0.04 222);
  --green:      oklch(48% 0.14 152);
  --green-bg:   oklch(95% 0.04 152);
  --white:      #fff;
  --radius:     14px;
  --shadow:     0 2px 20px oklch(13% 0.022 255 / 0.06);
  --shadow-lg:  0 8px 40px oklch(13% 0.022 255 / 0.10);
  --max:        1140px;
  --nav-h:      72px;
}

html[data-theme="dark"] {
  --bg:         oklch(15% 0.018 252);
  --bg-alt:     oklch(21.5% 0.018 252);
  --bg-dark:    oklch(12.5% 0.016 252);
  --text:       oklch(97% 0.006 255);
  --muted:      oklch(82% 0.010 255);
  --faint:      oklch(76% 0.012 255);
  --line:       oklch(36% 0.015 255);
  --accent:     oklch(68% 0.160 222);
  --accent-dk:  oklch(76% 0.160 222);
  --accent-bg:  oklch(28% 0.055 222);
  --green:      oklch(70% 0.120 152);
  --green-bg:   oklch(24% 0.050 152);
  --white:      oklch(97% 0.006 255);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 10vw, 112px) 0; }
.section-sm { padding: clamp(48px, 6vw, 72px) 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { line-height: 1.18; letter-spacing: -0.025em; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 700; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: oklch(98.4% 0.004 250 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
html[data-theme="dark"] .nav {
  background: oklch(15% 0.018 252 / 0.96);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo img { width: 30px; height: 30px; border-radius: 50%; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px oklch(52% 0.18 222 / 0.28); }
.btn-primary:hover { background: var(--accent-dk); box-shadow: 0 6px 20px oklch(52% 0.18 222 / 0.36); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--muted); }
.btn-ghost:hover { background: var(--accent-bg); color: var(--accent-dk); border-color: var(--accent-dk); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px oklch(48% 0.14 152 / 0.25); }
.btn-green:hover { background: oklch(42% 0.14 152); }
.btn-lg { padding: 14px 28px; font-size: 17px; border-radius: var(--radius); }
.btn-xl { padding: 18px 36px; font-size: 18px; border-radius: var(--radius); }

.theme-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg-alt);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: border-color 0.18s, color 0.18s;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── HERO ── */
.hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(64px, 9vw, 100px);
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.hero-photo {
  width: clamp(180px, 20vw, 280px);
  height: clamp(180px, 20vw, 280px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg);
  outline: 2px solid var(--line);
  filter: saturate(80%);
}
.hero-content {}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-eyebrow-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.hero h1 { margin-bottom: 8px; max-width: 20ch; }
.hero-tagline {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-body {
  color: var(--muted);
  max-width: 56ch;
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-link {
  display: inline-block;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid oklch(52% 0.18 222 / 0.35);
  padding-bottom: 2px;
  transition: border-color 0.18s;
}
.hero-link:hover { border-color: var(--accent); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.hero-meta svg { color: var(--faint); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--line); }

/* ── SERVICES LIST ── */
.services-section { background: var(--bg); }
.services-list {
  margin: 40px auto 0;
  max-width: 860px;
  width: min(100%, 860px);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover .service-title { color: var(--accent); }
.service-num {
  display: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.service-body {}
.service-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.18s;
}
.service-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0;
}
.service-arrow {
  color: var(--faint);
  padding-top: 4px;
  transition: color 0.18s, transform 0.18s;
}
.service-row:hover .service-arrow { color: var(--accent); transform: translateX(4px); }

/* ── DEVICE CALLOUT ── */
.device-callout {
  margin-top: 40px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.device-callout-title { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.device-callout-desc { color: var(--muted); font-size: 15px; margin: 0; }
.device-callout-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

/* ── PROCESS ── */
.process-section { background: var(--bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--line);
}
.process-step {
  padding: 0 32px;
  text-align: center;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.process-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-desc { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }

/* ── PRICING ── */
.pricing-section { background: var(--bg); }
.pricing-display {
  max-width: 720px;
  margin: 56px auto 0;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.pricing-unit {
  font-size: 22px;
  font-weight: 500;
  color: var(--muted);
}
.pricing-vat { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.pricing-divider { border: none; border-top: 1px solid var(--line); margin: 24px 0; }
.pricing-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-detail-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.pricing-detail-value { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.45; }
.pricing-highlight {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-highlight-text { font-size: 16px; font-weight: 700; color: var(--accent); }
.pricing-highlight-sub { font-size: 14px; color: var(--text); opacity: 1; margin-top: 2px; }
.pricing-link {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}
.pricing-link:hover { text-decoration: underline; }

/* ── CONTACT CALLOUT ── */
.contact-callout { background: var(--bg-alt); }
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.callout-body { color: var(--text); font-size: 16px; line-height: 1.8; }
.callout-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-link-row:last-child { border-bottom: 1px solid var(--line); }
.contact-link-row a { font-weight: 700; color: var(--text); }
.contact-link-row a:hover { color: var(--accent); }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list { margin-top: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s;
  color: var(--faint);
}
details[open] .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-a {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 62ch;
}

/* ── REVIEWS ── */
.reviews-section { background: var(--bg-alt); }
.reviews-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { color: #d4a017; letter-spacing: 0.1em; font-size: 18px; }
.score-text { font-size: 16px; font-weight: 700; color: var(--text); }
.reviews-image {
  border-radius: 20px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: unset;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.review-item {}
.review-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  quotes: "\201C" "\201D";
}
.review-quote::before { content: open-quote; }
.review-quote::after { content: close-quote; }
.review-author { font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; }
.reviews-links {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── TRUST ── */
.trust-section { background: var(--bg); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.trust-intro { color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 44ch; }
.trust-points { display: flex; flex-direction: column; gap: 0; }
.trust-point {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.trust-point:last-child { border-bottom: 1px solid var(--line); }
.trust-point-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-point-title::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-point-desc { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.contact-left {}
.contact-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-name { font-weight: 700; font-size: 16px; }
.contact-role { font-size: 14px; color: var(--muted); }
.contact-body { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.contact-info-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.contact-info-row:last-child { border-bottom: 1px solid var(--line); }
.contact-info-icon { width: 20px; text-align: center; color: var(--faint); font-size: 16px; }
.contact-info-row a { font-weight: 700; color: var(--text); }
.contact-info-row a:hover { color: var(--accent-dk); text-decoration: underline; }
.contact-note {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-note strong { color: var(--text); }
.form-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-box h3 { font-size: 20px; margin-bottom: 6px; }
.form-notice { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
}
html[data-theme="dark"] .form-field input,
html[data-theme="dark"] .form-field textarea { background: var(--bg-dark); }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(52% 0.18 222 / 0.28);
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, transform 0.18s;
}
.form-submit:hover { background: var(--accent-dk); transform: translateY(-1px); }

/* ── PAYMENT ── */
.payment-section { background: var(--bg); padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid var(--line); }
.payment-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.payment-title { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.payment-methods { display: flex; gap: 24px; flex-wrap: wrap; }
.payment-method { font-size: 15px; font-weight: 600; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  color: oklch(75% 0.010 255);
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 15px; line-height: 1.75; color: oklch(68% 0.010 255); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(60% 0.010 255); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 15px; color: oklch(68% 0.010 255); transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid oklch(25% 0.012 255); margin-top: 40px; padding-top: 24px; font-size: 14px; color: oklch(58% 0.010 255); }

/* ── MOBILE STICKY ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  z-index: 99;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-details { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .callout-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-steps::before { display: none; }
  .process-step { padding: 0; text-align: left; }
  .process-num { margin-left: 0; }
}

@media (max-width: 680px) {
  .contact-note { margin-bottom: 32px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 17px;
  }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero-photo { margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .service-row { grid-template-columns: 1fr 24px; gap: 12px 16px; }
  .device-callout { grid-template-columns: 1fr; }
  .pricing-details { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
  .form-box { padding: 24px 20px; }
}

/* ── SCROLL MARGIN ── */
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
