:root {
  --bg: #f4eddf;
  --bg-alt: #efe7d6;
  --brand: #21503b;
  --brand-hover: #1a4530;
  --accent: #c26a45;
  --accent-2: #c7a24e;
  --ink: #1e1b17;
  --body: #5a5650;
  --on-brand: #f4eddf;
  --border: #e2d9c6;
  --footer-bg-solid: #35604b;
  --footer-bg: rgba(33, 80, 59, 0.88);
  --footer-heading: #f4eddf;
  --footer-text: #cfe0d3;
  --font: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --color-ink: var(--ink);
  --color-teal: var(--brand);
  --color-moss: var(--body);
  --color-paper: var(--bg);
  --color-sheet: #fffaf2;
  --color-line: var(--border);
  --color-clay: var(--accent);
  --color-clay-dark: #9f5334;
  --color-source: rgba(33, 80, 59, 0.08);
  --color-caution: var(--accent-2);
  --color-critical: #9b3a30;
  --cta-primary-text: var(--on-brand);
  --cta-primary-border: var(--brand);
  --cta-primary-border-hover: var(--brand-hover);
  --cta-primary-bg: var(--brand);
  --cta-primary-bg-hover: var(--brand-hover);
  --cta-primary-shadow: 0 8px 18px rgba(33, 80, 59, 0.1);
  --cta-primary-shadow-hover: 0 10px 20px rgba(33, 80, 59, 0.13);
  --cta-primary-focus: rgba(199, 162, 78, 0.55);
  --cta-primary-focus-glow: rgba(199, 162, 78, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --max-page: 1120px;
  --max-reading: 720px;
  --max-flow: 820px;
  --max-report: 920px;
  --shadow-soft: 0 12px 34px rgba(23, 35, 31, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--body);
  background: var(--color-paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
}

main {
  flex: 1 0 auto;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-sheet);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(244, 237, 223, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.site-header-report {
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--color-teal);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.brand > span:last-child {
  display: block;
  line-height: 1;
  transform: translateY(2px);
}

.site-header .brand {
  gap: 0;
}

.header-brand-logo {
  display: block;
  width: clamp(96px, 7.8vw, 116px);
  height: auto;
  max-height: 37px;
  object-fit: contain;
  transform: translateY(1px);
}

.site-header-report .brand:not([href]) {
  cursor: default;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-teal);
  background: var(--color-source);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark-logo {
  background: transparent;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav a,
.footer-links a {
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--brand-hover);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(33, 80, 59, 0.32);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-teal) !important;
}

.nav-cta:hover {
  border-color: var(--color-teal);
  background: rgba(33, 80, 59, 0.08);
}

.site-header-primary-cta .nav-cta {
  border-color: rgba(33, 80, 59, 0.32);
  background: transparent;
  color: var(--brand) !important;
}

.site-header-primary-cta .nav-cta:hover {
  border-color: var(--brand);
  background: rgba(33, 80, 59, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-teal);
  background: var(--color-sheet);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  position: sticky;
  top: 76px;
  z-index: 19;
  padding: 10px 20px 18px;
  background: var(--color-sheet);
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(100%, var(--max-page));
  margin: 0 auto;
}

#hoe-het-werkt,
#zorgplan-preview,
#veelgestelde-vragen {
  scroll-margin-top: 76px;
}

.hero {
  padding-top: clamp(32px, 6vw, 58px);
  padding-bottom: clamp(32px, 6vw, 62px);
}

.hero .section-inner {
  width: min(100%, 1200px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(42px, 5.5vw, 76px);
  align-items: center;
  justify-items: stretch;
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.hero h1,
.page-title {
  margin: 0;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 11.75em;
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero-title-main,
.hero-title-question {
  display: block;
}

.page-title {
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero p,
.lead {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--color-moss);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero p {
  max-width: 570px;
  margin-right: 0;
  margin-left: 0;
}

.hero p + p {
  margin-top: 10px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 540px);
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(23, 35, 31, 0.1));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--cta-primary-border);
  border-radius: 7px;
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  box-shadow: var(--cta-primary-shadow);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--cta-primary-border-hover);
  background: var(--cta-primary-bg-hover);
  color: var(--cta-primary-text);
  box-shadow: var(--cta-primary-shadow-hover);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled,
.option:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.button.secondary {
  color: var(--color-teal);
  background: transparent;
  border-color: rgba(33, 80, 59, 0.32);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(33, 80, 59, 0.08);
  border-color: var(--brand);
  box-shadow: none;
}

.button.ghost {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--color-teal);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button.ghost:hover {
  background: rgba(142, 165, 154, 0.14);
  box-shadow: none;
}

main p a:not(.button),
main li a:not(.button),
main dd a:not(.button) {
  color: var(--brand);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

main p a:not(.button):hover,
main li a:not(.button):hover,
main dd a:not(.button):hover {
  color: var(--brand-hover);
}

main p a:not(.button):focus-visible,
main li a:not(.button):focus-visible,
main dd a:not(.button):focus-visible {
  border-radius: var(--radius-sm);
  outline: 2px solid var(--cta-primary-focus);
  outline-offset: 3px;
}

.band {
  background: rgba(255, 253, 248, 0.62);
}

.hero + .band {
  background: rgba(255, 253, 248, 0.68);
}

.homepage-topic-search + .band {
  background: rgba(255, 253, 248, 0.68);
}

#hoe-het-werkt {
  background: linear-gradient(180deg, rgba(33, 80, 59, 0.045), rgba(33, 80, 59, 0.025));
}

.zorgplan-section {
  background: linear-gradient(180deg, rgba(199, 162, 78, 0.055), rgba(255, 253, 248, 0.5));
}

.route-links-section {
  background: rgba(255, 253, 248, 0.5);
}

#veelgestelde-vragen {
  background: rgba(255, 253, 248, 0.58);
}

.final-cta {
  background: rgba(244, 237, 223, 0.28);
}

.organizations-page {
  padding-top: clamp(32px, 6vw, 58px);
  padding-bottom: clamp(34px, 6vw, 62px);
}

.organizations-hero-grid {
  width: min(100%, 1200px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(42px, 5.5vw, 76px);
  align-items: center;
  justify-items: stretch;
}

.organizations-hero-copy {
  max-width: 640px;
}

.organizations-hero-copy h1 {
  max-width: 11.75em;
  margin: 0;
  color: var(--color-ink);
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.organizations-hero-copy p {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--color-moss);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
}

.organizations-actions {
  margin-top: 24px;
}

.organizations-hero-media {
  justify-self: end;
  width: min(100%, 540px);
  margin: 0;
}

.organizations-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: none;
  filter: drop-shadow(0 14px 28px rgba(23, 35, 31, 0.07));
}

@media (min-width: 1180px) {
  .organizations-hero-media {
    width: clamp(560px, 46vw, 620px);
    transform: translateX(clamp(24px, 2.5vw, 36px));
  }
}

.organizations-reading {
  max-width: var(--max-flow);
}

.organizations-reading > p {
  max-width: var(--max-reading);
  margin: 22px 0 0;
  color: var(--color-ink);
  font-size: 1.08rem;
}

.organizations-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.organizations-card,
.organizations-audience-grid article {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.66);
  box-shadow: 0 14px 34px rgba(23, 35, 31, 0.035);
}

.organizations-card {
  padding: 24px 22px;
}

.organizations-card-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 16px;
  object-fit: contain;
}

.organizations-card h3,
.organizations-audience-grid h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.28;
}

.organizations-card p,
.organizations-audience-grid p {
  margin: 10px 0 0;
  color: var(--color-moss);
  font-size: 0.98rem;
  line-height: 1.55;
}

.organizations-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}

.organizations-list,
.organizations-privacy-panel ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.organizations-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 7px 18px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(226, 217, 198, 0.92);
}

.organizations-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.organizations-list span {
  grid-row: span 2;
  color: rgba(194, 106, 69, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.organizations-list strong {
  color: var(--color-ink);
  font-size: 1.06rem;
  line-height: 1.32;
}

.organizations-list p {
  margin: 0;
  color: var(--color-moss);
  line-height: 1.55;
}

.organizations-privacy-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.organizations-privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(33, 80, 59, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.68);
  color: var(--color-moss);
  box-shadow: 0 16px 42px rgba(23, 35, 31, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.organizations-privacy-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 2rem;
  line-height: 1.15;
}

.organizations-privacy-panel p {
  margin: 14px 0 0;
  color: var(--color-moss);
  line-height: 1.58;
}

.organizations-privacy-panel li {
  position: relative;
  min-width: 0;
  padding-left: 24px;
  color: var(--color-moss);
  line-height: 1.5;
}

.organizations-privacy-panel li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(33, 80, 59, 0.56);
  content: "";
}

.organizations-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.organizations-audience-grid article {
  padding: 22px;
}

.organizations-boundary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.organizations-boundary-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--color-clay);
  background: rgba(255, 253, 248, 0.76);
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.35;
}

.organizations-boundaries .organizations-split {
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 34px);
}

@media (min-width: 721px) {
  .organizations-boundary-list {
    column-gap: clamp(32px, 4vw, 58px);
    row-gap: 16px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(36, 84, 76, 0.12);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.5);
    box-shadow: 0 18px 48px rgba(23, 35, 31, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(10px);
  }

  .organizations-boundary-list p {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(23, 35, 31, 0.88);
    font-weight: 500;
    line-height: 1.32;
  }
}

.organizations-final {
  padding-top: 46px;
}

.organizations-final-panel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.organizations-final-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 2.35rem;
  line-height: 1.13;
  letter-spacing: 0;
}

.organizations-final-panel p {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--color-moss);
  font-size: 1.08rem;
}

.organizations-final-panel .organizations-actions {
  justify-content: center;
}

.section-heading {
  max-width: var(--max-reading);
}

.section-heading h2,
.flow-title {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.9375rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--color-moss);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.situation-card,
.step-card,
.route-card,
.faq-item,
.legal-panel,
.result-card,
.interest-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-sheet);
}

.situation-card {
  padding: 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.situation-card svg,
.step-icon,
.route-card svg {
  width: 30px;
  height: 30px;
  color: var(--color-teal);
}

.situation-card svg {
  width: 44px;
  height: 44px;
  padding: 5px;
  border: 1px solid rgba(36, 84, 76, 0.18);
  border-radius: var(--radius-md);
  background: rgba(220, 233, 237, 0.42);
}

.situation-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  object-fit: contain;
}

.situation-card h3,
.step-card h3,
.route-card h3,
.result-card h3 {
  margin: 14px 0 8px;
  color: var(--color-ink);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.28;
}

.situation-card p,
.step-card p,
.route-card p,
.result-card p {
  margin: 0;
  color: var(--color-moss);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero + .band .section-inner > p {
  max-width: 36rem;
  margin: 54px 0 0;
  color: var(--color-teal);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
}

.homepage-topic-search + .band .section-inner > p {
  max-width: 36rem;
  margin: 54px 0 0;
  color: var(--color-teal);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
}

.homepage-topic-search {
  text-align: center;
}

.homepage-topic-search .topic-search-panel {
  margin-right: auto;
  margin-left: auto;
}

.homepage-topic-search .topic-search-copy,
.homepage-topic-search .topic-search-status {
  text-align: center;
}

.homepage-topic-search .topic-search-control {
  margin-right: auto;
  margin-left: auto;
}

.homepage-topic-combobox {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
}

.homepage-topic-all {
  margin: 18px 0 0;
}

.homepage-topic-all-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 800;
}

