/*
  Sections — ritme: paper (default) ↔ white (alt) ↔ orange-soft (warm)
  Oranje alleen op actie/merk: kickers, steps, list accents, CTAs
*/

.proof-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.proof-flow {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.proof-line {
  display: block;
}

/* —— Findings: 2 zichtbaar + toon meer —— */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

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

.find-more {
  display: none;
}

.find-grid.is-expanded .find-more {
  display: contents;
}

.find-card {
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.find-tag {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 4px;
}

.find-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.find-body {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.find-tech {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
}

.find-mail {
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.find-mail-label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mist);
}

.find-mail-body {
  margin: 0;
  font-size: 0.86rem;
  color: var(--navy);
  font-family: ui-monospace, "Cascadia Code", monospace;
  line-height: 1.4;
}

.form-micro {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Wie zit erachter — trust vóór #start */
.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  max-width: 48rem;
}

.founder-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: var(--orange-soft);
  border: 2px solid rgba(240, 90, 40, 0.28);
  box-shadow: 0 4px 18px rgba(26, 39, 68, 0.1);
  color: var(--orange);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

img.founder-photo {
  display: block;
  padding: 0;
  font-size: 0;
  color: transparent;
}

@media (max-width: 600px) {
  .founder {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--space-2);
  }

  .founder-photo {
    width: 168px;
    height: 168px;
  }

  .founder-copy {
    max-width: 36rem;
  }

  .founder-bio,
  .founder-link {
    text-align: left;
  }
}

.founder-name {
  margin: 0 0 0.15rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.founder-name a {
  color: var(--navy);
  text-decoration: none;
}

.founder-name a:hover {
  color: var(--orange);
}

.founder-role {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--mist);
  font-weight: 500;
}

.founder-bio {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: none;
  text-wrap: pretty;
}

.founder-bio:last-of-type {
  margin-bottom: 0.65rem;
}

.founder-link {
  margin: 0;
  font-size: 0.92rem;
}

.founder-link a {
  font-weight: 600;
}

.section {
  /* Reason: iets strakker ritme — space-6 voelde te luchtig tussen blokken. */
  padding: 3.5rem 0;
  background: var(--paper);
}

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

.section-warm {
  background: var(--orange-soft);
}

.kicker {
  display: none; /* Reason: conversie-pass — minder pill-ruis; H2 volstaat */
}

.section-monitor {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.section-monitor .lead {
  margin-bottom: 0.85rem;
}

.section-monitor .lead:last-child {
  margin-bottom: 0;
}

.section-monitor h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  font-weight: 700;
  max-width: none;
}

.monitor-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.monitor-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
}

.monitor-shield {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* Sticky CTA (mobiel) — dicht bij de beslissing */
.sticky-cta {
  display: none;
}

@media (max-width: 820px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(26, 39, 68, 0.08);
  }

  .sticky-cta .btn {
    width: 100%;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .sticky-cta.is-hidden {
    display: none;
  }
}

.section h2 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.9vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  /* Reason: titels mogen de sectiebreedte gebruiken i.p.v. vroeg afbreken. */
  max-width: 36rem;
  text-wrap: balance;
  color: var(--navy);
}

.lead {
  margin: 0 0 1.1rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.lead + .lead {
  margin-top: 0.15rem;
}

.lead-body {
  max-width: 42rem;
}

/* Herkenbare KMO-scenario’s — 2×2 raster, zachte vakken. */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
  padding: 0;
  list-style: none;
}

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

