/* Bellerzoeken.nl — Ink & Signal design system */
:root {
  --ink: #070B14;
  --ink-soft: #1A2332;
  --paper: #F0F3F8;
  --surface: #FFFFFF;
  --line: #D5DCE6;
  --signal: #06B6D4;
  --signal-deep: #0891B2;
  --signal-soft: #CFFAFE;
  --warn: #C2410C;
  --warn-soft: #FFEDD5;
  --ok: #15803D;
  --ok-soft: #DCFCE7;
  --caution: #A16207;
  --caution-soft: #FEF9C3;
  --muted: #5A6A7C;
  --normal: #64748B;
  --verdacht: #EA580C;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(7, 11, 20, 0.05), 0 12px 32px rgba(7, 11, 20, 0.07);
  --max: 1140px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

.page-wrapper > main,
.page-wrapper > .main,
main {
  flex: 1;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

img { max-width: 100%; height: auto; }
a { color: var(--signal-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--signal); }

h1, h2, h3, .h1, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1, .h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2, .h2, .section-title { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 600; }
h3 { font-size: 1.1rem; letter-spacing: -0.02em; }

p { margin: 0 0 1em; }
.muted, .text-muted { color: var(--muted); }

/* ——— Header ——— */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover { color: inherit; }

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  border-radius: 10px;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand:hover .brand-wordmark { color: var(--signal-deep); }

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.header-nav .nav-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.header-nav a:hover { color: var(--signal); }
.header-nav a:hover .nav-icon { opacity: 1; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.header-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Homepage: nav op de hero-band */
body.home .header--home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

body.home .header--home .brand-wordmark { color: #fff; }
body.home .header--home .brand:hover .brand-wordmark { color: var(--signal-soft); }
body.home .header--home .header-nav a {
  color: rgba(240, 243, 248, 0.78);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
body.home .header--home .header-nav a:hover { color: #fff; }
body.home .header--home .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
body.home .header--home .nav-toggle-bar { background: #fff; }

body.home .hero--home {
  min-height: 0;
  display: block;
  align-items: unset;
  padding: clamp(5.25rem, 10vw, 6.25rem) 0 clamp(2.25rem, 5vw, 3rem);
  text-align: left;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(6, 182, 212, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 90%, rgba(8, 145, 178, 0.28) 0%, transparent 50%),
    linear-gradient(160deg, #05080F 0%, #0B1220 42%, #0C4A5E 100%);
}

body.home .hero--home::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

body.home .hero--home .hero-ambient {
  position: absolute;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(-24px, 18px) scale(1.08); opacity: 1; }
}

body.home .hero-home-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

body.home .hero-home-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

body.home .hero--home h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  color: #fff;
  animation: heroFade 500ms ease both;
}

body.home .hero--home h1 em {
  font-style: normal;
  font-weight: 600;
  color: #67E8F9;
}

body.home .hero--home .hero-sub {
  margin: 0 0 1.35rem;
  max-width: 28em;
  margin-left: 0;
  font-size: 1rem;
  color: rgba(240, 243, 248, 0.68);
  animation: heroFade 560ms ease 60ms both;
}

body.home .hero--home .hero-search {
  max-width: 560px;
  margin: 0;
  border-radius: 14px;
  padding: 0.4rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  animation: heroFade 700ms ease 140ms both;
}

body.home .hero--home .hero-search input {
  font-size: 1.05rem;
  font-weight: 500;
  padding-left: 0.85rem;
}

body.home .hero--home .hero-search button {
  border-radius: 10px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ——— Buttons & forms ——— */
.btn,
button[type="submit"],
.search-form button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  background: var(--signal);
  color: #fff;
  cursor: pointer;
  transition: background-color 160ms ease;
  text-decoration: none;
}

.btn:hover,
button[type="submit"]:hover,
.search-form button:hover,
.hero-search button:hover {
  background: var(--signal-deep);
  color: #fff;
}

.btn-secondary {
  background: var(--ink-soft);
}

.btn-secondary:hover { background: var(--ink); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--signal);
  outline-offset: 1px;
  border-color: var(--signal);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 70% 10%, rgba(8, 145, 178, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14, 116, 144, 0.35) 0%, transparent 50%),
    linear-gradient(145deg, var(--ink) 0%, var(--ink-soft) 45%, var(--signal-deep) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-sub {
  color: rgba(244, 247, 251, 0.88);
  font-size: 1.05rem;
  margin: 0 auto 1.75rem;
  max-width: 36em;
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(224, 247, 250, 0.9);
}

.hero-search,
.search-form.hero-search {
  display: flex;
  gap: 0.6rem;
  max-width: 560px;
  margin: 0 auto;
  padding: 0.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: heroFade 300ms ease both;
}

.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  min-width: 0;
}

.hero-search input:focus { outline: none; }

.hero-search button {
  flex-shrink: 0;
  white-space: nowrap;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .hero-search {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-search button { width: 100%; }
}

/* ——— Sections ——— */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-alt { background: var(--surface); }
.section-paper { background: var(--paper); }

.section-intro {
  color: var(--muted);
  max-width: 40em;
  margin-bottom: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Steps — Zo werkt het */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: left;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--signal-deep);
  background: var(--signal-soft);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

/* Recent numbers list */
.number-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.number-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 160ms ease;
}

.number-list a:hover { border-color: var(--signal); color: var(--ink); }

/* Rating badges — left stripe */
.rating-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem 0.25rem 0.7rem;
  border-radius: 4px;
  border-left: 4px solid;
  line-height: 1.3;
}

.rating-badge.betrouwbaar { border-color: var(--ok); background: var(--ok-soft); color: var(--ok); }
.rating-badge.normaal { border-color: var(--normal); background: #f1f5f9; color: var(--normal); }
.rating-badge.irritant,
.rating-badge.storend { border-color: var(--caution); background: var(--caution-soft); color: var(--caution); }
.rating-badge.verdacht { border-color: var(--verdacht); background: #fff7ed; color: var(--verdacht); }
.rating-badge.gevaarlijk { border-color: var(--warn); background: var(--warn-soft); color: var(--warn); }

/* Action bars on number page */
.action-bar {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  margin: 1rem 0 1.5rem;
  font-weight: 500;
}

.action-bar.danger { border-color: var(--warn); background: var(--warn-soft); color: #9a3412; }
.action-bar.suspect { border-color: var(--verdacht); background: #fff7ed; color: #9a3412; }
.action-bar.irritant { border-color: var(--caution); background: var(--caution-soft); color: #854d0e; }
.action-bar.ok { border-color: var(--ok); background: var(--ok-soft); color: #166534; }

/* Netnummer chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-row a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.chip-row a:hover {
  border-color: var(--signal);
  color: var(--signal-deep);
  background: var(--signal-soft);
}

/* Blog teasers / grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease;
}

.blog-card:hover { border-color: var(--signal); color: inherit; }

.blog-card-body { padding: 1rem 1.15rem 1.25rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.blog-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Nummer page */
.nummer-header { padding: 2rem 0 1rem; }
.nummer-meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

.review-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.review-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

/* FAQ details OK */
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
}

details.faq-item summary {
  font-weight: 600;
  cursor: pointer;
}

details.faq-item[open] summary { margin-bottom: 0.5rem; }

/* ——— Footer ——— */
.footer {
  background: var(--ink);
  color: rgba(244, 247, 251, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer a {
  color: rgba(244, 247, 251, 0.85);
  text-decoration: none;
}

.footer a:hover { color: #fff; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand { margin-bottom: 0.65rem; }
.footer-brand .brand-wordmark { color: #fff; }
.footer-brand .brand:hover .brand-wordmark { color: var(--signal-soft); }
.footer-tagline { color: rgba(244, 247, 251, 0.7); font-size: 0.95rem; margin: 0; max-width: 22em; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(224, 247, 250, 0.7);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(244, 247, 251, 0.55);
}

.footer-bottom p { margin: 0; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ——— Utilities ——— */
.prose { max-width: 42em; }
.prose h2 { margin-top: 1.75em; }
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.alert-success { background: var(--ok-soft); color: #166534; }
.alert-error { background: var(--warn-soft); color: #9a3412; }

.empty-state {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.page-hero-simple .hero-search {
  margin-top: 1.25rem;
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
  animation: none;
}

.page-hero-simple .hero-search input {
  border: 1px solid var(--line);
}

.breadcrumbs-inline {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}


.seo-block {
  font-size: 1rem;
  color: var(--ink-soft);
}

.seo-block a { font-weight: 600; }

mark.placeholder {
  background: var(--signal-soft);
  color: var(--signal-deep);
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-weight: 600;
}

/* ——— Homepage feed ——— */
.home-feed {
  background: var(--surface);
  padding-top: clamp(2.75rem, 6vw, 4rem);
}

.home-feed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: start;
}

.home-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-deep);
  margin: 0 0 0.45rem;
}

.home-feed .section-title {
  margin-bottom: 1.35rem;
  letter-spacing: -0.035em;
}

.review-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.review-feed-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 0.85rem;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 2.85rem;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.review-feed-item:hover {
  border-color: var(--line);
  background: #fff;
  transform: translateX(2px);
}

.review-feed-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.review-feed-text {
  flex: 1;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-pill--gevaarlijk { background: #9F1239; }
.rating-pill--verdacht { background: #C2410C; }
.rating-pill--irritant { background: #B45309; }
.rating-pill--normaal { background: #334155; }
.rating-pill--betrouwbaar { background: #15803D; }

.number-pill-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.number-pill-grid a {
  display: block;
  text-align: center;
  padding: 0.65rem 0.45rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.number-pill-grid a:hover {
  background: var(--signal-deep);
  color: #fff;
  transform: translateY(-1px);
}

.home-faq {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(6, 182, 212, 0.08), transparent 55%),
    var(--paper);
}

.home-faq .section-title { margin-bottom: 1.25rem; }

.home-faq .faq-item {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.55rem;
  background: var(--surface);
  transition: border-color 160ms ease;
}

.home-faq .faq-item:hover { border-color: #b8c4d4; }

.home-faq .faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

.home-faq .faq-item summary::-webkit-details-marker { display: none; }

.home-tips {
  background: var(--surface);
}

.home-tips .section-title { margin-bottom: 1.35rem; }

.tip-date {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: 0.5rem !important;
}

.tips-grid .tip-card {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tips-grid .tip-card:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tips-grid .tip-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

.home-link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.home-link-more:hover { color: var(--signal-deep); }

@media (max-width: 900px) {
  .home-feed-grid { grid-template-columns: 1fr; }
  .number-pill-grid { grid-template-columns: 1fr 1fr; }
  body.home .hero--home { text-align: left; min-height: auto; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    z-index: 30;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    z-index: 25;
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--ink);
  }

  .header-nav a:hover {
    background: var(--paper);
    color: var(--signal-deep);
  }

  body.home .header--home .header-nav,
  body.nummer-page .header-nav {
    background: #0B1220;
    border-color: rgba(255, 255, 255, 0.12);
  }

  body.home .header--home .header-nav a,
  body.nummer-page .header-nav a {
    color: rgba(240, 243, 248, 0.9);
    font-size: 1rem;
  }

  body.home .header--home .header-nav a:hover,
  body.nummer-page .header-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .review-feed-item {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .review-feed-text {
    white-space: normal;
    width: 100%;
  }
  body.home .hero--home .hero-search {
    flex-direction: column;
    align-items: stretch;
  }
  body.home .hero--home .hero-search button { width: 100%; }
}

/* ——— Nummerpagina ——— */
body.nummer-page .header {
  background: #05080F;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.nummer-page .header .brand-wordmark { color: #fff; }
body.nummer-page .header .brand:hover .brand-wordmark { color: var(--signal-soft); }
body.nummer-page .header-nav a { color: rgba(240, 243, 248, 0.78); }
body.nummer-page .header-nav a:hover { color: #fff; }
body.nummer-page .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
body.nummer-page .nav-toggle-bar { background: #fff; }

.nummer-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 1.35rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 55% at 88% 10%, rgba(6, 182, 212, 0.32) 0%, transparent 55%),
    linear-gradient(160deg, #05080F 0%, #0B1220 48%, #0C4A5E 100%);
}

.nummer-banner-ambient {
  position: absolute;
  width: min(420px, 65vw);
  height: min(420px, 65vw);
  right: -10%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, transparent 70%);
  filter: blur(36px);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.nummer-banner > .container { position: relative; z-index: 1; }

.nummer-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(240, 243, 248, 0.55);
  margin-bottom: 1.35rem;
}

.nummer-crumbs a {
  color: rgba(240, 243, 248, 0.7);
  text-decoration: none;
}
.nummer-crumbs a:hover { color: #fff; }

.nummer-kicker {
  color: #67E8F9 !important;
  margin-bottom: 0.55rem;
}

.nummer-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.nummer-hero-copy h1 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.nummer-national {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(240, 243, 248, 0.72);
}

.nummer-business {
  margin: 0.85rem 0 0;
  color: rgba(240, 243, 248, 0.78);
}

.nummer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nummer-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.65rem 0.95rem 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.nummer-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.18);
  color: #67E8F9;
  flex-shrink: 0;
}

.nummer-stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
  padding-right: 0.15rem;
}

.nummer-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.nummer-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(240, 243, 248, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nummer-banner .hero-search {
  max-width: 560px;
  margin: 0;
  animation: none;
  border-radius: 14px;
  padding: 0.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.nummer-banner .hero-search button {
  border-radius: 10px;
  font-weight: 700;
}

.nummer-body {
  padding-top: 2.25rem;
  padding-bottom: 3.5rem;
}

.nummer-body > section,
.nummer-body > .form-card,
.nummer-body > .action-bar,
.nummer-body > .alert,
.nummer-body > .nummer-split {
  margin-bottom: 2.15rem;
}

.nummer-body .section-title { margin-bottom: 0.85rem; }
.nummer-body .home-kicker + .section-title { margin-top: 0; }

.nummer-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 1.15rem;
  align-items: stretch;
}

.nummer-split .nummer-reasons,
.nummer-split .form-card {
  margin-bottom: 0;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nummer-split .nummer-reasons {
  background: var(--surface);
  padding: 1.4rem 1.45rem;
}

.nummer-split .form-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
}

.nummer-split .nummer-reasons:hover,
.nummer-split .form-card:hover {
  border-color: #b8c4d4;
  box-shadow: var(--shadow);
}

.nummer-split .rating-bars { max-width: none; }

/* Experience form — strakke concurrent-achtige layout */
.experience-card {
  overflow: visible;
}

.experience-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 158px;
  gap: 0.75rem;
  align-items: start;
  flex: 1;
}

.experience-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.experience-label-row label {
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
}

.char-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.15rem 0.45rem;
  font-variant-numeric: tabular-nums;
}

.experience-textarea {
  width: 100%;
  min-height: 132px;
  height: calc(100% - 1.75rem);
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  background: #fff;
}

.experience-textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.experience-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  align-self: start;
}

.rating-picker {
  position: relative;
  flex: 0 0 auto;
}

.rating-picker-trigger {
  width: 100%;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.85rem;
  border: none;
  border-radius: 10px;
  background: #334155;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  text-align: left;
}

.rating-picker-trigger--betrouwbaar { background: #15803D; }
.rating-picker-trigger--normaal { background: #64748B; }
.rating-picker-trigger--irritant { background: #DC2626; }
.rating-picker-trigger--verdacht { background: #EA580C; }
.rating-picker-trigger--gevaarlijk { background: #9F1239; }

.rating-picker-chevron { flex-shrink: 0; opacity: 0.9; }

.rating-picker-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.rating-picker-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--ink);
}

.rating-picker-option:hover,
.rating-picker-option[aria-selected="true"] {
  background: var(--paper);
}

.rating-picker-option--betrouwbaar .rating-star { color: #15803D; }
.rating-picker-option--normaal .rating-star { color: #64748B; }
.rating-picker-option--irritant .rating-star { color: #DC2626; }
.rating-picker-option--verdacht .rating-star { color: #EA580C; }
.rating-picker-option--gevaarlijk .rating-star { color: #9F1239; }

.experience-submit {
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin-top: 0;
  border: none;
  border-radius: 10px;
  background: var(--signal-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.experience-submit:hover {
  background: var(--signal);
  color: #fff;
}

.experience-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
  margin: 0.15rem 0 0;
}

.experience-terms input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--signal-deep);
}

.experience-terms a {
  color: var(--signal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 800px) {
  .nummer-split { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-aside {
    flex-direction: row;
    align-items: stretch;
  }
  .rating-picker,
  .experience-submit {
    flex: 1;
  }
  .rating-picker-trigger,
  .experience-submit {
    height: 44px;
    min-height: 44px;
  }
  .experience-textarea {
    min-height: 120px;
    height: auto;
  }
}

.reason-chips {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.reason-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.reason-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 480px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 7rem 1fr 2rem;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
}

.rating-bar-track {
  background: var(--paper);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.rating-bar-fill { height: 100%; background: var(--signal); border-radius: 999px; }
.rating-bar-fill--betrouwbaar { background: var(--ok); }
.rating-bar-fill--normaal { background: var(--normal); }
.rating-bar-fill--irritant { background: var(--caution); }
.rating-bar-fill--verdacht { background: var(--verdacht); }
.rating-bar-fill--gevaarlijk { background: var(--warn); }

.nummer-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.nummer-section-head .section-title { margin: 0; }

.reviews-sort {
  display: flex;
  gap: 0.35rem;
  padding: 0.25rem;
  background: var(--paper);
  border-radius: 10px;
}

.reviews-sort a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
}

.reviews-sort a.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(7, 11, 20, 0.06);
}

.reviews-sort a:hover { color: var(--signal-deep); }

.nummer-main .review-list { gap: 0.55rem; }

.nummer-main .review-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1.05rem 1.2rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

.nummer-main .review-item:hover {
  border-color: #b8c4d4;
  transform: translateX(2px);
}

.review-comment { margin: 0; font-weight: 500; }

.format-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.format-list code {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.nummer-related-grid { max-width: 720px; }

.nummer-views-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr);
  gap: 1.15rem;
  align-items: start;
}

.nummer-views-layout--hourly-only { grid-template-columns: 1fr; max-width: 320px; }

.nummer-views-chart-wrap,
.nummer-views-hourly {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: none;
}

.nummer-views-chart-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 720px;
}

.nummer-views-hourly-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.nummer-views-hourly-svg { display: block; width: 100%; height: auto; }

.nummer-views-y-spine { stroke: rgba(11, 18, 32, 0.12); stroke-width: 1; }
.nummer-views-grid { stroke: rgba(11, 18, 32, 0.07); stroke-width: 1; }
.nummer-views-y-label { fill: rgba(11, 18, 32, 0.5); font-size: 11px; font-family: var(--font-body); }
.nummer-views-daytick { fill: rgba(11, 18, 32, 0.4); font-size: 8.5px; font-family: var(--font-body); }
.nummer-views-axis { stroke: rgba(11, 18, 32, 0.22); stroke-width: 1.5; }
.nummer-views-line { stroke: var(--signal); stroke-linecap: round; stroke-linejoin: round; }
.nummer-views-dot {
  fill: #fff;
  stroke: var(--ink);
  stroke-width: 2;
  cursor: pointer;
}
.nummer-views-dot:hover,
.nummer-views-dot:focus { fill: var(--signal-soft); outline: none; }
.nummer-views-axis-caption { fill: rgba(11, 18, 32, 0.55); font-size: 11px; font-family: var(--font-body); }
.nummer-views-hourly-axis { stroke: rgba(11, 18, 32, 0.2); }
.nummer-views-hourly-bar { fill: var(--signal-deep); }
.nummer-views-hourly-bar:hover { fill: var(--signal); }
.nummer-views-hourly-tick { fill: rgba(11, 18, 32, 0.45); font-size: 9px; font-family: var(--font-body); }

.nummer-views-tooltip {
  position: absolute;
  z-index: 30;
  transform: translateX(-50%);
  min-width: 140px;
  max-width: 240px;
  padding: 0.65rem 0.85rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  pointer-events: none;
}

.nummer-tips .tip-card {
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 14px;
}

@media (max-width: 900px) {
  .nummer-views-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nummer-stats { width: 100%; }
  .nummer-stat { flex: 1 1 calc(50% - 0.3rem); }
  .rating-bar-row { grid-template-columns: 5.5rem 1fr 1.75rem; }
  .nummer-banner .hero-search { flex-direction: column; }
  .nummer-banner .hero-search button { width: 100%; }
}

/* ——— Legal / info pages ——— */
.legal-page {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(6, 182, 212, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(8, 145, 178, 0.06), transparent 50%),
    var(--paper);
}

.legal-hero {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
}

.legal-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-deep);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.legal-lead {
  margin: 0 0 1.35rem;
  max-width: 36em;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.legal-nav a:hover {
  border-color: var(--signal);
  color: var(--signal-deep);
}

.legal-nav a.is-active {
  border-color: var(--signal-deep);
  background: var(--signal-soft);
  color: var(--signal-deep);
}

.legal-body {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}

.legal-layout--form {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
}

.legal-prose {
  max-width: 44em;
}

.legal-prose--compact {
  margin-bottom: 1.25rem;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 0.65em;
  padding-top: 0.35em;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.legal-prose h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 1.25em;
}

.legal-prose p,
.legal-prose li {
  line-height: 1.65;
  color: var(--ink-soft);
}

.legal-prose ul {
  padding-left: 1.2em;
}

.legal-prose li {
  margin-bottom: 0.4em;
}

.legal-prose code {
  font-size: 0.9em;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: var(--signal-soft);
  color: var(--signal-deep);
}

.legal-meta {
  margin-top: 2.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted) !important;
}

.legal-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1.25rem;
}

.legal-aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.legal-aside-card--soft {
  background: linear-gradient(160deg, var(--signal-soft) 0%, #fff 70%);
  box-shadow: none;
}

.legal-aside-card h2 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.legal-aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-aside-card li {
  margin-bottom: 0.35rem;
}

.legal-aside-card a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.legal-aside-card a:hover {
  text-decoration: underline;
}

.legal-aside-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.legal-steps {
  margin: 0;
  padding-left: 1.15em;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.legal-steps li {
  margin-bottom: 0.45rem;
}

.legal-form .req {
  color: var(--signal-deep);
}

.legal-form .form-hint {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.legal-form-col .form-card {
  position: relative;
}

@media (max-width: 860px) {
  .legal-layout,
  .legal-layout--form {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .legal-aside-card {
    flex: 1 1 240px;
  }
}
