@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --ink: #0b1210;
  --muted: #5a6a64;
  --line: #cfe0d8;
  --line-strong: #9eb8ac;
  --paper: #f0ebe0;
  --panel: #ffffff;
  --green: #0d9b72;
  --green-deep: #034434;
  --green-soft: #d8f5ea;
  --green-glow: #5dffc4;
  --blue: #14527a;
  --gold: #e8a830;
  --coral: #ff6b47;
  --red: #c43d32;
  --shadow: 0 20px 64px rgba(3, 68, 52, 0.14);
  --shadow-soft: 0 10px 32px rgba(3, 68, 52, 0.08);
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  font-family:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 2%, rgba(93, 255, 196, 0.14), transparent 24rem),
    radial-gradient(circle at 6% 10%, rgba(232, 168, 48, 0.16), transparent 20rem),
    radial-gradient(circle at 50% 0%, rgba(13, 155, 114, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(3, 68, 52, 0.06), rgba(240, 235, 224, 0) 36rem),
    var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--green-deep);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(215, 223, 218, 0.78);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms var(--ease);
}

.topbar.is-scrolled {
  box-shadow: 0 6px 24px rgba(23, 32, 29, 0.06);
}

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

.brand-mark {
  display: block;
  flex: none;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(11, 63, 52, 0.22);
  transition: transform 200ms var(--ease);
}

.report-logo {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.55rem;
}

.brand:hover .brand-mark {
  transform: scale(1.04);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green-deep);
}

.nav-links a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span::before {
  top: -0.38rem;
}