.homepage-topic-search .topic-search-empty,
.homepage-topic-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(35, 70, 59, 0.15);
  text-align: left;
}

.homepage-topic-search .topic-search-empty {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.homepage-topic-search .topic-search-empty p {
  font-weight: 700;
}

.homepage-topic-suggestions {
  display: grid;
  max-height: min(340px, 54vh);
  padding: 0;
  list-style: none;
}

.homepage-topic-suggestions[hidden] {
  display: none;
}

.homepage-topic-suggestion {
  border-bottom: 1px solid var(--border);
}

.homepage-topic-suggestion:last-child {
  border-bottom: 0;
}

.homepage-topic-suggestion a {
  display: block;
  padding: 14px 18px;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.homepage-topic-suggestion a:hover,
.homepage-topic-suggestion a:focus-visible {
  background: rgba(33, 80, 59, 0.055);
  color: var(--brand-hover);
}

.homepage-topic-suggestion a:focus-visible {
  outline: 3px solid rgba(199, 162, 78, 0.55);
  outline-offset: -3px;
}

.topic-overview-page {
  background: rgba(255, 253, 248, 0.56);
}

.topic-overview-shell {
  width: min(100%, 1040px);
}

.topic-overview-header {
  max-width: 720px;
}

.topic-overview-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.12;
}

.topic-overview-header p:not(.seo-label) {
  margin: 14px 0 0;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.6;
}

.topic-search-panel {
  width: min(100%, 680px);
  margin-top: 34px;
}

.topic-search-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.18;
}

.topic-search-copy p {
  margin: 8px 0 0;
  color: var(--body);
  line-height: 1.55;
}

.topic-search-control {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 620px);
  height: 58px;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(35, 70, 59, 0.11);
}

.topic-search-icon {
  position: absolute;
  left: 22px;
  width: 21px;
  height: 21px;
  fill: var(--muted);
  pointer-events: none;
}

.topic-search-control input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 22px 0 56px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: none;
}

.topic-search-control input::placeholder {
  color: var(--muted);
  font-weight: 500;
  opacity: 1;
}

.topic-search-control:focus-within {
  border-color: rgba(33, 99, 84, 0.62);
  box-shadow: 0 0 0 4px rgba(199, 162, 78, 0.2), 0 14px 34px rgba(35, 70, 59, 0.12);
}

.topic-search-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.topic-search-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 760px);
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.topic-search-empty[hidden],
.topic-overview-list[hidden] {
  display: none;
}

.topic-search-empty p {
  margin: 0;
  color: var(--body);
  font-weight: 800;
  line-height: 1.45;
}

.topic-overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(34px, 6vw, 72px);
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.topic-overview-item {
  min-width: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--border);
}

.topic-overview-item a {
  color: var(--brand);
  font-weight: 800;
  line-height: 1.32;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.topic-overview-item a:hover {
  color: var(--brand-hover);
}

.topic-overview-item a:focus-visible {
  border-radius: var(--radius-sm);
  outline: 3px solid rgba(199, 162, 78, 0.55);
  outline-offset: 4px;
}

.topic-overview-item p {
  margin: 7px 0 0;
  color: var(--body);
  line-height: 1.52;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.step-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-card:last-child {
  border-right: 0;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-teal);
  background: var(--color-source);
  font-weight: 800;
}

.step-number-asset {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  width: 34px;
  height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.step-number-asset img {
  width: auto;
  max-width: 100%;
  height: 30px;
  object-fit: contain;
  opacity: 0.96;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.price-panel {
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--color-clay);
  background: var(--color-sheet);
  color: var(--color-ink);
  box-shadow: none;
}

.price-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.price {
  margin: 18px 0 6px;
  color: var(--color-clay-dark);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.price-panel p {
  color: var(--color-moss);
}

.price-panel .button {
  margin-top: 18px;
  width: 100%;
}

.zorgplan-section {
  scroll-margin-top: 92px;
  padding-top: clamp(34px, 4.8vw, 64px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.zorgplan-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  grid-template-areas:
    "intro intro"
    "benefits preview"
    "cta cta";
  gap: clamp(24px, 3.2vw, 42px) clamp(42px, 5.4vw, 68px);
  align-items: start;
}

.zorgplan-showcase-intro {
  grid-area: intro;
  justify-self: center;
  max-width: 760px;
  text-align: center;
}

.zorgplan-showcase .section-heading {
  max-width: 760px;
}

.zorgplan-showcase .section-heading h2 {
  font-size: 1.9375rem;
  line-height: 1.18;
}

.zorgplan-showcase .section-heading p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.zorgplan-benefit-list {
  grid-area: benefits;
  align-self: stretch;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 2px;
  border-top: 1px solid rgba(96, 122, 112, 0.14);
}

.zorgplan-benefit-item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  min-height: 0;
  padding: clamp(20px, 2.1vw, 30px) 0;
  border-bottom: 1px solid rgba(96, 122, 112, 0.14);
}

.zorgplan-benefit-item h3 {
  margin: 0 0 2px;
  color: var(--color-ink);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.28;
}

.zorgplan-benefit-item p {
  margin: 0;
  color: var(--color-moss);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.zorgplan-real-preview {
  position: relative;
  grid-area: preview;
  margin: 0;
  padding: clamp(16px, 2.1vw, 24px);
  border: 1px solid rgba(96, 122, 112, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 24px 58px rgba(23, 35, 31, 0.09);
}

.zorgplan-real-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.39;
  border: 1px solid rgba(36, 84, 76, 0.14);
  border-radius: var(--radius-md);
  object-fit: contain;
  object-position: top left;
  background: var(--color-sheet);
  box-shadow: 0 16px 34px rgba(23, 35, 31, 0.08);
}

.zorgplan-real-preview figcaption {
  max-width: 44rem;
  margin: 12px 2px 0;
  color: var(--color-moss);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.zorgplan-cta-strip {
  grid-area: cta;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(96, 122, 112, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 12px 28px rgba(23, 35, 31, 0.045);
}

.zorgplan-cta-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  min-width: 0;
}

.zorgplan-cta-strip strong {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 700;
}

.zorgplan-cta-strip span {
  color: var(--color-moss);
  font-size: 0.875rem;
  font-weight: 500;
}

.zorgplan-cta-strip .button {
  width: auto;
  min-width: 245px;
}

.route-links-section {
  padding-top: clamp(32px, 4vw, 52px);
}

.routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

.route-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.route-card:last-child {
  border-bottom: 0;
}

.route-card svg {
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.route-card h3 {
  margin: 0 0 2px;
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.faq-item {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--color-ink);
  font-weight: 800;
  cursor: pointer;
}

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

.faq-item summary:focus {
  outline: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(199, 162, 78, 0.55);
  outline-offset: -2px;
}

.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--color-teal);
  transition: transform 160ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  padding-bottom: 10px;
}

.faq-item p {
  margin: 0;
  max-width: 780px;
  padding: 2px 20px 24px;
  color: var(--color-moss);
  line-height: 1.65;
}

.final-cta {
  text-align: center;
}

.final-cta .section-heading {
  margin: 0 auto;
}

.final-cta-actions {
  justify-content: center;
}

.flow-shell {
  width: min(100%, var(--max-flow));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 52px) clamp(20px, 5vw, 36px) clamp(48px, 8vw, 76px);
}

.check-start-shell {
  width: min(100%, 1080px);
  padding-top: clamp(32px, 4vw, 48px);
}

.flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--color-moss);
  font-size: 0.95rem;
}

.flow-top a {
  color: var(--color-teal);
  font-weight: 700;
  text-decoration: none;
}

.progress {
  height: 6px;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-line);
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--color-moss);
  transition: width 220ms ease;
}

.question-panel {
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-sheet);
  box-shadow: none;
}

.check-start-panel {
  position: relative;
  overflow: visible;
  padding: clamp(30px, 5vw, 52px);
  border-color: rgba(222, 215, 203, 0.6);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 28px 70px rgba(23, 35, 31, 0.06);
}

.check-start-panel > :not(.check-start-visual) {
  position: relative;
  z-index: 1;
}

.check-start-visual {
  position: absolute;
  right: clamp(18px, 1.8vw, 26px);
  top: clamp(5px, 0.68vw, 9px);
  z-index: 2;
  width: clamp(370px, 31vw, 390px);
  max-width: 42%;
  margin: 0;
  pointer-events: none;
}

.check-start-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(23, 35, 31, 0.08));
  opacity: 0.94;
}

.check-start-button {
  min-width: min(100%, 430px);
  min-height: 52px;
  padding-right: 28px;
  padding-left: 28px;
  overflow-wrap: normal;
}

.check-start-panel .action-row {
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 30px;
  padding: 10px;
  border: 1px solid rgba(222, 215, 203, 0.56);
  border-radius: calc(var(--radius-md) + 4px);
  background: rgba(249, 246, 239, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.question-panel h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.16;
}

.question-panel .helper {
  margin: 8px 0 0;
  color: var(--color-moss);
}

.check-start-panel > .helper {
  max-width: min(100%, 560px);
}

.start-privacy-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  max-width: none;
  margin: 0;
  padding-right: 0;
  color: var(--color-teal);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
}

.start-privacy-note span:last-child {
  white-space: nowrap;
}

.start-privacy-icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
}

.start-privacy-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.question-panel .steps {
  margin-top: 46px;
}

.question-panel .start-steps {
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 24px);
}

.question-panel .start-step-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  align-items: start;
  text-align: center;
  gap: 12px;
  min-height: 100%;
  padding: 22px 22px 24px;
  border: 1px solid rgba(222, 215, 203, 0.66);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 34px rgba(23, 35, 31, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .question-panel .start-step-card:hover {
    border-color: rgba(142, 165, 154, 0.42);
    box-shadow: 0 20px 42px rgba(23, 35, 31, 0.06);
    transform: translateY(-1px);
  }
}

.question-panel .start-step-card > div {
  max-width: min(100%, 190px);
}

.start-step-icon {
  width: clamp(54px, 5vw, 66px);
  height: clamp(54px, 5vw, 66px);
  object-fit: contain;
}

.question-panel .start-step-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

.question-panel .start-step-card p {
  font-size: 0.96rem;
  line-height: 1.56;
}

.start-details {
  display: none;
  margin-top: 18px;
  border: 1px solid rgba(222, 215, 203, 0.66);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
}

.start-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 13px 16px;
  color: var(--color-teal);
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.start-details summary::-webkit-details-marker {
  display: none;
}

.start-details summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.start-details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.start-details-list {
  display: grid;
  gap: 0;
  padding: 0 16px 14px;
}

.start-details-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.start-details-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.start-details-item h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.28;
}

.start-details-item p {
  margin: 5px 0 0;
  color: var(--color-moss);
  font-size: 0.94rem;
  line-height: 1.45;
}

.options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 15px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: var(--color-sheet);
  text-align: left;
  cursor: pointer;
}

.option:hover,
.option[aria-pressed="true"] {
  border-color: var(--color-teal);
  background: var(--color-source);
}