.scenario-grid li {
  margin: 0;
  padding: 1rem 1.1rem;
  /* Reason: zelfde groene vlak als “Met DomeinScan” */
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  color: var(--ink-soft, #334155);
  font-size: 0.98rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.scenario-grid strong {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--navy, #0f172a);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
}

.scenario-grid p {
  margin: 0;
}

.scenario-close {
  margin: 0 0 var(--space-3);
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft, #334155);
  text-wrap: pretty;
}

.scenario-cta-row {
  margin: 0;
}

/* Scope: wat DomeinScan wél/niet doet — geen card, wel zichtbaar anker. */
.scope-note {
  margin: var(--space-4) 0 0;
  max-width: 42rem;
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 3px solid var(--navy, #0f172a);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft, #334155);
  text-wrap: pretty;
}

.scope-note strong {
  color: var(--ink, #0f172a);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.scope-note .scope-bullets {
  margin: 0 0 0.65rem;
  padding-left: 1.15rem;
}

.scope-note .scope-bullets li {
  margin: 0.25rem 0;
}

.scope-note > p {
  margin: 0;
}

.narrow {
  max-width: 48rem;
}

.muted {
  color: var(--mist);
  font-size: 0.92rem;
}

/* Metrics — count-up bij zichtbaar */
.section-metrics {
  background: var(--navy);
  color: #fff;
}

.section-metrics h2 {
  color: #fff;
  margin-bottom: var(--space-4);
}

.section-metrics .lead {
  color: rgba(255, 255, 255, 0.72);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  width: 100%;
  max-width: none;
}

@media (max-width: 700px) {
  .metrics {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}

.metric {
  padding: var(--space-3) var(--space-2);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.metric-value {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--orange);
}

.metric-label {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

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

.quote {
  margin: 0;
  padding: var(--space-3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}

.section-alt .quote {
  background: var(--white);
}

.quote p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.quote footer {
  font-size: 0.88rem;
  color: var(--mist);
}

/* Schild-lijsten (natuurlijke copy, geen telegramstijl) */
.shield-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}

.shield-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.shield-list img {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
}

.shield-list-lg {
  gap: 1.15rem;
  max-width: 48rem;
}

/* Reason: alleen de staptitel (direct onder div), niet inline <strong> in zinnen */
.shield-list-lg > li > div > strong:first-child {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.shield-list-lg p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.shield-list-lg p + p,
.shield-list-lg ul + p {
  margin-top: 0.65rem;
}

/* Reason: geneste bullets onder stap 3 mogen geen schild-grid erven */
.shield-list-lg li > div > ul {
  list-style: disc;
  margin: 0.45rem 0 0 1.15rem;
  padding: 0;
  display: block;
}

.shield-list-lg li > div > ul > li {
  display: list-item;
  margin: 0.2rem 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.shield-list-lg img {
  width: 1.5rem;
  height: 1.5rem;
}

.check-list {
  margin: 0 0 var(--space-3);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
}

.check-list li {
  padding-left: 0.85rem;
  border-left: 3px solid var(--orange);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

/* Monitor */
.monitor-inner {
  max-width: 48rem;
}

.price {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--mist);
}

.monitor-points {
  margin: 0 0 var(--space-3);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--ink-soft);
}

.monitor-points li::before {
  content: "– ";
  color: var(--orange);
  font-weight: 700;
}

/* FAQ */
.faq {
  max-width: 40rem;
  display: grid;
  gap: 0.5rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
}

.section-alt .faq details {
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style-position: outside;
}

.faq summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.faq details p {
  margin: 0.65rem 0 0.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Start */
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

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

.start-panel {
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.start-panel label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.9rem 0 0.35rem;
  color: var(--navy);
}

.start-panel label:first-of-type {
  margin-top: 0;
}

.start-panel input[type="text"],
.start-panel input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

.start-panel input:focus {
  outline: 2px solid rgba(240, 90, 40, 0.35);
  border-color: var(--orange);
}

.field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--warn);
}

.field-hint-warn {
  color: var(--red, #8b1e1e);
  font-weight: 600;
}

.consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1.1rem 0 0 !important;
  font-weight: 400 !important;
  font-size: 0.88rem !important;
  color: var(--ink-soft);
  cursor: pointer;
}

.consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--orange);
}

/* Reason: honeypot buiten viewport — echte bezoekers zien/vullen dit niet */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-block {
  margin-top: 1.1rem;
}

.captcha-block label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.captcha-q {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.captcha-math input[type="text"] {
  max-width: 8rem;
}

.start-panel button {
  margin-top: 1.2rem;
  width: 100%;
}

.flash {
  margin: 0 0 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.flash-ok {
  background: #e8f6ef;
  color: var(--ok);
  border: 1px solid #b7e0cb;
}

.flash-err {
  background: var(--orange-soft);
  color: #6b3a1e;
  border: 1px solid rgba(240, 90, 40, 0.28);
}

.flash-ok ol {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

/* Footer — navy band; privacytekst erin (geen aparte H2) */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--space-4) 0 var(--space-5);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: var(--space-2);
}

.footer-brand {
  display: flex;
  align-items: center;
  margin: 0 0 0.65rem;
}

.footer-wordmark {
  display: block;
  height: 2rem;
  width: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: #ff7a4d;
}

.footer-guides {
  margin: 0.9rem 0 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

.footer-guides strong {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 0.35rem;
}

.footer-guides a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.footer-guides a:hover {
  color: var(--orange);
}

.footer-legal {
  max-width: none;
  display: grid;
  gap: 0.45rem;
}

.footer-legal p {
  margin: 0;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  text-wrap: pretty;
}

.footer-disclaimer {
  margin: 0;
  max-width: none;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
  text-wrap: pretty;
}

/* SEO-gidsen (dkim-dmarc-check, website-veiligheid-check, …) */
.guide-page {
  padding: var(--space-5) 0 var(--space-6);
  background: var(--white);
}

.guide-page .guide-kicker {
  margin: 0 0 var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mist);
}

.guide-page h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  max-width: 22ch;
}

.guide-page .lede {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 var(--space-3);
  font-size: 1.1rem;
  line-height: 1.55;
}

.guide-page .guide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0 0 var(--space-5);
}

.guide-page h2 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: var(--space-4) 0 var(--space-2);
}

.guide-page p,
.guide-page li {
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 42rem;
}

.guide-page ul,
.guide-page ol {
  padding-left: 1.25rem;
  margin: 0 0 var(--space-3);
}

.guide-page code {
  font-size: 0.92em;
  background: var(--paper);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Compare: zonder / met DomeinScan (waardepropositie) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.compare-col h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
}
.compare-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  line-height: 1.55;
  font-size: 0.95rem;
}
.compare-col li { margin-bottom: 0.45rem; }
.compare-without {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.compare-with {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.section-monitor .monitor-promises {
  margin: 1.25rem 0 1rem 0;
  text-align: left;
}