.nav-toggle span::after {
  top: 0.38rem;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 4.2rem 1rem auto;
  z-index: 19;
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-panel a {
  padding: 0.95rem 0.85rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-panel a:hover {
  color: var(--green-deep);
  background: var(--green-soft);
}

.prototype-notice {
  display: flex;
  width: min(1180px, calc(100vw - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.75rem auto 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(232, 168, 48, 0.34);
  border-radius: 8px;
  color: #3f4c47;
  background: rgba(255, 251, 236, 0.86);
  box-shadow: 0 8px 24px rgba(3, 68, 52, 0.06);
  font-size: 0.84rem;
  line-height: 1.45;
}

.prototype-notice a {
  flex: 0 0 auto;
  color: var(--green-deep);
  font-weight: 800;
  text-decoration: none;
}

.prototype-notice a:hover {
  text-decoration: underline;
}

.top-cta,
.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.top-cta,
.primary-button {
  padding: 0 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ff8266 0%, var(--coral) 45%, #f4502a 100%);
  box-shadow:
    0 12px 28px rgba(255, 107, 71, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-weight: 750;
}

.top-cta:hover,
.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(244, 80, 42, 0.4);
}

.top-cta:focus-visible,
.primary-button:focus-visible,
.ghost-button:focus-visible,
.nav-toggle:focus-visible,
.segmented input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.primary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.primary-button:disabled:hover,
.ghost-button:disabled:hover {
  transform: none;
  box-shadow: none;
}

.ghost-button {
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  color: var(--green-deep);
  background: #fff;
  font-weight: 700;
}

.assessment-layout,
.positioning-band,
.source-band {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.intro {
  max-width: 55ch;
  color: #3f4b46;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.55rem;
}

.trust-row span {
  border: 1px solid rgba(15, 107, 79, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.scan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dfe9e4;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 63, 52, 0.12);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  gap: 1rem;
  align-items: start;
  padding: 2rem 0 clamp(3rem, 8vw, 5rem);
}

.assessment-layout.first-screen {
  min-height: calc(100vh - 4.8rem);
  padding-top: clamp(1rem, 3vw, 2rem);
}

.assessment-layout.result-screen {
  align-items: start;
  padding-top: clamp(1rem, 3vw, 2rem);
}

.result-intro {
  display: grid;
  gap: 1rem;
}

.result-intro h1 {
  max-width: 720px;
}

.scan-panel,
.result-panel {
  min-width: 0;
  border: 1px solid rgba(185, 200, 191, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    #fff;
  box-shadow:
    0 18px 58px rgba(23, 32, 29, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.scan-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.result-panel {
  position: sticky;
  top: 5.6rem;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.field-block {
  min-width: 0;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.field-block legend,
.question-title {
  margin-bottom: 0.6rem;
  color: #2e3934;
  font-size: 0.95rem;
  font-weight: 820;
}

.segmented {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #f4f7f4;
}

.segmented.compact {
  max-width: 590px;
}

.segmented label {
  min-width: 0;
}

.segmented input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  gap: 0.16rem;
  min-height: 3rem;
  place-items: center;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  color: #4a5752;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.25;
  cursor: pointer;
}

.segmented small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 560;
  opacity: 0.78;
}

.segmented span {
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease);
}

.segmented span:hover {
  background: rgba(255, 255, 255, 0.72);
}

.segmented input:checked + span {
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), #06483c);
  box-shadow:
    0 10px 22px rgba(11, 63, 52, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.question-grid {
  display: grid;
  gap: 1rem;
}

.question-block {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.question-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.question-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.question-index {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.scan-submit {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(15, 107, 79, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 237, 0.8)),
    var(--green-soft);
}

.scan-submit h3,
.scan-submit p {
  margin-bottom: 0;
}

.scan-submit p {
  color: #4a5752;
  line-height: 1.5;
}

.intake-aside {
  align-content: start;
}

.method-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background:
    linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, var(--blue) 100%),
    var(--green-deep);
  box-shadow: 0 14px 36px rgba(3, 68, 52, 0.22);
}

.method-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-card strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.method-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.trust-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-panel span {
  color: #4a5752;
  font-size: 0.86rem;
  line-height: 1.35;
}

.score-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 61, 50, 0.98), rgba(37, 79, 117, 0.92)),
    var(--green-deep);
  box-shadow:
    0 18px 36px rgba(11, 63, 52, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.score-card.is-pending {
  background:
    linear-gradient(135deg, rgba(45, 76, 68, 0.96), rgba(70, 91, 104, 0.9)),
    #334f48;
}

.score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.score-ring svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.ring-track,
.ring-progress {
  fill: none;
  stroke-width: 10;
}

.ring-track {
  stroke: rgba(255, 255, 255, 0.16);
}

.ring-progress {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 301.6;
  stroke-dashoffset: 193;
  transition: stroke-dashoffset 220ms ease;
}

.score-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.score-number strong {
  font-size: 1.75rem;
  line-height: 1;
}

.score-number span {
  margin-top: 0.2rem;
  max-width: 5.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.risk-copy p {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.risk-band {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  color: #17201d;
  background: #e5c072;
  font-size: 0.82rem;
  font-weight: 850;
}

.insight-block {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.insight-block ul,
.paid-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-block li,
.paid-list li {
  position: relative;
  padding-left: 1.05rem;
  color: #3e4a45;
  line-height: 1.45;
}

.insight-block li::before,
.paid-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.free-result {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.free-result p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.5;
}

.score-action {
  width: 100%;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.result-stats span {
  min-height: 5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
}

.result-stats strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.8rem;
  line-height: 1;
}

.score-guide {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.score-guide p {
  display: grid;
  grid-template-columns: 5.3rem minmax(0, 1fr);
  gap: 0.5rem;
  margin: 0;
  color: #4a5752;
  font-size: 0.82rem;
  line-height: 1.35;
}

.score-guide strong {
  color: var(--green-deep);
}

.score-note {
  margin: -0.15rem 0 0;
  color: #66736d;
  font-size: 0.78rem;
  line-height: 1.45;
}

.missing-scan {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid rgba(177, 74, 58, 0.24);
  border-radius: 8px;
  background: rgba(177, 74, 58, 0.07);
}

.missing-scan strong {
  color: var(--red);
}

.missing-scan span {
  color: #4a5752;
  line-height: 1.45;
}

.missing-scan .ghost-button {
  width: fit-content;
}

.report-box {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(15, 107, 79, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 241, 237, 0.72)),
    var(--green-soft);
}

.report-box p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.price-row strong {
  font-size: 1.9rem;
}

.price-row span {
  color: var(--muted);
}

.positioning-band,
.source-band {
  padding: clamp(2.2rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.positioning-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: 1.5rem;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.positioning-grid article {
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.positioning-grid span {
  color: var(--gold);
  font-weight: 850;
}

.positioning-grid p,
.source-band p {
  color: #4a5752;
  line-height: 1.55;
}

.source-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 5rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  grid-column: 2;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--green-deep);
  background: #fff;
  text-decoration: none;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero,
.tool-picker,
.pricing-band,
.prijzen-sectie,
.how-band,
.stats-band {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0 2.5rem;
  align-items: center;
}

.home-hero-copy,
.home-account-card,
.tool-card,
.pricing-band article,
.how-step,
.stat-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 64px rgba(23, 32, 29, 0.13);
}

.home-hero-copy {
  border: none;
  background: none;
  box-shadow: none;
  min-height: 0;
  padding: 0;
}

.home-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1.2rem;
}

.hero-usps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-usps li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-usps li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.home-account-card {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 237, 0.75)),
    #fff;
}

.home-account-card p,
.home-account-card small,
.pricing-band p,
.tool-card p {
  color: #4a5752;
  line-height: 1.55;
}

.home-account-card p,
.home-account-card small {
  margin-bottom: 0;
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.knowledge-band {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.knowledge-band header {
  max-width: 760px;
  margin-bottom: 1rem;
}

.knowledge-band header p {
  color: var(--muted);
  line-height: 1.65;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.knowledge-grid a {
  display: grid;
  gap: 0.45rem;
  min-height: 9.2rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.knowledge-grid a:hover {
  border-color: var(--green);
  background: rgba(216, 245, 234, 0.72);
  transform: translateY(-2px);
}

.knowledge-grid span {
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 850;
}

.knowledge-grid strong {
  color: #24312d;
  line-height: 1.45;
}

.knowledge-grid em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3a2a00;
  background: var(--gold);
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  vertical-align: middle;
}

/* ---------- Social-links in de topbar ---------- */
.social-links { display: inline-flex; align-items: center; gap: 0.35rem; margin-left: 0.4rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--green-deep); background: var(--green-soft, #e7f6ef);
  border: 1px solid var(--line, #e1e7e4); transition: color .15s, background .15s, transform .15s;
}
.social-links a:hover { color: #fff; background: var(--green); transform: translateY(-1px); }
.social-links svg { display: block; }
.social-footer { margin: 0.8rem 0 0; }
/* Op mobiel alleen de topbar-icoontjes verbergen; in de footer blijven ze staan. */
@media (max-width: 720px) { .topbar .social-links { display: none; } }

/* ---------- Vertrouwensstrip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.6rem 1.6rem; max-width: 1100px; margin: 0 auto; padding: 1rem 1.25rem;
  color: var(--muted); font-size: 0.9rem; font-weight: 600; text-align: center;
}
.trust-strip span { white-space: nowrap; }
@media (max-width: 560px) {
  .trust-strip { gap: 0.5rem 1rem; font-size: 0.82rem; }
}

/* ---------- FAQ ---------- */
.faq-sectie { max-width: 860px; margin: 0 auto; padding: 1rem 1.25rem; }
.faq-sectie header { text-align: center; margin-bottom: 1.4rem; }
.faq-lijst { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--panel); box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0; padding: 0 1.2rem 1.1rem; color: var(--muted); line-height: 1.6; }
.faq-item p a { color: var(--green-deep); font-weight: 600; }

.tool-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.tool-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.tool-card.is-featured {
  position: relative;
  border-color: rgba(15, 107, 79, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 241, 237, 0.62)),
    #fff;
}

.tool-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #e84f2d);
  box-shadow: 0 6px 18px rgba(255, 107, 71, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-hero-visual {
  margin: 0;
  min-height: 0;
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-spotlight {
  width: min(1180px, calc(100vw - 2rem));
  margin: 1.6rem auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
}
.fact-spotlight .eyebrow { color: var(--gold); }
.fact-spotlight h2 { color: #fff; margin: 0.3rem 0 0.7rem; font-size: 1.9rem; }
.fact-spotlight p { color: rgba(255, 255, 255, 0.92); }
.fact-spotlight .primary-button { background: var(--gold); color: #3a2a00; }
.fact-spotlight-features { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display: grid; gap: 0.5rem; }
.fact-spotlight-features li { position: relative; padding-left: 1.6rem; }
.fact-spotlight-features li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.fact-spotlight-prijs { margin-top: 0.9rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }
.fact-spotlight-visual { margin: 0; }
.fact-spotlight-visual img { width: 100%; border-radius: var(--radius-sm); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); display: block; }
@media (max-width: 760px) {
  .fact-spotlight { grid-template-columns: 1fr; padding: 1.6rem; }
  .fact-spotlight-visual { order: -1; }
}

.quotes-band {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.quotes-band header {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.quote-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0;
  color: #2e3b36;
  line-height: 1.6;
  font-size: 0.95rem;
}

.quote-card footer {
  display: grid;
  gap: 0.1rem;
}

.quote-card strong {
  color: var(--green-deep);
  font-size: 0.9rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.account-form-stack {
  display: grid;
  gap: 0.75rem;
}

.account-form-card {
  display: grid;
  gap: 0.65rem;
}

.account-form-card h2 {
  margin-bottom: 0.15rem;
  font-size: 1.2rem;
}

.form-feedback {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.86rem;
  font-weight: 650;
}

.form-feedback.is-success {
  color: var(--green-deep);
}

.form-feedback.is-error {
  color: var(--red);
}

.logged-in-banner {
  display: grid;
  gap: 0.75rem;
}

.logged-in-banner strong {
  color: var(--green-deep);
  font-size: 1.15rem;
}

.account-note {
  color: var(--muted);
  line-height: 1.45;
}

.account-guest,
.account-dashboard {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 4rem;
}

.account-guest {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.account-forms {
  display: grid;
  gap: 0.85rem;
}

.account-form-card,
.dashboard-header,
.saved-section {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.account-form-card {
  padding: 1.15rem;
}

.dashboard-header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.danger-button {
  border-color: rgba(196, 61, 50, 0.26);
  color: var(--red);
  background: rgba(255, 255, 255, 0.88);
}

.danger-button:hover {
  border-color: rgba(196, 61, 50, 0.48);
  background: rgba(255, 241, 238, 0.9);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.saved-section {
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.saved-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.saved-section-head a {
  color: var(--green);
  font-weight: 750;
  text-decoration: none;
}

.saved-list {
  display: grid;
  gap: 0.65rem;
}

.saved-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
}

.saved-card strong {
  display: block;
  color: var(--ink);
}

.saved-card > div > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.saved-meta {
  display: grid;
  gap: 0.15rem;
  text-align: right;
}

.saved-score {
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.saved-band {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.saved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.empty-state {
  margin: 0;
  color: #4a5752;
  line-height: 1.55;
}

.empty-state a {
  color: var(--green-deep);
  font-weight: 700;
}

.legal-page {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 4rem;
}

.legal-hero {
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(216, 245, 234, 0.68)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.legal-hero h1 {
  margin-bottom: 0.65rem;
}

.legal-paper {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.legal-section {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}

.legal-section p {
  margin: 0.45rem 0 0;
  color: #40504a;
  line-height: 1.65;
}

.legal-list {
  display: grid;
  gap: 0.4rem;
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: #40504a;
  line-height: 1.55;
}

.legal-callout {
  padding: 1rem;
  border: 1px solid rgba(232, 168, 48, 0.36);
  border-radius: var(--radius-sm);
  background: rgba(255, 251, 236, 0.78);
}

.seo-page {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 4rem;
}

.seo-page .reveal {
  opacity: 1;
  transform: none;
}

.seo-hero {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(216, 245, 234, 0.7)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.seo-hero h1 {
  max-width: 860px;
  margin: 0;
}

.seo-hero .intro {
  max-width: 820px;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 1rem;
  align-items: start;
}

.seo-article,
.seo-aside,
.seo-related {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.seo-article {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.seo-article section {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.seo-article section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.seo-article h2,
.seo-aside h2,
.seo-related h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
}

.seo-article p,
.seo-aside p {
  margin: 0.45rem 0 0;
  color: #40504a;
  line-height: 1.68;
}

.seo-article h3 {
  margin: 1.1rem 0 0;
  font-size: 1.02rem;
  color: var(--green-deep);
}

.seo-faq-vraag + p {
  margin-top: 0.3rem;
}

.seo-check-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: #40504a;
  line-height: 1.55;
}

.seo-aside {
  position: sticky;
  top: 5.8rem;
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
}

.seo-source-card {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.seo-source-card h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.95rem;
}

.seo-source-card a {
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.seo-source-card a:hover {
  text-decoration: underline;
}

.seo-related {
  margin-top: 1rem;
  padding: 1.15rem;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.seo-card-grid a {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  background: #fbfcfa;
  font-weight: 800;
  text-decoration: none;
}

.seo-card-grid a:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.calc-advanced {
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
  overflow: hidden;
}

.calc-advanced summary {
  padding: 0.9rem 1rem;
  color: var(--green-deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.calc-advanced summary::after {
  float: right;
  color: var(--muted);
  content: "+";
}

.calc-advanced[open] summary::after {
  content: "−";
}

.calc-advanced .field-block {
  margin: 0;
  padding: 0 1rem 1rem;
}

.calc-advanced .field-block + .field-block {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.monthly-overview.is-collapsed .monthly-table-wrap,
.monthly-overview.is-collapsed .monthly-summary-grid {
  display: none;
}

.save-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  max-width: 20rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(13, 155, 114, 0.3);
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: var(--shadow);
  font-weight: 650;
  transform: translateY(120%);
  transition: transform 280ms var(--ease);
}

.save-toast.is-visible {
  transform: translateY(0);
}

.how-band {
  padding: 2.5rem 0 1rem;
}

.how-band header {
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.how-step {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem;
}

.how-step span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  font-size: 0.82rem;
  font-weight: 800;
}

.how-step p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.55;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 2rem;
}

.stat-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  text-align: center;
}

.stat-card strong {
  color: var(--green-deep);
  font-size: 1.65rem;
  line-height: 1.1;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.scan-progress-bar {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.scan-progress-track {
  position: relative;
  height: 0.45rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e8efeb;
}

.scan-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #1a8a68);
  transition: width 320ms var(--ease);
}

.scan-progress-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 241, 237, 0.35), rgba(251, 250, 245, 0)),
    var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

.footer-brand p {
  max-width: 38ch;
  margin: 0.65rem 0 0;
  color: #4a5752;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-links section {
  display: grid;
  gap: 0.45rem;
}

.footer-links h3 {
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.footer-links a {
  color: #3e4a45;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.45;
}

.footer-links a:hover {
  color: var(--green-deep);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.tool-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.tool-price-grid div {
  display: grid;
  gap: 0.2rem;
  min-height: 7.2rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.tool-price-grid span,
.pricing-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tool-price-grid strong,
.pricing-grid strong {
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1;
}

.tool-price-grid strong small,
.pricing-grid strong small {
  font-size: 0.95rem;
  font-weight: 700;
  color: inherit;
}

.tool-price-grid small {
  color: #4a5752;
  line-height: 1.35;
}

.tool-card .primary-button {
  width: fit-content;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.pricing-band article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.pricing-band article p {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
}

.pricing-grid .price-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #e84f2d);
  box-shadow: 0 6px 16px rgba(255, 107, 71, 0.3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-grid .price-name {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-grid .price-amount {
  color: var(--green-deep);
  font-size: 2.1rem;
  line-height: 1;
}

.pricing-grid .price-amount small {
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-band article.is-featured {
  border-color: var(--green);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 237, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.pricing-band article.is-muted {
  background: #f6f8f6;
  border-style: dashed;
}

.pricing-band article.is-muted .price-amount {
  font-size: 1.4rem;
  color: #4a5752;
}

/* ---------- Aankoop-keuzevenster ---------- */
.aankoop-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 20, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.aankoop-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  padding: 1.8rem 1.6rem 1.6rem;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
}
.aankoop-modal h2 { margin: 0 0 0.4rem; font-size: 1.35rem; }
.aankoop-sub { margin: 0 0 1.2rem; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.aankoop-sluit {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  border: none;
  background: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.aankoop-opties { display: flex; flex-direction: column; gap: 0.7rem; }
.aankoop-optie {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 1rem;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  transition: border-color 160ms var(--ease), transform 160ms var(--ease);
}
.aankoop-optie:hover { border-color: var(--green); transform: translateY(-2px); }
.aankoop-optie.is-aanbevolen { border: 2px solid var(--green); }
.aankoop-titel { grid-column: 1; font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.aankoop-oms { grid-column: 1; font-size: 0.85rem; color: var(--muted); line-height: 1.4; }
.aankoop-kies { grid-column: 1; margin-top: 0.35rem; font-size: 0.85rem; font-weight: 700; color: var(--green-deep); }
.aankoop-prijs {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  font-weight: 850;
  font-size: 1.3rem;
  color: var(--green-deep);
  white-space: nowrap;
}
.aankoop-prijs small { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.aankoop-badge {
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--coral, #ff6b47), #e84f2d);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Google-login ---------- */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.9rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: #3c4043;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms var(--ease);
}
.google-button:hover {
  background: #f6f8f6;
}
.google-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ---------- Tool-card prijshint ---------- */
.tool-prijshint {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-deep);
}

/* ---------- Prijzen-sectie (3 tegels + alles-balk) ---------- */
.prijzen-sectie {
  padding: 1rem 0 5rem;
}

.prijzen-head {
  max-width: 60ch;
  margin: 0 auto 2rem;
  text-align: center;
}

.prijzen-head .section-kicker {
  justify-content: center;
}

.prijs-tegels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.prijs-tegel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.prijs-tegel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 64px rgba(23, 32, 29, 0.13);
}

.prijs-tegel.is-featured {
  border: 1.5px solid rgba(93, 255, 196, 0.55);
  background: linear-gradient(160deg, #04382b, #076048);
  color: #eafff6;
  box-shadow:
    0 0 0 5px rgba(13, 155, 114, 0.12),
    0 26px 60px rgba(3, 68, 52, 0.32);
}

.prijs-tegel.is-featured .prijs-naam { color: #8fe8c9; }
.prijs-tegel.is-featured .prijs-bedrag { color: #fff; }
.prijs-tegel.is-featured .prijs-bedrag small,
.prijs-tegel.is-featured .prijs-sub { color: #bfe6d8; }
.prijs-tegel.is-featured .prijs-lijst li { color: #e2f5ec; }
.prijs-tegel.is-featured .prijs-lijst li::before { color: var(--green-glow); }

.prijs-badge {
  position: absolute;
  top: -0.7rem;
  right: 1.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral, #ff6b47), #e84f2d);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(255, 107, 71, 0.3);
}

.prijs-naam {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.prijs-bedrag {
  color: var(--green-deep);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 850;
}

.prijs-bedrag small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.prijs-sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.prijs-lijst {
  list-style: none;
  margin: 0.8rem 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.prijs-lijst li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: #3f4b46;
  line-height: 1.4;
}

.prijs-lijst li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.prijs-tegel .primary-button,
.prijs-tegel .ghost-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.alles-balk {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.7rem 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  box-shadow: var(--shadow);
}

.alles-tekst {
  flex: 1 1 320px;
}

.alles-tekst h3 {
  color: #fff;
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
}

.alles-tekst p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.5;
}

.alles-keuze {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.alles-prijs {
  font-size: 1.7rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.alles-prijs small {
  font-size: 0.9rem;
  font-weight: 700;
}

.alles-prijs span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.alles-knoppen {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.alles-knoppen button {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms var(--ease);
}

.alles-knoppen button:hover {
  transform: translateY(-2px);
}

.alles-maand {
  background: #fff;
  color: var(--green-deep);
}

.alles-jaar {
  background: var(--gold);
  color: #3a2a00;
}

@media (max-width: 820px) {
  .prijs-tegels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .alles-balk {
    flex-direction: column;
    align-items: flex-start;
  }
  .alles-keuze {
    align-items: flex-start;
    width: 100%;
  }
  .alles-prijs span {
    text-align: left;
  }
  .alles-knoppen button {
    flex: 1 1 auto;
  }
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  padding: 0.25rem 0;
}

.text-button:hover {
  color: var(--coral);
}

.signal-legal {
  margin: 0.35rem 0 0.15rem;
  color: #4a5752;
  font-size: 0.82rem;
  line-height: 1.4;
}

.signal-legal em {
  font-style: normal;
  font-weight: 800;
  color: var(--green-deep);
}

.onboarding-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 32, 27, 0.55);
  backdrop-filter: blur(4px);
}

.onboarding-backdrop[hidden] {
  display: none;
}

.onboarding-card {
  width: min(440px, calc(100vw - 2rem));
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 32, 27, 0.18);
}

.onboarding-card h2 {
  margin-bottom: 0.35rem;
}

.onboarding-card p {
  margin-bottom: 0;
}

.onboard-footer {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.onboard-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.onboard-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c5d4cd;
}

.onboard-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.onboard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-form-full {
  grid-column: 1 / -1;
}

.hero-tour {
  margin-top: 0.65rem;
}

.dashboard-email {
  margin: -0.35rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1rem;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0;
  align-items: start;
}

.tariff-paywall {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 390px;
  gap: 1rem;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 0;
  align-items: start;
}

.paywall-copy,
.paywall-card,
.paywall-preview {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.paywall-copy {
  min-height: 27rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.paywall-copy h1 {
  max-width: 13ch;
}

.paywall-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 237, 0.78)),
    #fff;
}

.paywall-card p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.55;
}

.paywall-card .primary-button {
  width: 100%;
}

.paywall-preview {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.paywall-preview::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 82%);
  content: "";
  pointer-events: none;
}

.preview-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.preview-header span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-header strong {
  font-size: 1.35rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.preview-grid section {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.preview-grid span,
.preview-blur-list span {
  color: var(--muted);
  line-height: 1.4;
}

.preview-grid strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1;
}

.preview-grid p {
  margin-bottom: 0;
  color: #4a5752;
}

.preview-blur-list {
  display: grid;
  gap: 0.65rem;
  filter: blur(1.5px);
  opacity: 0.7;
}

.preview-blur-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.preview-lock {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.15rem;
  max-width: 17rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 107, 79, 0.22);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), var(--blue));
  box-shadow: 0 18px 42px rgba(11, 63, 52, 0.2);
}

.preview-lock span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.tariff-paywall.is-unlocked .paywall-card {
  border-color: rgba(15, 107, 79, 0.42);
}

.calculator-panel {
  display: grid;
  gap: 1.2rem;
}

.tariff-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
  align-items: stretch;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.tariff-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 3.4vw, 3.35rem);
  line-height: 1;
  overflow-wrap: normal;
}

.tariff-mini-card,
.tariff-score-card {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(11, 63, 52, 0.98), rgba(37, 79, 117, 0.92)),
    var(--green-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.tariff-mini-card span,
.tariff-score-card span,
.tariff-score-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tariff-mini-card strong,
.tariff-score-card strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.tariff-mini-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.calculator-core {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calc-wizard {
  display: grid;
  gap: 1rem;
}

.calc-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.calc-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.calc-step span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  background: #f2f6f3;
  font-size: 0.78rem;
  font-weight: 850;
}

.calc-step.is-active {
  border-color: rgba(13, 155, 114, 0.38);
  color: var(--green-deep);
  background: rgba(216, 245, 234, 0.45);
}

.calc-step.is-active span {
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
}

.calc-pane {
  display: grid;
  gap: 1rem;
}

.calc-fields {
  display: grid;
  gap: 0.2rem;
}

.calc-nav {
  display: flex;
  gap: 0.55rem;
}

.calc-next {
  width: fit-content;
}

.variable-only output {
  display: block;
  margin-top: 0.2rem;
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 800;
}

.variable-only input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.month-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.month-plan-card {
  display: grid;
  gap: 0.35rem;
  min-height: 7rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfa;
}

.month-plan-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.month-plan-card strong {
  color: var(--green-deep);
  font-size: 1.45rem;
  line-height: 1;
}

.month-plan-card p {
  margin: 0;
  color: #4a5752;
  font-size: 0.86rem;
  line-height: 1.4;
}

.tariff-score-primary strong {
  font-size: 2.35rem;
}

.tariff-aside-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.tariff-aside-hero div {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.tariff-aside-hero span {
  color: var(--muted);
  font-size: 0.8rem;
}

.tariff-aside-hero strong {
  color: var(--green-deep);
  font-size: 1.2rem;
}

.tariff-aside-details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.tariff-aside-details summary {
  padding: 0.8rem 0.9rem;
  color: var(--green-deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.tariff-aside-details .tariff-aside-list {
  padding: 0 0.9rem 0.9rem;
}

.monthly-overview {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(37, 79, 117, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 248, 0.86)),
    #fff;
}

.monthly-overview.uses-monthly {
  border-color: rgba(15, 107, 79, 0.34);
  box-shadow: inset 0 0 0 1px rgba(15, 107, 79, 0.08);
}

.monthly-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
  gap: 1rem;
  align-items: start;
}

.monthly-header h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.monthly-header p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.55;
}

.monthly-controls {
  display: grid;
  gap: 0.65rem;
}

.monthly-toggle {
  margin-top: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.monthly-controls .ghost-button {
  width: 100%;
}

.monthly-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.monthly-table {
  display: grid;
  min-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.monthly-row {
  display: grid;
  grid-template-columns: minmax(105px, 1fr) repeat(3, minmax(115px, 0.9fr)) minmax(100px, 0.75fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.monthly-row:first-child {
  border-top: 0;
}

.monthly-row-head {
  color: var(--muted);
  background: #f4f8f5;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.monthly-row strong {
  color: var(--ink);
}

.monthly-row label {
  display: grid;
  gap: 0.25rem;
  margin: 0;
}

.monthly-row label span {
  display: none;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.monthly-row input {
  width: 100%;
  min-height: 2.45rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  color: var(--ink);
  background: #fff;
  font-weight: 720;
}

.monthly-profit {
  color: var(--green-deep);
  font-weight: 850;
  white-space: nowrap;
}

.monthly-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.monthly-summary-grid section {
  min-height: 7.4rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.monthly-summary-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.monthly-summary-grid strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--green-deep);
  font-size: 1.45rem;
  line-height: 1;
}

.monthly-summary-grid p {
  margin-bottom: 0;
  color: #4a5752;
  font-size: 0.86rem;
  line-height: 1.4;
}

.input-row,
.check-row {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.input-row span,
.check-row span {
  color: #22302b;
  font-weight: 750;
  line-height: 1.35;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.period-block {
  margin: 0;
}

.input-row input,
.input-row select,
.input-row textarea {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
}

.input-row textarea {
  min-height: 6rem;
  resize: vertical;
  font: inherit;
  font-weight: 600;
  line-height: 1.5;
}

.feedback-band {
  width: min(720px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem 0 5rem;
}

.feedback-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.feedback-card h2 {
  margin: 0.2rem 0 0.4rem;
}

.feedback-card > p {
  color: #4a5752;
  line-height: 1.55;
}

.feedback-card .primary-button {
  width: fit-content;
  margin-top: 1rem;
}

.check-row {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.check-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--green);
}

.info-tip {
  position: relative;
  display: inline-grid;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.3rem;
  place-items: center;
  border: 1px solid rgba(15, 107, 79, 0.28);
  border-radius: 50%;
  color: var(--green-deep);
  background: #fff;
  cursor: help;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  vertical-align: text-top;
}

.info-tip > span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.7rem);
  z-index: 5;
  display: none;
  width: min(19rem, calc(100vw - 2rem));
  padding: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #26312d;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 32, 29, 0.16);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
  transform: translateX(-50%);
}

.info-tip:hover > span,
.info-tip:focus-visible > span {
  display: block;
}

.tariff-aside {
  display: grid;
  gap: 1rem;
}

.tariff-score-card strong {
  font-size: 2.55rem;
}

.tariff-aside-list {
  display: grid;
  gap: 0.7rem;
}

.tariff-aside-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tariff-aside-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.tariff-aside-list strong {
  color: var(--green-deep);
  font-size: 1.25rem;
}

.tariff-report {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto 4rem;
}

.tariff-paper {
  margin-top: 0;
}

.tariff-summary strong {
  font-size: 1.45rem;
}

.tariff-bars {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tariff-bars div {
  display: grid;
  grid-template-columns: 170px 130px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.tariff-bars span {
  color: #22302b;
  font-weight: 750;
}

.tariff-bars strong {
  color: var(--green-deep);
}

.tariff-bars i,
.market-track {
  position: relative;
  display: block;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ede9;
}

.tariff-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.tax-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.tax-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.tax-breakdown span,
.market-card small {
  color: var(--muted);
}

.tax-breakdown strong {
  color: var(--green-deep);
  white-space: nowrap;
}

.employment-note {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 82, 122, 0.2);
  border-radius: 8px;
  background: #f4f8fb;
  color: #30423c;
  line-height: 1.55;
}

.reserve-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.reserve-plan section,
.reserve-warning {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.reserve-plan section {
  display: grid;
  gap: 0.35rem;
}

.reserve-plan span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.reserve-plan strong {
  color: var(--green-deep);
  font-size: 1.45rem;
  line-height: 1;
}

.reserve-plan p {
  margin-bottom: 0;
  color: #4a5752;
  font-size: 0.88rem;
  line-height: 1.4;
}

.reserve-warning {
  grid-column: 1 / -1;
  border-color: rgba(177, 74, 58, 0.28);
  color: #7d2d22;
  background: rgba(177, 74, 58, 0.07);
  font-weight: 750;
  line-height: 1.45;
}

.monthly-report-table {
  display: grid;
  margin-top: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.monthly-report-row {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) repeat(2, minmax(90px, 0.8fr)) minmax(70px, 0.6fr) minmax(90px, 0.8fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.monthly-report-row:first-child {
  border-top: 0;
}

.monthly-report-head {
  color: var(--muted);
  background: #f4f8f5;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.monthly-report-row strong {
  color: var(--ink);
}

.monthly-report-row span {
  color: #3e4a45;
}

.monthly-report-total {
  background: var(--green-soft);
  font-weight: 850;
}

.monthly-report-total span:last-child {
  color: var(--green-deep);
}

.scenario-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.scenario-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1.5fr;
  gap: 0.8rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.scenario-row:first-child {
  border-top: 0;
}

.scenario-head {
  color: var(--muted);
  background: #f4f8f5;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.scenario-row strong {
  color: var(--ink);
}

.scenario-row span {
  color: #3e4a45;
  line-height: 1.35;
}

.market-card {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(15, 107, 79, 0.2);
  border-radius: 8px;
  background: var(--green-soft);
}

.market-card span,
.market-card strong,
.market-card small {
  display: block;
}

.market-card strong {
  margin: 0.2rem 0;
  color: var(--green-deep);
  font-size: 1.35rem;
}

.market-track {
  height: 0.75rem;
  overflow: visible;
}

.market-track::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  content: "";
}

.market-track b {
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 4px 14px rgba(11, 63, 52, 0.26);
  transform: translate(-50%, -50%);
}

.report-sheet {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto 4rem;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.report-paper {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 64px rgba(23, 32, 29, 0.11);
}

.report-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.report-header p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.55;
}

.report-stamp {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-deep), var(--blue));
}

.report-stamp span,
.report-stamp small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.report-stamp strong {
  font-size: 1.15rem;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.report-summary-grid section {
  min-height: 8.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.report-summary-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.report-summary-grid strong {
  display: block;
  margin: 0.45rem 0;
  color: var(--green-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.report-summary-grid p,
.report-section p {
  margin-bottom: 0;
  color: #4a5752;
  line-height: 1.55;
}

.report-section {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.report-section + .report-section {
  margin-top: 1rem;
}

.report-section-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.report-section-head span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 880;
}

.report-section-head h3 {
  margin-bottom: 0;
}

.report-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.action-list {
  margin-top: 0.85rem;
}

.phrase-list li {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
  list-style-position: inside;
}

.report-list .signal-card {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.signal-story {
  margin: 0.55rem 0 0;
  color: #3e4a45;
  line-height: 1.55;
}

.signal-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.signal-examples div {
  min-width: 0;
  padding: 0.75rem;
  border-radius: 8px;
}

.signal-examples em {
  display: block;
  margin-bottom: 0.35rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-examples p {
  margin-bottom: 0;
  color: #3e4a45;
  font-size: 0.92rem;
  line-height: 1.45;
}

.example-bad {
  border: 1px solid rgba(177, 74, 58, 0.22);
  background: rgba(177, 74, 58, 0.07);
}

.example-bad em {
  color: var(--red);
}

.example-good {
  border: 1px solid rgba(15, 107, 79, 0.22);
  background: rgba(232, 241, 237, 0.86);
}

.example-good em {
  color: var(--green-deep);
}

.report-list li {
  color: #3e4a45;
  line-height: 1.5;
}

.report-list strong,
.report-list span,
.report-list small {
  display: block;
}

.report-list strong {
  color: var(--ink);
}

.report-list small {
  margin-top: 0.2rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .assessment-layout,
  .calculator-layout,
  .tariff-paywall,
  .home-hero,
  .tool-picker,
  .pricing-band,
  .how-grid,
  .stats-band,
  .footer-inner,
  .positioning-band,
  .source-band {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .quotes-grid,
  .account-guest,
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
  }

  .scan-hero {
    grid-template-columns: 1fr;
  }

  .result-panel {
    position: static;
  }

  .source-links {
    grid-column: auto;
  }

  .tariff-hero,
  .calculator-grid,
  .calculator-core,
  .monthly-header,
  .monthly-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .assessment-layout,
  .calculator-layout,
  .tariff-paywall,
  .home-hero,
  .tool-picker,
  .pricing-band,
  .prijzen-sectie,
  .positioning-band,
  .source-band {
    width: calc(100vw - 0.8rem);
  }

  .topbar {
    width: 100%;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .top-cta {
    display: none;
  }

  .nav-links {
    display: none;
  }

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

  h1 {
    max-width: 100%;
    font-size: 2.85rem;
  }

  .intro {
    font-size: 1rem;
    line-height: 1.55;
  }

  .trust-row span {
    padding: 0.4rem 0.62rem;
    font-size: 0.82rem;
  }

  .prototype-notice {
    width: calc(100vw - 0.8rem);
    align-items: flex-start;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 250px;
  }

  .segmented {
    grid-template-columns: 1fr;
  }

  .score-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .score-number span {
    display: none;
  }

  .positioning-grid {
    grid-template-columns: 1fr;
  }

  .report-header,
  .report-summary-grid {
    grid-template-columns: 1fr;
  }

  .report-actions {
    justify-content: stretch;
  }

  .report-actions button {
    flex: 1;
  }

  .signal-examples {
    grid-template-columns: 1fr;
  }

  .tariff-bars div,
  .scenario-row,
  .tax-breakdown,
  .reserve-plan,
  .monthly-summary-grid,
  .month-plan-grid,
  .calc-steps,
  .tariff-aside-hero,
  .preview-grid,
  .tool-price-grid,
  .pricing-grid,
  .knowledge-grid,
  .seo-layout,
  .seo-card-grid,
  .account-actions,
  .quotes-grid,
  .account-guest,
  .dashboard-stats,
  .saved-card {
    grid-template-columns: 1fr;
  }

  .saved-meta {
    text-align: left;
  }

  .monthly-table {
    min-width: 690px;
  }

  .monthly-row {
    grid-template-columns: 92px repeat(3, minmax(105px, 1fr)) 92px;
  }

  .monthly-report-table {
    overflow-x: auto;
  }

  .monthly-report-row {
    min-width: 620px;
  }

  .preview-header {
    display: grid;
  }

  .preview-lock {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .scenario-head {
    display: none;
  }
}

@media (max-width: 480px) {
  .assessment-layout,
  .tariff-paywall,
  .home-hero,
  .tool-picker,
  .pricing-band,
  .positioning-band,
  .source-band {
    width: min(calc(100vw - 0.8rem), 382px);
  }

  .topbar {
    width: 100%;
  }

  .top-cta {
    display: none;
  }

  .scan-panel,
  .result-panel {
    padding: 0.95rem;
  }

  h1 {
    font-size: 2.55rem;
  }
}

/* PDF export (html2canvas + jsPDF, per sectie) */
body.is-pdf-exporting::before {
  content: "PDF maken…";
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  background: rgba(240, 235, 224, 0.92);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 1.05rem;
}

.pdf-capture-root {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 260;
  width: 714px;
  max-width: 714px;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a2420;
  pointer-events: none;
}

.pdf-capture-block {
  width: 100%;
  background: #fff;
}

.pdf-capture-intro {
  display: grid;
  gap: 14px;
}

.pdf-capture-section-lead {
  display: grid;
  gap: 5px;
}

.pdf-capture-section-opener {
  display: grid;
  gap: 5px;
  padding-top: 6px;
  border-top: 1px solid #e2e9e5;
}

.pdf-capture-block > .pdf-capture-section-lead {
  padding-top: 6px;
  border-top: 1px solid #e2e9e5;
}

.pdf-capture-item-shell {
  width: 100%;
}

.pdf-capture-item-shell .report-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pdf-capture-item-shell ol.report-list {
  counter-reset: none;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .pdf-capture-signal .signal-card {
  margin: 0;
}

.report-paper.pdf-export-live,
.pdf-capture-root,
.pdf-render-root .pdf-paper-clone,
.pdf-render-root .report-paper {
  width: 702px !important;
  max-width: 702px !important;
  padding: 20px !important;
  margin: 0 auto !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #1a2420 !important;
  font-size: 10pt;
  line-height: 1.32;
}

.report-paper.pdf-export-live .section-kicker,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .section-kicker {
  margin: 0 0 4px;
  color: #0f6b4f;
  font-size: 7.5pt;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-paper.pdf-export-live .report-header,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid #0b3f34;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-logo {
  width: 28px;
  height: 28px;
  margin: 0 0 6px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-header h2 {
  margin: 0 0 6px;
  color: #0b3f34;
  font-size: 21pt;
  line-height: 1.08;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-header p,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section p,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list li {
  margin: 0;
  color: #2d3834;
  line-height: 1.32;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-stamp {
  display: grid;
  gap: 3px;
  padding: 11px;
  border-radius: 6px;
  color: #fff;
  background: #0b3f34;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-stamp span,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-stamp small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 7.5pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-stamp strong {
  font-size: 11pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-summary-grid section {
  min-height: 0;
  padding: 9px 10px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #f7faf8;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-summary-grid span {
  color: #5f6b66;
  font-size: 7pt;
  font-weight: 800;
  text-transform: uppercase;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-summary-grid strong {
  display: block;
  margin: 4px 0 2px;
  color: #0b3f34;
  font-size: 15pt;
  line-height: 1.1;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-summary-grid p {
  font-size: 8pt;
  line-height: 1.35;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section {
  padding-top: 8px;
  margin-top: 0;
  border-top: 1px solid #e2e9e5;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section + .report-section {
  margin-top: 0;
}

.pdf-capture-block .report-section {
  border-top: none;
  padding-top: 0;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section-head span {
  color: #9a6f27;
  font-size: 8pt;
  font-weight: 800;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-section-head h3 {
  margin: 0;
  color: #0b3f34;
  font-size: 11.5pt;
  line-height: 1.2;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list {
  display: grid;
  gap: 4px;
  margin: 4px 0 0;
  padding-left: 16px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) ol.report-list {
  padding-left: 0;
  list-style: none;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .action-list {
  margin-top: 4px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .action-list li,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list:not(.phrase-list) > li:not(.signal-card) {
  line-height: 1.3;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .pdf-page-break {
  page-break-before: always;
  break-before: page;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .pdf-keep-together {
  page-break-inside: avoid;
  break-inside: avoid;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .pdf-signal-card,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list .signal-card {
  padding: 7px 9px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #fff;
  list-style: none;
  page-break-inside: auto;
  break-inside: auto;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list .signal-card > * + * {
  margin-top: 3px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list .signal-card strong + small {
  margin-top: 1px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list .signal-card span {
  line-height: 1.3;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list .signal-card strong {
  display: block;
  color: #0b3f34;
  font-size: 10pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .report-list small {
  display: block;
  margin-top: 2px;
  color: #5f6b66;
  font-size: 8pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-legal {
  margin: 2px 0 0;
  color: #4a5752;
  font-size: 8pt;
  line-height: 1.28;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-legal em {
  font-style: normal;
  font-weight: 800;
  color: #0b3f34;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-story {
  margin: 3px 0 0;
  font-size: 9pt;
  line-height: 1.3;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 4px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-examples div {
  padding: 7px 8px;
  border-radius: 5px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-examples em {
  display: block;
  margin-bottom: 3px;
  font-size: 7pt;
  font-weight: 800;
  text-transform: uppercase;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .signal-examples p {
  margin: 0;
  font-size: 8.5pt;
  line-height: 1.28;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .example-bad {
  border: 1px solid #e0b8ae;
  background: #fff7f5;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .example-bad em {
  color: #b14a3a;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .example-good {
  border: 1px solid #b8d4c9;
  background: #f1f8f5;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .example-good em {
  color: #0f6b4f;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .phrase-list {
  padding-left: 0;
  list-style: none;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .phrase-list li {
  padding: 6px 8px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #f7faf8;
  list-style: none;
  line-height: 1.3;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars div {
  display: grid;
  grid-template-columns: 110px 52px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #fff;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars span {
  font-size: 8pt;
  color: #5f6b66;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars strong {
  font-size: 10pt;
  color: #0b3f34;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars i {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: #e8f1ed;
  overflow: hidden;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tariff-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #0f6b4f;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tax-breakdown,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-plan,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .month-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tax-breakdown div,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-plan section,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .month-plan-card {
  padding: 8px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #fff;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tax-breakdown span,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-plan span,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .month-plan-card span {
  display: block;
  font-size: 7.5pt;
  color: #5f6b66;
  text-transform: uppercase;
  font-weight: 800;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .tax-breakdown strong,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-plan strong,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .month-plan-card strong {
  display: block;
  margin-top: 3px;
  color: #0b3f34;
  font-size: 11pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .employment-note {
  margin: 8px 0 0;
  padding: 8px 9px;
  border: 1px solid #cfdde5;
  border-radius: 6px;
  background: #f4f9fb;
  color: #31413c;
  font-size: 8.5pt;
  line-height: 1.35;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-plan section p,
:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .month-plan-card p {
  margin-top: 3px;
  font-size: 8pt;
  line-height: 1.35;
  color: #4a5752;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .reserve-warning {
  grid-column: 1 / -1;
  padding: 8px;
  border: 1px solid #e0b8ae;
  border-radius: 6px;
  background: #fff7f5;
  font-size: 8.5pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .scenario-table {
  margin-top: 8px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  overflow: hidden;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .scenario-row {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 7px 8px;
  border-top: 1px solid #e2e9e5;
  font-size: 8.5pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .scenario-row.scenario-head {
  border-top: 0;
  background: #f1f6f3;
  font-weight: 800;
  font-size: 7pt;
  text-transform: uppercase;
  color: #5f6b66;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .scenario-row strong {
  color: #0b3f34;
  font-size: 8.5pt;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .market-card {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #d7dfda;
  border-radius: 6px;
  background: #f7faf8;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .market-track {
  position: relative;
  height: 8px;
  border-radius: 99px;
  background: #e8f1ed;
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .market-track b {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0b3f34;
  transform: translate(-50%, -50%);
}

:is(.report-paper.pdf-export-live, .pdf-capture-root, .pdf-render-root) .pdf-disclaimer p {
  font-size: 8pt;
  line-height: 1.4;
  color: #4c5752;
}

@media print {
  @page {
    margin: 12mm;
    size: A4;
  }

  .topbar,
  .site-footer,
  .assessment-layout,
  .calculator-layout,
  .tariff-paywall,
  .positioning-band,
  .source-band,
  .no-print,
  .ghost-button,
  .primary-button {
    display: none;
  }

  html,
  body {
    background: #fff;
    color: #111;
    font-size: 9.5pt;
    line-height: 1.35;
    overflow: visible;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-sheet[hidden] {
    display: none;
  }

  .report-sheet {
    display: block;
    width: 100%;
    margin: 0;
  }

  .report-paper {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .report-header {
    grid-template-columns: minmax(0, 1fr) 48mm;
    gap: 8mm;
    padding-bottom: 6mm;
    border-bottom: 1px solid #cfd8d2;
    break-inside: avoid;
  }

  .report-header h2 {
    margin-bottom: 3mm;
    font-size: 24pt;
    line-height: 1.05;
  }

  .report-header p,
  .report-summary-grid p,
  .report-section p,
  .report-list li {
    color: #26312d;
  }

  .report-stamp {
    padding: 5mm;
    border: 1px solid #0b3f34;
    background: #0b3f34;
  }

  .report-stamp strong {
    font-size: 13pt;
  }

  .report-summary-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4mm;
    margin: 6mm 0;
    break-inside: avoid;
  }

  .report-summary-grid section {
    min-height: 0;
    padding: 4mm;
    border: 1px solid #d7dfda;
    background: #f7faf8;
  }

  .report-summary-grid strong {
    margin: 2mm 0;
    font-size: 18pt;
  }

  .report-section {
    padding-top: 5mm;
    border-top: 1px solid #d7dfda;
    break-inside: auto;
  }

  .report-section + .report-section {
    margin-top: 5mm;
  }

  .report-section-head {
    margin-bottom: 3mm;
  }

  .report-section-head span {
    color: #9a6f27;
  }

  .report-section-head h3 {
    font-size: 12pt;
  }

  .tariff-report {
    width: 100%;
    margin: 0;
  }

  .tax-breakdown,
  .reserve-plan,
  .monthly-summary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3mm;
  }

  .reserve-plan {
    margin-top: 3mm;
  }

  .reserve-plan section,
  .reserve-warning {
    padding: 3mm;
    border: 1px solid #d7dfda;
    background: #fff;
    break-inside: avoid;
  }

  .reserve-plan strong {
    font-size: 13pt;
  }

  .reserve-plan p {
    font-size: 8.4pt;
    line-height: 1.35;
  }

  .reserve-warning {
    border-color: #e0b8ae;
    background: #fff7f5;
  }

  .monthly-report-table {
    margin-top: 3mm;
    border: 1px solid #d7dfda;
    border-radius: 0;
    break-inside: avoid;
  }

  .monthly-report-row {
    min-width: 0;
    grid-template-columns: 22mm 22mm 22mm 16mm 22mm;
    gap: 2mm;
    padding: 2.2mm 2.5mm;
    border-top: 1px solid #d7dfda;
    font-size: 8.4pt;
  }

  .monthly-report-head {
    background: #f1f6f3;
    font-size: 7.6pt;
  }

  .monthly-report-total {
    background: #eaf3ef;
  }

  .report-list {
    gap: 3mm;
    padding-left: 5mm;
  }

  .report-list .signal-card,
  .phrase-list li {
    padding: 4mm;
    border: 1px solid #d7dfda;
    background: #fff;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-list .signal-card strong {
    font-size: 10.5pt;
  }

  .report-list small {
    margin-top: 1mm;
    color: #5f6b66;
    font-size: 8.5pt;
  }

  .signal-story {
    margin-top: 2mm;
  }

  .signal-examples {
    grid-template-columns: 1fr 1fr;
    gap: 3mm;
    margin-top: 3mm;
  }

  .signal-examples div {
    padding: 3mm;
    border-radius: 4px;
  }

  .signal-examples em {
    margin-bottom: 1.5mm;
    font-size: 8pt;
  }

  .signal-examples p {
    font-size: 8.8pt;
    line-height: 1.35;
  }

  .example-bad {
    border-color: #e0b8ae;
    background: #fff7f5;
  }

  .example-good {
    border-color: #b8d4c9;
    background: #f1f8f5;
  }

  .action-list {
    margin-top: 3mm;
  }

  .report-disclaimer {
    color: #4c5752;
    font-size: 8.5pt;
  }
}

/* =========================================
   Visual upgrade: donkere hero-band (home)
   ========================================= */
.hero-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(2, 40, 30, 0) 78%, #02281e 99%),
    radial-gradient(120% 130% at 80% -10%, #15c98e 0%, #0a8e68 30%, #064a37 62%, #02281e 100%);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 54px 54px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob.hb1 {
  width: 34rem;
  height: 34rem;
  top: -16rem;
  right: -8rem;
  background: #2bf0b0;
  opacity: 0.34;
}

.hero-blob.hb2 {
  width: 26rem;
  height: 26rem;
  bottom: -15rem;
  left: -10rem;
  background: var(--coral);
  opacity: 0.2;
}

.hero-band .home-hero {
  position: relative;
  padding-bottom: 3.2rem;
}

.hero-band .home-hero-copy h1 {
  color: #fff;
}

.hero-band .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #c9efe0;
}

.hero-band .intro {
  color: #d8efe5;
}

.hero-band .hero-usps {
  color: #c9efe0;
}

.hero-band .hero-usps li::before {
  color: var(--green-glow);
}

.usp-pro {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.08rem 0.5rem;
  border-radius: 999px;
  background: #ffd24a;
  color: #4a3800;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hero-band .ghost-button {
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-band .ghost-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hl {
  position: relative;
  z-index: 0;
  color: #ffd24a;
  white-space: nowrap;
}

.hl::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.15em;
  bottom: 0.08em;
  height: 0.34em;
  z-index: -1;
  border-radius: 4px;
  background: rgba(255, 210, 74, 0.22);
  transform: rotate(-1deg);
}

/* Zwevende factuur + chips */
.home-hero-visual {
  position: relative;
}

.hero-window {
  width: min(400px, 92%);
  margin: 1.2rem auto;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transform: rotate(-3.5deg);
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: hero-zweef 7s ease-in-out infinite;
}

.hero-window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #eaf0ed;
}

.hw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.hw-d1 { background: #ff5f57; }
.hw-d2 { background: #febc2e; }
.hw-d3 { background: #28c840; }

.hero-window-adres {
  flex: 1;
  margin-left: 12px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a3a34;
}

.hero-window img {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
  animation: hero-zweef 6.4s ease-in-out infinite;
}

.chip-bekeken {
  top: -0.4rem;
  left: 4%;
  background: #fff;
  color: var(--green-deep);
  transform: rotate(-5deg);
  animation-delay: 0.5s;
}

.chip-herinnering {
  bottom: 4.2rem;
  left: -1.2rem;
  background: #ffd24a;
  color: #4a3800;
  transform: rotate(3deg);
  animation-delay: 1s;
}

.chip-betaald {
  bottom: 0.4rem;
  right: 5%;
  background: #1fae7e;
  color: #fff;
  transform: rotate(-3deg);
  animation-delay: 0.2s;
}

@keyframes hero-zweef {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}

/* Golf-overgang naar de lichte achtergrond */
.hero-golf {
  display: block;
  width: 100%;
  height: clamp(38px, 7vw, 84px);
  margin-top: -1px;
}

@media (max-width: 980px) {
  .chip-herinnering {
    left: 0;
  }
}

@media (max-width: 560px) {
  .hero-chip {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }

  .chip-herinnering {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-window,
  .hero-chip {
    animation: none !important;
  }
}

/* DBA-strip: compacte teaser voor de DBA-scan op de homepage */
.dba-strip {
  width: min(1180px, calc(100vw - 2rem));
  margin: 1.2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.4rem;
  padding: 1.05rem 1.4rem;
  border: 1px solid rgba(232, 168, 48, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #fdf6e7, #f8efdb);
  box-shadow: var(--shadow-soft);
}

.dba-strip-tekst {
  display: grid;
  gap: 0.15rem;
  min-width: 16rem;
  flex: 1 1 20rem;
}

.dba-strip-tekst strong {
  font-size: 1.02rem;
}

.dba-strip-tekst span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dba-strip-acties {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dba-strip .ghost-button {
  border-color: rgba(232, 168, 48, 0.65);
  background: #fff;
}

.dba-strip-link {
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.92rem;
}

.dba-strip-link:hover {
  text-decoration: underline;
}

/* =========================================
   Hulp-knopje rechtsonder (sitebreed)
   ========================================= */
.help-widget {
  position: fixed;
  right: clamp(0.8rem, 3vw, 1.5rem);
  bottom: clamp(0.8rem, 3vw, 1.5rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.help-knop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  color: #fff;
  background: linear-gradient(135deg, #ff8266 0%, var(--coral) 45%, #f4502a 100%);
  box-shadow: 0 12px 30px rgba(244, 80, 42, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.help-knop:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(244, 80, 42, 0.48);
}

.help-knop:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 2px;
}

.help-knop-open { font-size: 1.15rem; line-height: 1; }
.help-knop-dicht { display: none; font-size: 1.35rem; line-height: 1; }
.help-widget.is-open .help-knop-open { display: none; }
.help-widget.is-open .help-knop-dicht { display: inline; }
.help-widget.is-open .help-knop-tekst { display: none; }

.help-panel {
  width: min(320px, calc(100vw - 1.6rem));
  padding: 1.1rem 1.15rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(3, 68, 52, 0.22);
}

.help-panel-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.help-panel-kop strong { font-size: 1.02rem; }

.help-sluit {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  padding: 0 0.2rem;
}

.help-sluit:hover { color: var(--ink); }

.help-intro {
  margin: 0 0 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.help-links {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.help-links a {
  display: block;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--green-deep);
  background: #fff;
  transition: background 140ms ease, border-color 140ms ease;
}

.help-links a:hover {
  background: var(--green-soft);
  border-color: var(--green);
}

.help-mail {
  display: block;
  text-align: center;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, #0a7f62 100%);
  box-shadow: 0 10px 24px rgba(3, 68, 52, 0.22);
}

.help-mail:hover { transform: translateY(-1px); }

.help-kopieer {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.2rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: underline;
  text-align: center;
}

.help-kopieer:hover { color: var(--green-deep); }

.help-kopieer.is-gekopieerd {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  cursor: text;
  user-select: all;
}

@media (prefers-reduced-motion: reduce) {
  .help-knop, .help-mail { transition: none; }
}

@media print {
  .help-widget { display: none !important; }
}