.option[aria-pressed="true"] {
  box-shadow: inset 4px 0 0 var(--color-teal);
}

.option-dot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-moss);
  border-radius: 50%;
}

.option[aria-pressed="true"] .option-dot {
  border-color: var(--color-teal);
  box-shadow: inset 0 0 0 4px var(--color-source);
  background: var(--color-teal);
}

.option strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.04rem;
}

.option span:last-child {
  color: var(--color-moss);
  font-size: 0.96rem;
}

.flow-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.flow-actions .button {
  min-width: 132px;
}

@media (min-width: 921px) {
  .question-flow-shell {
    width: min(100%, 900px);
    padding: clamp(20px, 3.4vw, 34px) clamp(18px, 4vw, 34px) clamp(34px, 5vw, 52px);
  }

  .question-flow-shell .flow-top {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .question-flow-shell .progress {
    height: 5px;
    margin: 8px 0 14px;
  }

  .question-flow-shell .question-panel {
    padding: clamp(18px, 2.4vw, 22px);
  }

  .question-flow-shell .question-panel h1 {
    font-size: clamp(1.5rem, 1.9vw, 1.9rem);
    line-height: 1.13;
  }

  .question-flow-shell .question-panel .helper {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .question-flow-shell .options {
    gap: 6px;
    margin-top: 14px;
  }

  .question-flow-shell .option {
    grid-template-columns: 20px 1fr;
    gap: 10px;
    min-height: 48px;
    padding: 9px 12px;
  }

  .question-flow-shell .option strong {
    margin-bottom: 2px;
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .question-flow-shell .option span:last-child {
    font-size: 0.89rem;
    line-height: 1.25;
  }

  .question-flow-shell .flow-actions {
    margin-top: 14px;
  }
}

.result-hero {
  padding: clamp(28px, 4.8vw, 48px) clamp(20px, 5vw, 56px) clamp(40px, 5.8vw, 60px);
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  width: min(100%, 1160px);
  margin: 0 auto;
  gap: 20px;
  align-items: start;
}

.result-summary {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.result-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-clay-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-overview-card,
.result-panel,
.result-zorgplan-preview,
.result-action-panel {
  border: 1px solid rgba(36, 84, 76, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 10px 28px rgba(23, 35, 31, 0.05);
}

.result-overview-card {
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.76));
}

.result-overview-card .flow-title {
  margin-bottom: 10px;
}

.result-overview-card .lead {
  max-width: 720px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.48;
}

.result-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.result-status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(36, 84, 76, 0.11);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.76);
  color: var(--color-teal);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.result-primary-action {
  margin-top: clamp(14px, 2vw, 18px);
  padding-top: 12px;
  border-top: 1px solid rgba(36, 84, 76, 0.085);
}

.result-primary-action span {
  display: block;
  color: rgba(132, 71, 47, 0.76);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
}

.result-primary-action p {
  max-width: 680px;
  margin: 4px 0 0;
  color: var(--color-ink);
  font-size: clamp(0.96rem, 1.2vw, 1.04rem);
  font-weight: 650;
  line-height: 1.36;
}

.result-panel {
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 2.8vw, 24px);
}

.result-panel h2,
.result-zorgplan-preview h2,
.result-action-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.08rem, 1.55vw, 1.26rem);
  line-height: 1.2;
}

.result-panel p,
.result-zorgplan-preview p,
.result-action-panel p {
  margin: 8px 0 0;
  color: var(--color-moss);
}

.result-signal-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.result-signal-item {
  min-width: 0;
  padding: 10px 0;
}

.result-signal-item + .result-signal-item {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.result-signal-item strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.28;
}

.result-signal-item p {
  max-width: 660px;
  margin-top: 3px;
  font-size: 0.9rem;
  line-height: 1.38;
}

.result-panel-meta {
  margin-top: 12px;
  color: rgba(132, 71, 47, 0.78);
  font-size: 0.9rem;
  font-weight: 760;
}

.result-secondary-panel,
.result-pgb-panel {
  background: rgba(255, 253, 248, 0.58);
  box-shadow: 0 8px 20px rgba(23, 35, 31, 0.035);
}

.result-secondary-panel h2 {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

.result-boundary {
  margin-top: 0;
  padding: 13px 15px;
  border-color: rgba(36, 84, 76, 0.1);
  background: rgba(220, 233, 237, 0.52);
}

.result-boundary p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.result-zorgplan-inline-trigger {
  display: none;
  padding: clamp(15px, 2.2vw, 19px) clamp(16px, 2.4vw, 20px);
  border: 1px solid rgba(199, 162, 78, 0.42);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(199, 162, 78, 0.16), rgba(255, 253, 248, 0.74));
  box-shadow: 0 10px 28px rgba(23, 35, 31, 0.045);
}

.result-zorgplan-inline-trigger h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.12rem, 4.6vw, 1.28rem);
  line-height: 1.18;
}

.result-zorgplan-inline-trigger p {
  max-width: 34rem;
  margin: 7px 0 0;
  color: var(--color-moss);
  font-size: 0.92rem;
  line-height: 1.4;
}

.result-zorgplan-inline-trigger-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-teal);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.22;
  text-decoration: none;
}

.result-zorgplan-inline-trigger-link::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.result-zorgplan-inline-trigger-link::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 1px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.result-zorgplan-inline-trigger-link:hover {
  color: var(--brand-hover);
}

.result-zorgplan-preview {
  align-self: start;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.68));
}

.result-zorgplan-preview-header {
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.2vw, 20px) 12px;
  background: rgba(250, 247, 240, 0.44);
}

.result-zorgplan-preview .report-module-label {
  margin-bottom: 10px;
  color: var(--color-clay-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-zorgplan-preview-header h2 {
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
  line-height: 1.22;
}

.result-zorgplan-preview-header p {
  margin-top: 7px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.result-zorgplan-preview-list {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.result-zorgplan-preview-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  padding: 9px clamp(16px, 2.2vw, 20px);
}

.result-zorgplan-preview-row + .result-zorgplan-preview-row {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.result-zorgplan-preview-action {
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.result-zorgplan-preview .report-module-directory-copy {
  gap: 2px;
}

.result-zorgplan-preview .report-module-directory-copy strong {
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.2;
}

.result-zorgplan-preview .report-module-directory-copy small {
  font-size: 0.83rem;
  line-height: 1.32;
}

.result-zorgplan-cta {
  display: grid;
  gap: 8px;
  padding: clamp(15px, 2.2vw, 20px);
  border-top: 1px solid rgba(36, 84, 76, 0.08);
  background: rgba(250, 247, 240, 0.38);
}

.result-zorgplan-cta .button:not(.ghost) {
  min-height: 42px;
  border-color: var(--cta-primary-border);
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  font-weight: 700;
  box-shadow: var(--cta-primary-shadow);
}

.result-zorgplan-cta .button:not(.ghost):hover {
  border-color: var(--cta-primary-border-hover);
  background: var(--cta-primary-bg-hover);
  color: var(--cta-primary-text);
  box-shadow: var(--cta-primary-shadow-hover);
}

.result-zorgplan-cta .button,
.result-action-panel .button {
  width: 100%;
}

.result-zorgplan-cta .button.ghost {
  border-color: rgba(33, 80, 59, 0.28);
  background: rgba(255, 253, 248, 0.5);
  box-shadow: none;
}

.result-zorgplan-cta .button.ghost:hover {
  border-color: var(--brand);
  background: rgba(33, 80, 59, 0.08);
  box-shadow: none;
}

.result-zorgplan-cta .button.ghost,
.result-action-panel .button.ghost {
  color: var(--color-teal);
}

.result-action-panel {
  padding: clamp(22px, 3vw, 28px);
}

.route-rank {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.result-card {
  padding: 18px 20px;
  box-shadow: none;
}

.result-card:first-child {
  border-color: var(--color-clay);
  background: #fff9ef;
  box-shadow: inset 4px 0 0 var(--color-clay);
}

.result-card .meta {
  margin-top: 12px;
  color: var(--color-clay-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.notice {
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-source);
  color: var(--color-ink);
}

.start-disclosures {
  display: grid;
  gap: 10px;
  margin: 26px 0 34px;
}

.start-disclosure {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-sheet);
  color: var(--color-ink);
}

.start-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 13px 16px;
  color: var(--color-teal);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.start-disclosure summary::-webkit-details-marker {
  display: none;
}

.start-disclosure summary:focus {
  outline: none;
}

.start-disclosure summary:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: -3px;
}

.start-disclosure summary::after {
  display: inline-grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-source);
  color: var(--color-teal);
  content: "+";
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
}

.start-disclosure[open] summary {
  border-bottom: 1px solid var(--color-line);
}

.start-disclosure[open] summary::after {
  content: "-";
}

.start-disclosure p {
  max-width: 960px;
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--color-ink);
}

.result-boundary {
  margin-top: 18px;
}

.safety-notice {
  border-color: rgba(155, 58, 48, 0.34);
  background: #f8e6da;
  color: var(--color-ink);
}

.notice p {
  margin: 0;
}

.zorgplan-checkout-summary {
  display: block;
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(96, 122, 112, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.64);
}

.zorgplan-checkout-summary-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
}

.zorgplan-checkout-summary-toggle::-webkit-details-marker {
  display: none;
}

.zorgplan-checkout-summary-toggle::after {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--color-teal);
  border-bottom: 1.5px solid var(--color-teal);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.zorgplan-checkout-summary[open] .zorgplan-checkout-summary-toggle::after {
  transform: translateY(3px) rotate(225deg);
}

.zorgplan-checkout-summary-toggle > span {
  display: block;
  min-width: 0;
}

.zorgplan-checkout-summary-title {
  display: block;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.24;
}

.zorgplan-checkout-summary-body {
  display: grid;
  gap: 12px;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(96, 122, 112, 0.14);
}

.zorgplan-checkout-summary:not([open]) .zorgplan-checkout-summary-body {
  display: none;
}

.zorgplan-checkout-summary p {
  margin: 0;
  color: var(--color-moss);
  line-height: 1.55;
}

.zorgplan-checkout-checklist {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.zorgplan-checkout-checklist li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--color-ink);
  line-height: 1.42;
}

.zorgplan-checkout-check {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-top: 1px;
}

.zorgplan-checkout-check::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  content: "";
  transform: rotate(45deg);
}

.next-steps {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--color-ink);
}

.next-steps li + li {
  margin-top: 8px;
}

.order-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

@media (min-width: 900px) {
  .zorgplan-checkout-shell {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .zorgplan-checkout-shell .flow-top {
    margin-bottom: 12px;
    font-size: 0.9rem;
  }

  .zorgplan-checkout-panel {
    padding: 24px 26px;
  }

  .zorgplan-checkout-panel h1 {
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    line-height: 1.14;
  }

  .zorgplan-checkout-panel .helper {
    margin-top: 6px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-summary {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-summary-title {
    font-size: 0.94rem;
    line-height: 1.22;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-summary-body {
    gap: 9px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-summary p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-checklist {
    gap: 7px;
  }

  .zorgplan-checkout-panel .zorgplan-checkout-checklist li {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .zorgplan-checkout-panel .order-form {
    gap: 10px;
    margin-top: 14px;
  }

  .zorgplan-checkout-panel .field {
    gap: 4px;
  }

  .zorgplan-checkout-panel .field label {
    font-size: 0.92rem;
    font-weight: 700;
  }

  .zorgplan-checkout-panel .field input {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .zorgplan-checkout-panel .consent-list {
    gap: 8px;
    padding: 12px;
  }

  .zorgplan-checkout-panel .checkbox-row {
    grid-template-columns: 18px 1fr;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .zorgplan-checkout-panel .checkbox-row input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .zorgplan-checkout-panel .legal-note {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .zorgplan-checkout-panel .order-form .button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.94rem;
  }
}

.access-request-shell,
.access-error-shell {
  width: min(100%, 640px);
  padding-top: clamp(42px, 8vw, 78px);
  padding-bottom: clamp(58px, 9vw, 96px);
}

.access-request-panel,
.access-error-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(96, 122, 112, 0.22);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(250, 247, 240, 0.76));
  box-shadow: 0 18px 44px rgba(23, 35, 31, 0.055);
}

.access-request-panel h1,
.access-error-panel h1 {
  max-width: 13em;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.16;
  text-wrap: balance;
}

.access-request-panel h1 {
  white-space: nowrap;
}

.access-request-panel .helper,
.access-error-panel .helper {
  max-width: 540px;
  margin-top: 2px;
  font-size: 1.02rem;
  line-height: 1.56;
}

.access-privacy-note {
  margin: -2px 0 2px;
  padding: 11px 13px;
  border: 1px solid rgba(36, 84, 76, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(220, 233, 237, 0.32);
  color: var(--color-teal);
  font-size: 0.95rem;
  line-height: 1.45;
}

.access-request-form {
  display: grid;
  gap: 16px;
  margin-top: 2px;
}

.access-request-form .field {
  gap: 8px;
}

.access-request-form .field label {
  font-weight: 750;
}

.access-request-form .field input {
  min-height: 52px;
  border-color: rgba(96, 122, 112, 0.28);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.access-request-form .field input:hover {
  border-color: rgba(36, 84, 76, 0.34);
}

.access-request-form .button {
  justify-self: start;
  min-height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  border-color: var(--cta-primary-border);
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  font-weight: 700;
  box-shadow: var(--cta-primary-shadow);
}

.access-request-form .button:hover {
  border-color: var(--cta-primary-border-hover);
  background: var(--cta-primary-bg-hover);
  color: var(--cta-primary-text);
  box-shadow: var(--cta-primary-shadow-hover);
}

.access-error-note {
  border-color: rgba(96, 122, 112, 0.22);
  background: rgba(255, 253, 248, 0.72);
  color: var(--color-ink);
}

.access-error-actions {
  margin-top: 8px;
}

.access-error-actions .button.secondary {
  min-height: 50px;
  border-color: rgba(36, 84, 76, 0.18);
  background: rgba(255, 253, 248, 0.82);
}

.access-error-actions .button.secondary:hover {
  border-color: rgba(36, 84, 76, 0.36);
  background: rgba(220, 233, 237, 0.34);
}

.access-request-result {
  margin-top: 2px;
  border-color: rgba(36, 84, 76, 0.18);
  background: rgba(220, 233, 237, 0.28);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--color-ink);
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-ink);
  background: var(--color-sheet);
}

.field input:focus,
.field select:focus,
.option:focus,
.button:focus,
.checkbox-row input:focus,
.menu-toggle:focus {
  outline: 3px solid rgba(36, 84, 76, 0.28);
  outline-offset: 2px;
}

.button:not(.secondary):not(.ghost):focus-visible {
  outline: 3px solid var(--cta-primary-focus);
  outline-offset: 3px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.48),
    0 0 0 5px var(--cta-primary-focus-glow),
    0 8px 18px rgba(33, 80, 59, 0.1);
}

.field .field-error {
  margin: 2px 0 0;
  color: var(--color-critical);
  font-size: 0.94rem;
  font-weight: 700;
}

.municipality-field {
  position: relative;
  margin-top: 22px;
}

.municipality-combobox-shell {
  position: relative;
}

.municipality-combobox-input {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.municipality-combobox-input::placeholder {
  color: rgba(96, 122, 112, 0.84);
}

.municipality-listbox {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: min(360px, 46vh);
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(222, 215, 203, 0.82);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 40px rgba(23, 35, 31, 0.11);
}

.municipality-option,
.municipality-empty {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--color-ink);
  line-height: 1.35;
}

.municipality-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.municipality-option:hover,
.municipality-option[aria-selected="true"] {
  background: rgba(220, 233, 237, 0.58);
}

.municipality-empty {
  color: var(--color-moss);
  font-style: italic;
}

.municipality-status {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field p,
.select-field p,
.legal-note,
.tax-note {
  margin: 2px 0 0;
  color: var(--color-moss);
  font-size: 0.94rem;
}

.consent-list {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(250, 247, 240, 0.56);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.4;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--color-teal);
}

.privacy-warning,
.safety-notice,
.magic-link {
  margin-top: 20px;
}

.report-shell {
  width: min(100%, 1120px);
  max-width: 100%;
}

.zorgplan-report {
  display: grid;
  gap: 16px;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow-wrap: anywhere;
}

.report-header,
.report-section {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px) 0;
  border: 0;
  border-top: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.report-header {
  max-width: 760px;
  padding: 4px 0 clamp(8px, 1.4vw, 12px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}

.report-header h1,
.report-section h3 {
  margin: 0;
  line-height: 1.15;
}

.report-header h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.38rem);
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.report-section h3 {
  font-size: clamp(1.14rem, 1.7vw, 1.32rem);
  font-weight: 790;
  overflow-wrap: anywhere;
}

.report-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  align-items: flex-start;
  gap: 4px 14px;
}

.report-section-heading h3 {
  min-width: 0;
}

.report-section-heading .report-module-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.report-section-heading .copy-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.report-header p,
.report-section p {
  margin: 8px 0 0;
  color: var(--color-moss);
}

.report-header p {
  max-width: 720px;
}

.report-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--color-ink);
}

.report-section li + li {
  margin-top: 6px;
}

.report-section-value-summary,
.report-section-top-actions,
.report-section-start-links,
.report-section-top-proof {
  padding: clamp(18px, 2.6vw, 24px) clamp(18px, 2.8vw, 26px);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.report-module-label {
  display: block;
  margin: 0 0 6px;
  color: rgba(132, 71, 47, 0.76);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.report-workspace {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: start;
}

.report-workspace-rail {
  position: sticky;
  top: 18px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(36, 84, 76, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 22px rgba(23, 35, 31, 0.045);
}

.report-workspace-rail-heading strong {
  display: block;
  padding: 4px 6px 0;
  color: var(--color-ink);
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.25;
}

.report-workspace-rail-heading .report-module-label {
  padding: 4px 6px 0;
}

.report-workspace-rail nav {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.report-workspace-rail a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--color-teal);
  text-decoration: none;
  box-shadow: inset 2px 0 0 transparent;
}

.report-workspace-rail a:hover,
.report-workspace-rail a:focus-visible,
.report-workspace-rail a[aria-current="true"] {
  background: rgba(255, 255, 255, 0.68);
}

.report-workspace-rail a[aria-current="true"] span {
  color: var(--color-teal);
}

.report-workspace-rail a[aria-current="true"] {
  border-color: rgba(36, 84, 76, 0.12);
  box-shadow: inset 2px 0 0 rgba(36, 84, 76, 0.42);
}

.report-workspace-rail a:focus-visible {
  outline: 2px solid rgba(36, 84, 76, 0.26);
  outline-offset: 3px;
}

.report-workspace-rail span,
.report-workspace-rail small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-workspace-rail a span {
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1.25;
}

.report-workspace-rail a small {
  color: var(--color-moss);
  font-size: 0.82rem;
  line-height: 1.32;
}

.report-workspace-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.report-dashboard,
.report-active-module {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.report-dashboard-link {
  justify-self: start;
  color: var(--color-teal);
  font-size: 0.92rem;
  font-weight: 740;
  text-decoration: none;
}

.report-dashboard-link:hover,
.report-dashboard-link:focus-visible {
  text-decoration: underline;
}

.report-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  min-width: 0;
  border: 1px solid rgba(36, 84, 76, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 8px 24px rgba(23, 35, 31, 0.045);
  overflow: hidden;
}

.report-module-grid > .report-section {
  margin: 0;
}

.report-module-grid > .report-section + .report-section {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
  border-left: 0;
}

.report-map-module {
  padding: clamp(18px, 2.6vw, 24px) clamp(18px, 2.8vw, 26px);
  border: 1px solid rgba(36, 84, 76, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 24px rgba(23, 35, 31, 0.045);
}

.report-map-module > .report-section-heading + p {
  max-width: 720px;
}

.report-value-strip > .report-section-heading + p {
  margin-bottom: clamp(8px, 1.1vw, 14px);
}

.report-value-strip {
  padding: clamp(16px, 2.25vw, 22px) clamp(18px, 2.65vw, 24px);
  border: 1px solid rgba(36, 84, 76, 0.09);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.72));
  box-shadow: 0 10px 28px rgba(23, 35, 31, 0.05);
}

.report-value-strip h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.25;
}

.report-value-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.report-value-strip-item {
  min-width: 0;
  padding: 9px 0;
  border: 0;
  border-top: 1px solid rgba(36, 84, 76, 0.075);
  border-radius: 0;
  background: transparent;
}

.report-module-directory {
  overflow: hidden;
  border: 1px solid rgba(36, 84, 76, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 24px rgba(23, 35, 31, 0.045);
}

.report-module-directory-primary {
  background: rgba(255, 253, 248, 0.82);
}

.report-module-directory-header {
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.8vw, 26px) 14px;
  background: rgba(250, 247, 240, 0.42);
}

.report-module-directory-header h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.18rem, 1.8vw, 1.38rem);
  line-height: 1.18;
}

.report-module-directory-header p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--color-moss);
  font-size: 0.98rem;
}

.report-module-directory-list {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-module-directory-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 2.8vw, 26px);
  color: inherit;
  text-decoration: none;
  transition: background-color 0.16s ease;
}

.report-module-directory-row + .report-module-directory-row {
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-module-directory-row:hover,
.report-module-directory-row:focus-visible {
  background: rgba(255, 255, 255, 0.62);
}

.report-module-directory-row[aria-current="true"] {
  background: rgba(220, 233, 237, 0.16);
  box-shadow: inset 2px 0 0 rgba(36, 84, 76, 0.34);
}

.report-module-directory-row:focus-visible {
  outline: 2px solid rgba(36, 84, 76, 0.24);
  outline-offset: -2px;
}

.report-module-index {
  color: rgba(132, 71, 47, 0.76);
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1;
  tab-size: 4;
}

.report-module-directory-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.report-module-directory-copy strong,
.report-module-directory-copy small,
.report-module-directory-action {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-module-directory-copy strong {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.25;
}

.report-module-directory-copy small {
  color: var(--color-moss);
  font-size: 0.94rem;
  line-height: 1.45;
}

.report-module-directory-action {
  color: var(--color-teal);
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
}

.report-module-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.report-module-pager a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(36, 84, 76, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.58);
  color: inherit;
  text-decoration: none;
}

.report-module-pager a:hover,
.report-module-pager a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.report-module-pager span {
  color: var(--color-moss);
  font-size: 0.78rem;
  font-weight: 730;
}

.report-module-pager strong {
  min-width: 0;
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-module-subsection-list {
  margin-top: 16px;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-module-subsection {
  min-width: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-module-subsection-list .report-module-subsection {
  border-top: 0;
  border-bottom: 1px solid rgba(36, 84, 76, 0.08);
}

.report-module-subsection-list .report-module-subsection:last-child {
  border-bottom: 0;
}

.report-map-module > .report-module-subsection:first-of-type,
.report-module-timeline {
  margin-top: 16px;
}

.report-module-subsection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
}

.report-module-subsection-heading h4 {
  min-width: 0;
  margin: 0;
  color: var(--color-ink);
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-module-subsection-heading .copy-button {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.report-module-subsection > p {
  margin-top: 8px;
}

.report-section-top-actions .report-module-subsection-start-links {
  margin-top: 16px;
  padding: 16px 0;
}

.report-section-top-actions .report-start-link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.report-value-strip-item strong,
.report-value-strip-item span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-value-strip-item strong {
  color: rgba(132, 71, 47, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.report-value-strip-item span {
  margin-top: 4px;
  color: var(--color-ink);
  line-height: 1.35;
  font-weight: 710;
}

.report-action-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: report-action;
}

.report-action-list li {
  counter-increment: report-action;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: start;
  min-width: 0;
  padding: 11px 0;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
  color: var(--color-ink);
}

.report-action-list li::before {
  content: counter(report-action);
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(36, 84, 76, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1;
}

.report-start-link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-start-link {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: 0;
  background: transparent;
  color: var(--color-teal);
  text-decoration: none;
}

.report-start-link span {
  color: rgba(132, 71, 47, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.report-start-link strong {
  color: var(--color-teal);
  font-weight: 720;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-detail-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.report-detail-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  min-width: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(36, 84, 76, 0.08);
}

.report-detail-list dt {
  color: rgba(132, 71, 47, 0.78);
  font-size: 0.82rem;
  font-weight: 730;
  letter-spacing: 0;
  text-transform: none;
}

.report-detail-list dd {
  min-width: 0;
  margin: 0;
  color: var(--color-ink);
  overflow-wrap: anywhere;
}

.report-groups {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.report-group {
  padding: 0 0 14px;
}

.report-group h4 {
  margin: 0 0 6px;
  color: var(--color-ink);
  font-size: 1rem;
}

.report-group ul {
  margin-top: 0;
}

.copy-text-block {
  margin: 14px 0 0;
  padding: 16px;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.38);
  color: var(--color-ink);
  font: inherit;
  line-height: 1.65;
  white-space: pre-wrap;
}

.copy-button {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  align-items: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
  color: var(--color-teal);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.copy-button:hover,
.copy-button.is-copied {
  border-color: var(--color-teal);
  background: var(--color-source);
}

.copy-button:focus-visible {
  outline: 2px solid rgba(36, 84, 76, 0.28);
  outline-offset: 2px;
}

.copy-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 2px;
  background: var(--color-sheet);
}

.copy-icon::before {
  left: 1px;
  top: 3px;
}

.copy-icon::after {
  left: 5px;
  top: 0;
}

.copy-button.is-copied .copy-icon::before {
  left: 5px;
  top: 0;
  width: 6px;
  height: 13px;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
}

.copy-button.is-copied .copy-icon::after {
  display: none;
}

.copy-feedback {
  color: var(--color-moss);
  font-size: 0.88rem;
}

.report-section-safety {
  padding: 20px;
  border: 1px solid rgba(155, 58, 48, 0.28);
  border-radius: var(--radius-md);
  border-top-color: rgba(155, 58, 48, 0.28);
  background: #f8e6da;
}

.report-section-source-links,
.report-section-municipality {
  padding: 20px;
  border: 1px solid rgba(36, 84, 76, 0.16);
  border-radius: var(--radius-md);
  background: rgba(220, 233, 237, 0.42);
}

.report-section-today,
.report-section-this-week,
.report-section-thirty-days {
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.report-section-example-message,
.report-section-phone-script {
  padding: 17px 18px;
  border: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.38);
}

.evidence-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
}

.evidence-item {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: 0;
  background: transparent;
}

.evidence-item strong {
  line-height: 1.2;
}

.evidence-item p {
  margin: 6px 0 0;
  font-size: 0.96rem;
}

.evidence-item small {
  display: block;
  margin-top: 6px;
  color: var(--color-moss);
  font-size: 0.9rem;
}

.evidence-action {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.report-proof-list {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0;
}

.report-proof-card {
  padding: 13px 0;
  border: 0;
  border-top: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: 0;
  background: transparent;
}

.evidence-source {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  color: var(--color-moss);
  font-size: 0.88rem;
  font-weight: 700;
}

.evidence-source a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid rgba(36, 84, 76, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.86);
  color: var(--color-teal);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.report-disclosure {
  min-width: 0;
  border: 1px solid rgba(36, 84, 76, 0.08);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.32);
  overflow: hidden;
}

.report-disclosure > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--color-teal);
  cursor: pointer;
  list-style: none;
}

.report-disclosure > summary::-webkit-details-marker {
  display: none;
}

.report-disclosure > summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(36, 84, 76, 0.12);
  border-radius: 999px;
  color: var(--color-teal);
  font-weight: 800;
  line-height: 1;
}

.report-disclosure[open] > summary {
  border-bottom: 1px solid rgba(36, 84, 76, 0.08);
}

.report-disclosure[open] > summary::after {
  content: "-";
}

.report-disclosure-title,
.report-disclosure-hint {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-disclosure-title {
  color: var(--color-ink);
  font-weight: 760;
  line-height: 1.25;
}

.report-disclosure-hint {
  color: var(--color-moss);
  font-size: 0.9rem;
  font-weight: 500;
}

.report-disclosure-content {
  padding: 0 16px 16px;
}

.report-disclosure-actions {
  display: flex;
  justify-content: flex-end;
  margin: 6px 0 0;
}

.report-disclosure-content > p {
  margin: 10px 0 0;
  color: var(--color-moss);
}

.report-disclosure-actions .copy-button {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-color: transparent;
  background: transparent;
  color: rgba(36, 84, 76, 0.72);
  opacity: 0.78;
}

.report-disclosure-actions .copy-button:hover,
.report-disclosure-actions .copy-button.is-copied {
  border-color: rgba(36, 84, 76, 0.16);
  background: rgba(220, 233, 237, 0.22);
  opacity: 1;
}

.report-disclosure-actions .copy-icon {
  width: 14px;
  height: 14px;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(220, 233, 237, 0.22);
}

.source-list strong {
  width: fit-content;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.82);
  color: var(--color-teal);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.source-list a {
  color: var(--color-teal);
  line-height: 1.25;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.source-list p {
  margin: 0;
  font-size: 0.95rem;
}

.source-list span {
  width: fit-content;
  padding-top: 2px;
  color: var(--color-moss);
  font-size: 0.86rem;
  font-weight: 700;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 900px));
  justify-content: center;
  gap: 0;
  align-items: start;
}

.municipality-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  justify-content: stretch;
  gap: clamp(28px, 5vw, 54px);
}

.seo-article {
  width: 100%;
  max-width: 900px;
}

.breadcrumb-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-teal);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-article h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}

.seo-boundary,
.seo-summary,
.seo-question-block,
.seo-section,
.seo-related,
.seo-cta,
.seo-bottom-sources,
.seo-source-panel {
  margin-top: 28px;
}

.seo-summary,
.seo-question-block,
.seo-section,
.seo-related,
.seo-cta {
  padding-top: 30px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-summary h2,
.seo-inline-trust h2,
.seo-question-block h2,
.seo-section h2,
.seo-related h2,
.seo-cta h2,
.seo-bottom-sources h2,
.seo-source-panel h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.25rem, 2.2vw, 1.58rem);
  line-height: 1.18;
}

.seo-summary ul,
.seo-related ul,
.seo-inline-trust p,
.seo-section p,
.seo-cta p,
.seo-bottom-sources p,
.seo-source-panel p {
  margin: 12px 0 0;
}

.seo-question-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.seo-question-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(36, 84, 76, 0.12);
}

.seo-question-item h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.35;
}

.seo-question-item p {
  margin: 6px 0 0;
  color: var(--color-moss);
}

.seo-summary ul {
  padding-left: 20px;
}

.seo-summary li + li {
  margin-top: 8px;
}

.seo-related ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.seo-related li {
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(36, 84, 76, 0.12);
}

.seo-question-item:last-child,
.seo-related li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.seo-related a {
  color: var(--color-teal);
  font-weight: 800;
}

.seo-related p {
  margin: 4px 0 0;
  color: var(--color-moss);
}

.seo-boundary-toggle {
  border-top: 1px solid rgba(36, 84, 76, 0.13);
  border-bottom: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-boundary-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  color: var(--color-teal);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.seo-boundary-toggle summary::-webkit-details-marker {
  display: none;
}

.seo-boundary-toggle summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-moss);
  font-size: 1.2rem;
  line-height: 1;
}

.seo-boundary-toggle[open] summary::after {
  content: "-";
}

.seo-boundary-toggle div {
  padding: 0 0 16px;
}

.seo-boundary-toggle p {
  margin: 0;
  color: var(--color-moss);
}

.seo-boundary-toggle p + p {
  margin-top: 8px;
}

.seo-ai-blocks {
  margin-top: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-ai-block-list {
  display: grid;
  gap: 18px;
}

.seo-ai-block {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(36, 84, 76, 0.12);
}

.seo-ai-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.seo-ai-block h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  line-height: 1.24;
}

.seo-ai-block p {
  margin: 8px 0 0;
  color: var(--color-moss);
}

.seo-safe-snippets {
  margin-top: 28px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
  border-bottom: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-safe-snippets summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  color: var(--color-teal);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.seo-safe-snippets summary::-webkit-details-marker {
  display: none;
}

.seo-safe-snippets summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-moss);
  font-size: 1.2rem;
  line-height: 1;
}

.seo-safe-snippets[open] summary::after {
  content: "-";
}

.seo-safe-snippets ul {
  margin: 0;
  padding: 0 0 16px 20px;
  color: var(--color-moss);
}

.seo-safe-snippets li {
  margin: 0;
}

.seo-safe-snippets li + li {
  margin-top: 8px;
}

.seo-safe-snippets:not([open]) ul {
  display: none;
}

.seo-safe-snippets[open] ul {
  display: block;
}

.seo-bottom-disclosures {
  margin-top: 16px;
}

.seo-bottom-disclosures .seo-safe-snippets {
  margin-top: 0;
}

.seo-bottom-disclosures .seo-boundary-toggle {
  margin-top: 0;
  border-top: 0;
}

.seo-section p,
.seo-cta p,
.seo-inline-trust p,
.seo-bottom-sources p,
.seo-source-panel p {
  color: var(--color-moss);
}

.seo-cta {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-clay);
  border-radius: var(--radius-md);
  background: var(--color-sheet);
}

.seo-cta .button {
  margin-top: 18px;
}

.seo-inline-trust {
  padding: 18px 0 20px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
  border-bottom: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-inline-trust h2 {
  font-size: 1rem;
  line-height: 1.28;
}

.seo-inline-trust p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.seo-inline-trust a {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-teal);
  font-size: 0.94rem;
  font-weight: 800;
}

.seo-inline-trust + .seo-summary {
  padding-top: 0;
  border-top: 0;
}

.seo-bottom-sources {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-bottom-sources .source-list {
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 12px;
}

.seo-bottom-sources .source-list li {
  padding: 12px 13px;
  border-color: rgba(36, 84, 76, 0.14);
  border-left-color: rgba(36, 84, 76, 0.42);
  background: rgba(255, 253, 248, 0.58);
}

.seo-bottom-sources .source-list strong {
  background: transparent;
  padding: 0;
}

.seo-bottom-sources .source-list span {
  color: rgba(96, 122, 112, 0.88);
  font-size: 0.83rem;
  font-weight: 500;
}

.seo-guide-shell {
  display: block;
  max-width: 760px;
}

.seo-guide-article,
.seo-content-column {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.seo-guide-header {
  padding-bottom: clamp(26px, 5vw, 42px);
  border-bottom: 1px solid rgba(36, 84, 76, 0.14);
}

.seo-label {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.seo-guide-header h1 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1.08;
}

.seo-intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--color-moss);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.65;
}

.seo-guide-note {
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid rgba(191, 105, 60, 0.42);
  color: var(--color-moss);
  font-size: 1rem;
  line-height: 1.65;
}

.seo-guide-note span {
  color: var(--color-ink);
  font-weight: 800;
}

.seo-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 18px;
  border: 1px solid var(--cta-primary-border);
  border-radius: var(--radius-sm);
  background: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  box-shadow: var(--cta-primary-shadow);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.seo-primary-cta:hover {
  border-color: var(--cta-primary-border-hover);
  background: var(--cta-primary-bg-hover);
  color: var(--cta-primary-text);
  box-shadow: var(--cta-primary-shadow-hover);
}

.seo-primary-cta:focus-visible {
  outline: 3px solid var(--cta-primary-focus);
  outline-offset: 3px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.48),
    0 0 0 5px var(--cta-primary-focus-glow),
    0 8px 18px rgba(33, 80, 59, 0.1);
}

.seo-reading-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 28px;
  padding: 12px 0;
  border-top: 1px solid rgba(36, 84, 76, 0.12);
  border-bottom: 1px solid rgba(36, 84, 76, 0.12);
  color: var(--color-moss);
  font-size: 0.92rem;
  line-height: 1.3;
}

.seo-reading-route span {
  color: var(--color-ink);
  font-weight: 800;
}

.seo-reading-route a {
  color: var(--color-teal);
  font-weight: 750;
  text-decoration: none;
}

.seo-reading-route a:hover,
.seo-final-note a:hover,
.seo-related-links a:hover {
  text-decoration: underline;
}

.seo-content-column {
  margin-top: clamp(28px, 5vw, 42px);
}

.seo-guide-section,
.seo-checklist-section,
.seo-next-steps,
.seo-related-links,
.seo-sources,
.seo-final-note {
  scroll-margin-top: 92px;
}

.seo-guide-section .seo-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.seo-text-section {
  max-width: 700px;
}

.seo-checklist-section,
.seo-next-steps,
.seo-related-links,
.seo-sources,
.seo-final-note {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(36, 84, 76, 0.13);
}

.seo-checklist-section h2,
.seo-next-steps h2,
.seo-related-links h2,
.seo-sources h2,
.seo-final-note h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.22rem, 2.2vw, 1.5rem);
  line-height: 1.2;
}

.seo-checklist {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(36, 84, 76, 0.1);
  color: var(--color-moss);
  line-height: 1.58;
}

.seo-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seo-check-number {
  color: rgba(36, 84, 76, 0.62);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.7;
}

.seo-next-steps {
  padding-left: 18px;
  border-left: 3px solid rgba(36, 84, 76, 0.22);
}

.seo-next-steps ul,
.seo-final-note p {
  margin: 14px 0 0;
}

.seo-next-steps ul {
  display: grid;
  gap: 8px;
  padding-left: 19px;
  color: var(--color-moss);
}

.seo-related-links ul {
  gap: 0;
  margin-top: 14px;
}

.seo-related-links li {
  display: grid;
  gap: 5px;
  padding: 14px 0;
}

.seo-related-context {
  color: var(--color-moss);
  font-size: 0.95rem;
  line-height: 1.45;
}

.seo-related-links a,
.seo-final-note a {
  color: var(--color-teal);
  font-weight: 800;
}

.seo-sources {
  position: relative;
}

.seo-anchor-alias {
  position: absolute;
  top: -92px;
}

.seo-sources > p {
  max-width: 680px;
  margin-top: 10px;
}

.seo-sources .source-list {
  display: block;
  margin-top: 16px;
}

.seo-sources .source-list li {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border: 0;
  border-top: 1px solid rgba(36, 84, 76, 0.11);
  border-radius: 0;
  background: transparent;
}

.seo-sources .source-list strong {
  padding: 0;
  background: transparent;
  color: rgba(36, 84, 76, 0.72);
  font-size: 0.74rem;
}

.seo-sources .source-list p {
  color: var(--color-moss);
  font-size: 0.92rem;
  line-height: 1.5;
}

.seo-final-note {
  padding-bottom: 8px;
}

.seo-final-note p {
  color: var(--color-moss);
}

.municipality-boundary {
  border-left-color: var(--color-teal);
}

.municipality-source-group {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.municipality-source-group h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.25rem, 2.2vw, 1.58rem);
  line-height: 1.18;
}

.municipality-source-group > p {
  margin: 12px 0 0;
  color: var(--color-moss);
}

.municipality-preview-panel .button {
  margin-top: 16px;
  width: 100%;
}

.seo-source-panel {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid rgba(36, 84, 76, 0.16);
  border-radius: var(--radius-md);
  background: rgba(220, 233, 237, 0.34);
}

.seo-source-panel .source-list {
  grid-template-columns: 1fr;
}

.first-click-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.first-click-list li {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-top: 1px solid var(--color-line);
}

.first-click-list strong {
  color: var(--color-clay-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.first-click-list a {
  color: var(--color-teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.confirmation {
  padding: 24px;
  border: 1px solid var(--color-moss);
  border-radius: var(--radius-md);
  background: var(--color-source);
}

.confirmation h2 {
  margin: 0 0 8px;
}

.legal-panel {
  max-width: min(100%, 780px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 38px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.legal-panel h1 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.12;
}

.legal-panel h2 {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  font-size: 1.22rem;
}

.legal-panel p,
.legal-panel li {
  max-width: var(--max-reading);
  color: var(--color-ink);
}

.site-footer {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  max-width: 100%;
  border-top: 1px solid rgba(244, 237, 223, 0.18);
  border-radius: 28px 28px 0 0;
  background: var(--footer-bg-solid);
  background: var(--footer-bg);
  color: var(--footer-text);
  overflow: hidden;
  overflow-wrap: anywhere;
}

.footer-shell {
  width: min(100%, var(--max-page));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 64px) clamp(20px, 5vw, 56px) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.55fr) minmax(150px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-mobile-only {
  display: none;
}

.footer-column-mantl {
  padding-left: 18px;
}

.footer-brand {
  color: var(--footer-heading);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
}

.site-footer .brand-mark {
  color: var(--footer-heading);
  background: rgba(244, 237, 223, 0.12);
}

.site-footer .footer-brand-mark-logo {
  background: transparent;
}

.footer-brand-logo {
  display: block;
  width: clamp(92px, 6.4vw, 96px);
  height: auto;
  max-height: 31px;
  object-fit: contain;
  opacity: 0.96;
}

.footer-column > h2 {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 14px;
  color: var(--footer-heading);
  font-size: 1rem;
  line-height: 1.1;
}

.footer-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.site-footer p {
  max-width: 34rem;
  margin: 0;
  color: var(--footer-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-line,
.footer-disclaimer {
  overflow-wrap: anywhere;
}

.site-footer .footer-links {
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
}

.footer-column-mantl .footer-links {
  padding-top: 8px;
}

.footer-column-legal .footer-links {
  padding-top: 8px;
}

.site-footer a {
  color: var(--footer-text);
}

.site-footer .footer-links a {
  color: var(--footer-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer .footer-line a[href^="mailto:"] {
  color: var(--footer-heading);
  text-decoration-line: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

.site-footer a:hover,
.site-footer .footer-links a:hover {
  color: var(--footer-heading);
}

.site-footer a:focus {
  outline: none;
}

.site-footer a:focus-visible {
  border-radius: var(--radius-sm);
  outline: 2px solid rgba(199, 162, 78, 0.62);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px 32px;
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 18px;
  border-top: 1px solid rgba(244, 237, 223, 0.22);
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-bottom p:first-child {
  color: var(--footer-heading);
  font-weight: 700;
}

.footer-disclaimer {
  max-width: 520px;
  text-align: right;
}

@media (max-width: 920px) {
  .split,
  .zorgplan-showcase,
  .organizations-split,
  .organizations-privacy-panel,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .zorgplan-showcase {
    grid-template-areas:
      "intro"
      "preview"
      "benefits"
      "cta";
    align-items: stretch;
  }

  .zorgplan-real-preview {
    max-width: 760px;
    width: 100%;
  }

  .organizations-card-grid,
  .organizations-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    max-width: none;
  }

  .situation-list,
  .steps,
  .routes {
    grid-template-columns: 1fr;
  }

  .situation-list {
    gap: 24px;
  }

  .steps {
    border-bottom: 0;
  }

  .step-card {
    border-right: 0;
    border-bottom: 0;
  }

  .result-grid {
    gap: 18px;
  }

  .result-zorgplan-inline-trigger {
    display: block;
  }
}

@media (min-width: 921px) {
  .result-zorgplan-preview-header {
    padding-top: 33px;
  }
}

@media (min-width: 921px) and (min-height: 780px) {
  .result-zorgplan-preview {
    position: sticky;
    top: clamp(68px, 8vh, 86px);
  }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .organizations-page {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .organizations-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .organizations-hero-copy {
    max-width: 680px;
  }

  .organizations-hero-copy h1 {
    max-width: 11.75em;
    font-size: 2.625rem;
    line-height: 1.12;
  }

  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
  }

  .hero h1 {
    margin-right: 0;
    margin-left: 0;
  }

  .hero p {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 380px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-height: 44px;
  }

  .site-header-report {
    align-items: center;
  }

  .site-header-report .brand {
    align-items: center;
    min-height: 36px;
    transform: translateY(-2px);
  }

  .site-header-report .brand > span:last-child {
    line-height: 1.05;
    transform: none;
  }

  .section {
    padding: clamp(40px, 10vw, 56px) 18px;
  }

  .organizations-page {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .organizations-hero-media {
    order: -1;
    justify-self: center;
    width: min(100%, 420px);
    transform: none;
  }

  .organizations-hero-media img {
    aspect-ratio: 1.62 / 1;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: none;
    filter: drop-shadow(0 12px 24px rgba(23, 35, 31, 0.055));
  }

  .organizations-hero-copy h1 {
    max-width: 100%;
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.01em;
  }

  .organizations-hero-copy p,
  .organizations-final-panel p {
    font-size: 1rem;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .organizations-card-grid,
  .organizations-audience-grid,
  .organizations-boundary-list {
    grid-template-columns: 1fr;
  }

  .organizations-card,
  .organizations-audience-grid article {
    padding: 18px;
    box-shadow: none;
  }

  .organizations-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px 14px;
    padding-bottom: 20px;
  }

  .organizations-privacy-panel {
    padding: 24px 20px;
  }

  .organizations-privacy-panel h2,
  .organizations-final-panel h2 {
    font-size: 1.82rem;
  }

  .organizations-final-panel {
    text-align: left;
  }

  .organizations-final-panel p {
    margin-right: 0;
    margin-left: 0;
  }

  .organizations-final-panel .organizations-actions {
    justify-content: flex-start;
  }

  #hoe-het-werkt,
  #veelgestelde-vragen {
    scroll-margin-top: 66px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 420px);
  }

  .hero-visual img {
    display: block;
    aspect-ratio: 1.75 / 1;
    border-radius: var(--radius-md);
    object-fit: cover;
  }

  .hero-actions,
  .action-row {
    gap: 10px;
  }

  .hero-actions .button,
  .action-row .button {
    width: 100%;
  }

  .check-start-shell {
    padding-top: 24px;
  }

  .check-start-panel {
    padding: 22px 18px 24px;
  }

  .check-start-visual {
    position: relative;
    right: auto;
    top: auto;
    z-index: 1;
    width: min(100%, 260px);
    height: min(174px, calc((100vw - 36px) * 0.67));
    aspect-ratio: 1.49 / 1;
    max-width: none;
    overflow: hidden;
    margin: -4px auto 6px;
  }

  .check-start-visual img {
    filter: drop-shadow(0 14px 22px rgba(23, 35, 31, 0.07));
    opacity: 0.96;
  }

  .check-start-panel .action-row {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .check-start-button {
    min-height: 48px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .check-start-panel .start-privacy-note {
    flex-basis: 100%;
    max-width: none;
    padding-right: 0;
    font-size: 0.9rem;
    line-height: 1.42;
    white-space: normal;
  }

  .check-start-panel .start-privacy-note span:last-child {
    white-space: normal;
  }

  .start-privacy-icon {
    width: 34px;
    height: 34px;
  }

  .question-panel .start-steps {
    display: none;
  }

  .start-details {
    display: block;
  }

  .hero-actions .button.secondary {
    width: auto;
    min-height: 44px;
    padding: 8px 2px;
    border-color: transparent;
    background: transparent;
    justify-content: flex-start;
  }

  .hero-actions .button.secondary::after {
    content: "\2192";
    margin-left: 8px;
    font-weight: 800;
    line-height: 1;
  }

  .hero h1,
  .page-title {
    font-size: 1.875rem;
    line-height: 1.12;
  }

  .hero h1 {
    font-size: 1.875rem;
    line-height: 1.12;
    max-width: 100%;
  }

  .section-heading h2,
  .flow-title,
  .zorgplan-showcase .section-heading h2,
  .final-cta h2 {
    font-size: 1.5rem;
    line-height: 1.18;
  }

  .hero p,
  .section-heading p,
  .section-inner > p,
  .situation-card p,
  .step-card p,
  .zorgplan-benefit-item p,
  .zorgplan-real-preview figcaption,
  .zorgplan-cta-strip span,
  .route-card p,
  .price-panel p,
  .topic-search-copy p,
  .faq-item p,
  .final-cta p,
  .site-footer p {
    text-wrap: pretty;
  }

  .section-heading h2,
  .situation-card h3,
  .step-card h3,
  .zorgplan-benefit-item h3,
  .route-card h3,
  .price-panel h2,
  .topic-search-copy h2,
  .faq-item summary,
  .final-cta h2 {
    text-wrap: balance;
  }

  .hero + .band,
  #hoe-het-werkt,
  .zorgplan-section,
  .route-links-section,
  #veelgestelde-vragen,
  .final-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #hoe-het-werkt {
    background: linear-gradient(180deg, rgba(33, 80, 59, 0.032), rgba(33, 80, 59, 0.018));
  }

  .zorgplan-section {
    background: linear-gradient(180deg, rgba(199, 162, 78, 0.038), rgba(255, 253, 248, 0.32));
  }

  .route-links-section {
    background: rgba(255, 253, 248, 0.42);
  }

  .hero + .band .section-heading,
  #hoe-het-werkt .section-heading,
  .zorgplan-section .section-heading,
  .route-links-section .section-heading,
  #veelgestelde-vragen .section-heading,
  .final-cta .section-heading {
    max-width: 34rem;
  }

  .hero + .band .section-heading p,
  #hoe-het-werkt .section-heading p,
  .zorgplan-section .section-heading p,
  .route-links-section .section-heading p,
  .final-cta .section-heading p {
    margin-top: 14px;
    font-size: 1.01rem;
    line-height: 1.62;
  }

  .hero + .band .section-inner > p {
    max-width: 30rem;
    margin: 46px 0 0;
    color: var(--color-teal);
    font-size: 0.96rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
  }

  .hero + .band .situation-list,
  #hoe-het-werkt .steps,
  .zorgplan-section .zorgplan-benefit-list {
    gap: 0;
    margin-top: 0;
  }

  .hero + .band .situation-card,
  #hoe-het-werkt .step-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 17px 0;
    border-top: 1px solid rgba(222, 215, 203, 0.78);
  }

  .hero + .band .situation-card:first-child,
  #hoe-het-werkt .step-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .hero + .band .situation-card:last-child,
  #hoe-het-werkt .step-card:last-child {
    padding-bottom: 0;
  }

  .hero + .band .situation-card svg {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin-top: 1px;
    border: 1px solid rgba(36, 84, 76, 0.14);
    border-radius: var(--radius-md);
    background: rgba(220, 233, 237, 0.52);
    color: var(--color-teal);
  }

  #hoe-het-werkt .step-number-asset {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin-top: 1px;
  }

  #hoe-het-werkt .step-number-asset img {
    height: 28px;
  }

  .hero + .band .situation-card svg {
    padding: 6px;
  }

  .hero + .band .situation-card-icon {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin: 1px 0 0;
    object-fit: contain;
  }

  .hero + .band .situation-card h3,
  #hoe-het-werkt .step-card h3,
  .zorgplan-section .zorgplan-benefit-item h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.28;
  }

  .hero + .band .situation-card p,
  #hoe-het-werkt .step-card p {
    grid-column: 2;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .zorgplan-section .zorgplan-benefit-item p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .zorgplan-section .zorgplan-benefit-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-content: start;
    padding: 20px 0;
    border-top: 1px solid rgba(222, 215, 203, 0.78);
  }

  .zorgplan-section .zorgplan-benefit-item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .zorgplan-section .zorgplan-benefit-item:last-child {
    padding-bottom: 0;
  }

  .route-links-section {
    padding-top: 38px;
  }

  .homepage-topic-search {
    padding-top: 42px;
  }

  .homepage-topic-search.topic-search-has-open-menu {
    padding-bottom: min(360px, 58vh);
  }

  .homepage-topic-search + .band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .homepage-topic-search + .band .section-heading {
    max-width: 34rem;
  }

  .homepage-topic-search + .band .section-heading p {
    margin-top: 14px;
    font-size: 1.01rem;
    line-height: 1.62;
  }

  .homepage-topic-search + .band .section-inner > p {
    max-width: 30rem;
    margin: 46px 0 0;
    color: var(--color-teal);
    font-size: 0.96rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
  }

  .homepage-topic-search + .band .situation-list {
    gap: 0;
    margin-top: 0;
  }

  .homepage-topic-search + .band .situation-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 17px 0;
    border-top: 1px solid rgba(222, 215, 203, 0.78);
  }

  .homepage-topic-search + .band .situation-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .homepage-topic-search + .band .situation-card:last-child {
    padding-bottom: 0;
  }

  .homepage-topic-search + .band .situation-card svg {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin-top: 1px;
    padding: 6px;
    border: 1px solid rgba(36, 84, 76, 0.14);
    border-radius: var(--radius-md);
    background: rgba(220, 233, 237, 0.52);
    color: var(--color-teal);
  }

  .homepage-topic-search + .band .situation-card-icon {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    margin: 1px 0 0;
    object-fit: contain;
  }

  .homepage-topic-search + .band .situation-card h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.28;
  }

  .homepage-topic-search + .band .situation-card p {
    grid-column: 2;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .homepage-topic-results {
    margin-top: 22px;
  }

  .topic-overview-header h1 {
    font-size: 1.875rem;
  }

  .topic-overview-header p:not(.seo-label) {
    font-size: 1rem;
    text-wrap: pretty;
  }

  .topic-search-panel {
    margin-top: 26px;
  }

  .topic-search-copy h2 {
    font-size: 1.45rem;
  }

  .topic-search-control {
    height: 56px;
    margin-top: 16px;
    box-shadow: 0 12px 26px rgba(35, 70, 59, 0.1);
  }

  .topic-search-icon {
    left: 18px;
    width: 19px;
    height: 19px;
  }

  .topic-search-control input {
    padding-right: 18px;
    padding-left: 50px;
    font-size: 0.98rem;
  }

  .topic-search-empty {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .topic-overview-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 26px;
  }

  .topic-overview-item {
    padding: 16px 0;
  }

  .section-heading h2,
  .flow-title {
    font-size: 1.5rem;
    line-height: 1.18;
  }

  .flow-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .flow-shell {
    padding: 24px 14px 54px;
  }

  .check-start-shell {
    padding-top: 24px;
  }

  .access-request-shell,
  .access-error-shell {
    padding: clamp(42px, 9vh, 72px) 20px 56px;
  }

  .question-panel {
    padding: 20px 16px;
  }

  .question-panel h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .access-request-panel,
  .access-error-panel {
    gap: 14px;
    padding: 18px 14px 20px;
  }

  .access-request-panel h1,
  .access-error-panel h1 {
    font-size: clamp(1.36rem, 5.8vw, 1.58rem);
  }

  .access-request-panel h1 {
    white-space: normal;
  }

  .access-request-panel .helper,
  .access-error-panel .helper {
    font-size: 1rem;
  }

  .access-request-form .button,
  .access-error-actions .button {
    width: 100%;
  }

  .result-hero {
    padding: 26px 14px 52px;
  }

  .result-summary,
  .price-panel {
    padding: 20px 16px;
  }

  .result-summary {
    padding: 0;
  }

  .result-overview-card {
    padding: 19px 16px;
  }

  .result-primary-action {
    margin-top: 16px;
    padding-top: 13px;
  }

  .result-panel {
    padding: 15px 16px;
  }

  .result-signal-list {
    margin-top: 10px;
  }

  .result-signal-item {
    padding: 9px 0;
  }

  .result-zorgplan-preview-header,
  .result-zorgplan-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .price {
    font-size: 2.5rem;
  }

  .zorgplan-showcase {
    gap: 24px;
  }

  .zorgplan-showcase .section-heading h2 {
    font-size: 1.5rem;
    line-height: 1.18;
  }

  .zorgplan-real-preview {
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 34px rgba(23, 35, 31, 0.075);
  }

  .zorgplan-real-preview img {
    aspect-ratio: 1.39;
    object-fit: contain;
  }

  .zorgplan-real-preview figcaption {
    font-size: 0.8rem;
  }

  .zorgplan-cta-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .zorgplan-cta-strip div {
    display: grid;
    gap: 3px;
  }

  .zorgplan-cta-strip .button {
    width: 100%;
    min-width: 0;
  }

  #veelgestelde-vragen .faq-list {
    margin-top: 22px;
  }

  #veelgestelde-vragen .faq-item summary {
    min-height: 60px;
    padding: 17px 0;
    gap: 12px;
    line-height: 1.32;
  }

  #veelgestelde-vragen .faq-item[open] summary {
    padding-bottom: 10px;
  }

  #veelgestelde-vragen .faq-item p {
    padding: 0 0 20px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .final-cta {
    text-align: left;
  }

  .final-cta .section-heading {
    margin: 0;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .report-shell {
    max-width: 100%;
  }

  .zorgplan-report {
    gap: 12px;
    padding: 0;
  }

  .report-header {
    padding: 0 0 2px;
  }

  .report-section-value-summary,
  .report-section-top-actions,
  .report-section-start-links,
  .report-section-top-proof {
    padding: 14px 0;
  }

  .report-workspace {
    grid-template-columns: 1fr;
  }

  .report-dashboard,
  .report-active-module {
    gap: 12px;
  }

  .report-workspace-rail {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .report-workspace-rail-heading strong,
  .report-workspace-rail-heading .report-module-label {
    padding-left: 0;
  }

  .report-workspace-rail nav {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 0 0 1px;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .report-workspace-rail nav::-webkit-scrollbar {
    display: none;
  }

  .report-workspace-rail a {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    max-width: 68vw;
    min-height: 44px;
    padding: 7px 9px;
    border: 1px solid rgba(36, 84, 76, 0.07);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.28);
    box-shadow: inset 0 -1px 0 transparent;
  }

  .report-workspace-rail a[aria-current="true"] {
    border-color: rgba(36, 84, 76, 0.14);
    background: rgba(220, 233, 237, 0.12);
    box-shadow: inset 0 -1px 0 rgba(36, 84, 76, 0.28);
  }

  .report-workspace-rail a span {
    font-size: 0.88rem;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .report-workspace-rail a small {
    font-size: 0.75rem;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .report-module-grid {
    grid-template-columns: 1fr;
    border: 1px solid rgba(36, 84, 76, 0.09);
  }

  .report-map-module {
    padding: 16px;
  }

  .report-module-grid > .report-section + .report-section {
    border-top: 1px solid rgba(36, 84, 76, 0.075);
    border-left: 0;
  }

  .report-value-strip-grid {
    grid-template-columns: 1fr;
  }

  .report-value-strip {
    padding: 14px 16px;
    border: 1px solid rgba(36, 84, 76, 0.09);
  }

  .report-value-strip > .report-section-heading + p {
    margin-bottom: 8px;
  }

  .report-value-strip h2 {
    margin-bottom: 6px;
  }

  .report-value-strip-item {
    padding: 8px 0;
  }

  .report-module-directory-header {
    padding: 16px;
  }

  .report-module-directory-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    min-height: 68px;
    padding: 13px 16px;
  }

  .report-module-subsection-heading {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .report-module-directory-action {
    display: none;
  }

  .report-module-pager {
    grid-template-columns: 1fr;
  }

  .report-module-pager a {
    padding: 12px;
  }

  .report-start-link-list {
    grid-template-columns: 1fr;
  }

  .report-section-top-actions .report-start-link-list {
    grid-template-columns: 1fr;
  }

  .report-action-list li {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .report-section {
    padding: 18px 0;
  }

  .report-header h1 {
    font-size: clamp(1.52rem, 7vw, 1.86rem);
  }

  .report-section-source-links,
  .report-section-municipality,
  .report-section-today,
  .report-section-this-week,
  .report-section-thirty-days,
  .report-section-example-message,
  .report-section-phone-script,
  .report-section-safety {
    padding: 16px;
  }

  .evidence-item,
  .source-list li {
    padding: 11px 12px;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .report-disclosure > summary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .report-disclosure > summary::after {
    grid-column: 1;
    justify-self: start;
  }

  .report-disclosure-content {
    padding: 0 14px 14px;
  }

  .seo-layout {
    grid-template-columns: 1fr;
  }

  .seo-source-panel {
    position: static;
  }

  .seo-guide-header {
    padding-bottom: 28px;
  }

  .seo-guide-header h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.42rem);
  }

  .seo-intro {
    font-size: 1.04rem;
  }

  .seo-primary-cta {
    width: 100%;
    justify-content: center;
  }

  .seo-reading-route {
    align-items: flex-start;
    gap: 5px 12px;
  }

  .seo-reading-route span {
    width: 100%;
  }

  .seo-reading-route a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    font-weight: 600;
  }

  .seo-checklist li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .seo-next-steps {
    padding-left: 14px;
  }

  .report-section-heading {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .copy-button {
    width: 34px;
    height: 34px;
    min-width: 34px;
    justify-content: center;
  }

  .report-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .flow-actions {
    flex-direction: column-reverse;
  }

  .flow-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    border-top: 0;
    border-radius: 24px 24px 0 0;
    background: var(--footer-bg-solid);
    background: var(--footer-bg);
    overflow: hidden;
  }

  .footer-shell {
    width: min(100%, 330px);
    padding: 54px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-company {
    padding-bottom: 22px;
  }

  .footer-brand {
    min-height: 32px;
  }

  .footer-brand-logo {
    width: 84px;
    max-height: 27px;
  }

  .footer-lines {
    gap: 12px;
    margin-top: 22px;
  }

  .site-footer p {
    color: var(--footer-text);
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .footer-column-desktop {
    display: none;
  }

  .footer-mobile-only {
    display: block;
  }

  .footer-disclosure {
    border-top: 1px solid rgba(244, 237, 223, 0.14);
    border-bottom: 1px solid rgba(244, 237, 223, 0.14);
  }

  .footer-disclosure > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    color: var(--footer-text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
  }

  .footer-disclosure > summary::-webkit-details-marker {
    display: none;
  }

  .footer-disclosure > summary:focus {
    outline: none;
  }

  .footer-disclosure > summary:focus-visible {
    border-radius: var(--radius-sm);
    outline: 1px solid rgba(207, 224, 211, 0.24);
    outline-offset: 2px;
    background: rgba(244, 237, 223, 0.025);
  }

  .footer-disclosure > summary::after {
    content: "\2304";
    color: rgba(207, 224, 211, 0.62);
    font-size: 1rem;
    line-height: 1;
    transform: translateY(-2px);
  }

  .footer-disclosure[open] > summary::after {
    transform: rotate(180deg) translateY(2px);
  }

  .footer-disclosure:not([open]) .footer-mobile-groups {
    display: none;
  }

  .site-footer .footer-mobile-groups {
    display: grid;
    gap: 11px;
    padding: 2px 0 24px;
  }

  .footer-mobile-label {
    margin-top: 10px;
    color: rgba(244, 237, 223, 0.72);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .footer-column-legal {
    display: none;
  }

  .footer-links {
    gap: 4px;
  }

  .site-footer .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: var(--footer-text);
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.62;
  }

  .footer-bottom {
    position: relative;
    width: 100vw;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 46px calc(50% - 50vw) 0;
    padding: 28px 20px;
    border-top: 0;
    background: rgba(30, 27, 23, 0.08);
  }

  .footer-bottom p:first-child {
    color: var(--footer-heading);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .footer-disclaimer {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
    font-size: 1.02rem;
  }

  .header-brand-logo {
    width: 96px;
    max-height: 31px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 34px 14px;
  }

  .hero + .band,
  #hoe-het-werkt,
  .zorgplan-section,
  .route-links-section,
  #veelgestelde-vragen,
  .final-cta {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1,
  .page-title {
    font-size: 1.875rem;
  }

  .hero h1 {
    font-size: 1.875rem;
    line-height: 1.12;
  }

  .hero p,
  .lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .flow-shell {
    padding: 20px 12px 42px;
  }

  .check-start-shell {
    padding-top: 24px;
  }

  .access-request-shell,
  .access-error-shell {
    padding: clamp(42px, 9vh, 72px) 20px 56px;
  }

  .flow-top {
    gap: 8px;
    margin-bottom: 14px;
  }

  .question-panel {
    padding: 18px 14px;
  }

  .access-request-panel,
  .access-error-panel {
    padding: 18px 14px 20px;
  }

  .question-panel h1 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .option {
    grid-template-columns: 20px 1fr;
    gap: 10px;
    min-height: 56px;
    padding: 13px 12px;
  }

  .result-summary,
  .price-panel {
    padding: 18px 14px;
  }

  .result-summary {
    padding: 0;
  }

  .result-overview-card {
    padding: 18px 14px;
  }

  .result-primary-action p {
    font-size: 1rem;
    line-height: 1.38;
  }

  .result-panel h2,
  .result-zorgplan-preview h2,
  .result-action-panel h2 {
    font-size: 1.1rem;
  }

  .result-zorgplan-preview-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    min-height: 58px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .result-zorgplan-preview-action {
    display: none;
    grid-column: 2;
    justify-self: start;
    font-size: 0.78rem;
  }

  .price {
    font-size: 2.25rem;
  }

  .zorgplan-report {
    padding: 0;
    border-radius: 0;
  }

  .report-header h1 {
    font-size: clamp(1.55rem, 7.5vw, 1.85rem);
  }

  .report-section-source-links,
  .report-section-municipality,
  .report-section-safety {
    padding: 14px;
  }

  .report-section-today,
  .report-section-this-week,
  .report-section-thirty-days {
    padding: 12px 0 12px 14px;
  }

  .report-section-example-message,
  .report-section-phone-script {
    padding: 14px;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .source-list a,
  .source-list p,
  .evidence-item p {
    overflow-wrap: anywhere;
  }
}

@media print {
  @page {
    margin: 16mm;
  }

  body {
    display: block;
    background: #fff;
    color: #111;
    overflow: visible;
  }

  .site-header,
  .report-workspace-rail,
  .copy-button,
  .report-disclosure-hint {
    display: none !important;
  }

  .flow-shell,
  .report-shell {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .zorgplan-report,
  .report-workspace,
  .report-workspace-main,
  .report-dashboard,
  .report-active-module,
  .report-module-directory,
  .report-module-grid,
  .report-value-strip-grid {
    display: block;
  }

  .report-header,
  .report-value-strip,
  .report-module-directory,
  .report-module-grid,
  .report-module-pager,
  .report-section,
  .report-disclosure,
  .report-start-link,
  .report-proof-card,
  .copy-text-block,
  .source-list li {
    break-inside: avoid;
    border-color: #d6d6d6;
    background: #fff;
    box-shadow: none;
  }

  .report-module-grid > .report-section + .report-section {
    border-top: 1px solid #d6d6d6;
    border-left: 0;
  }

  .report-disclosure > summary {
    cursor: default;
  }

  .report-disclosure > summary::after {
    display: none;
  }

  .site-footer {
    border-top: 1px solid #d6d6d6;
    color: #444;
  }
}

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