/* Vragenlijstklaar - landing site
   Mobile-first, no external dependencies. Fonts self-hosted (site/fonts/).
   Voice: nuchter, stellig, papier-echt - the design world is the form itself. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("fonts/archivo-var.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-serif-4-var.woff2") format("woff2");
}

:root {
  --ink: #142430;           /* headings, near-black blue-slate */
  --body: #33424d;          /* body text - 9.4:1 on --paper */
  --muted: #55646f;         /* secondary text - 5.9:1 on white */
  --paper: #f7f9f8;         /* page background, teal-tinted off-white */
  --surface: #ffffff;
  --tint: #eaf1ef;          /* alternating section background */
  --border: #d7e0dd;
  --brand: #135e63;         /* deep teal - 7.5:1 with white */
  --brand-dark: #0d474b;
  --brand-deep: #0b3a3e;    /* hero surface */
  --on-brand: #f2f7f6;      /* text on hero */
  --on-brand-soft: #bcd7d6; /* secondary text on hero - 7:1 on --brand-deep */
  --pen: #2050c0;           /* ballpoint blue - the "filled in" ink */
  --flag-bg: #fdf3e2;       /* honest-gap chip */
  --flag-ink: #7a4a08;
  --error: #a4262c;
  --success-bg: #eaf3ee;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(20, 36, 48, 0.06), 0 10px 28px rgba(20, 36, 48, 0.08);
  --font-ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-prose: "Source Serif 4", Georgia, "Times New Roman", serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  font-family: var(--font-prose);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 {
  font-family: var(--font-ui);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.75em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.05rem, 3.1vw + 1.1rem, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.5rem, 1.4vw + 1rem, 1.95rem);
  font-weight: 750;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.3;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

a, button, input, textarea, label { touch-action: manipulation; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}
.hero :focus-visible,
.site-footer :focus-visible {
  outline-color: #ffffff;
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius) 0;
  font-family: var(--font-ui);
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---- Layout ---- */
.container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 46rem; }

.section { padding: clamp(3.25rem, 6vw, 5rem) 0; }
.section--tinted { background: var(--tint); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 248, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 3.75rem;
}

.wordmark {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--brand); }
.wordmark--footer { margin: 0; }

.site-nav {
  display: none;
  gap: 1.4rem;
  margin-left: auto;
}
.site-nav a {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--brand-dark); text-decoration: underline; }

.site-header__inner > .btn { margin-left: auto; }

@media (min-width: 48em) {
  .site-nav { display: flex; }
  .site-header__inner > .btn { margin-left: 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover { background: rgba(19, 94, 99, 0.08); color: var(--brand-dark); }
.btn--small { padding: 0.5rem 1rem; font-size: 0.92rem; }
.btn--large { padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { display: block; width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: default; }

/* ---- Hero (drenched brand surface) ---- */
.hero {
  background:
    radial-gradient(90rem 40rem at 85% -20%, rgba(255, 255, 255, 0.07), transparent 60%),
    var(--brand-deep);
  color: var(--on-brand);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5rem);
}
.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 60em) {
  .hero__inner { grid-template-columns: 11fr 9fr; }
}
.hero h1 { color: #fff; }
.hero__lead {
  font-size: 1.2rem;
  color: var(--on-brand-soft);
  max-width: 34em;
}
.hero__note {
  color: var(--on-brand-soft);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.hero .btn--primary {
  background: #fff;
  color: var(--brand-deep);
}
.hero .btn--primary:hover { background: #e2eeec; color: var(--brand-deep); }
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.cta-row__sep { color: var(--on-brand-soft); font-size: 0.95rem; }
.cta-row__link { color: #fff; font-weight: 500; }
.cta-row__link:hover { color: #fff; }

/* Facts strip: the four honest anchors, form-ruled */
.hero__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 1.1rem 0 0;
  margin: 2.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--on-brand-soft);
}
.hero__facts strong { color: #fff; font-weight: 700; }
@media (min-width: 60em) {
  .hero__facts {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 0.5rem 2.5rem;
  }
}

.form-card__how {
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
}
.form-card__direct { margin-top: 0.9rem; }

/* ---- The questionnaire artifact (signature element) ---- */
.hero__artifact { max-width: 30rem; }
.sheet {
  position: relative;
  background: var(--surface);
  color: var(--body);
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(4, 22, 24, 0.35), 0 24px 48px rgba(4, 22, 24, 0.3);
  padding: 1.4rem 1.5rem 1.6rem;
}
.sheet__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
}
.sheet__title {
  font-family: var(--font-ui);
  font-weight: 750;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sheet__badge {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  white-space: nowrap;
}
.sheet__row {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.sheet__row:last-of-type { border-bottom: 0; }
.sheet__q {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.sheet__a {
  font-size: 0.95rem;
  color: var(--pen);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.45rem;
}
.sheet__check {
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  transform: translateY(0.12em);
  background: var(--pen);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.3 4.2 11.95l1.6-1.6 3.75 3.75 8.6-8.6 1.6 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.3 4.2 11.95l1.6-1.6 3.75 3.75 8.6-8.6 1.6 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sheet__ref {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.sheet__a--gap { color: var(--body); }
.sheet__flag {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--flag-ink);
  background: var(--flag-bg);
  border: 1px solid rgba(122, 74, 8, 0.35);
  border-radius: 4px;
  padding: 0.08rem 0.4rem;
  transform: translateY(-0.08em);
}
.sheet__stamp {
  position: absolute;
  right: 1.1rem;
  bottom: -0.95rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  background: var(--surface);
  border: 2px solid var(--brand-dark);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  transform: rotate(-3deg);
  box-shadow: 0 6px 16px rgba(4, 22, 24, 0.25);
}

/* The sheet fills itself in; final state is the default (reduced-motion safe) */
@media (prefers-reduced-motion: no-preference) {
  .sheet__a { animation: sheet-fill 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .sheet__row--a1 .sheet__a { animation-delay: 0.5s; }
  .sheet__row--a2 .sheet__a { animation-delay: 1.1s; }
  .sheet__row--a3 .sheet__a { animation-delay: 1.7s; }
  .sheet__stamp { animation: sheet-stamp 0.35s cubic-bezier(0.16, 1, 0.3, 1) 2.4s both; }
}
@keyframes sheet-fill {
  from { opacity: 0; transform: translateY(0.4rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sheet-stamp {
  from { opacity: 0; transform: rotate(-3deg) scale(1.35); }
  to { opacity: 1; transform: rotate(-3deg) scale(1); }
}

/* ---- Triage section / form ---- */
.section__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 56em) {
  .section__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.8rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.1em;
  height: 1.1em;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.3 4.2 11.95l1.6-1.6 3.75 3.75 8.6-8.6 1.6 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 17.3 4.2 11.95l1.6-1.6 3.75 3.75 8.6-8.6 1.6 1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.checklist strong { font-family: var(--font-ui); font-weight: 650; font-size: 0.98em; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
}
.form-card__title { margin-bottom: 1.25rem; }

.field { margin-bottom: 1.1rem; }

label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.label-optional { font-weight: 400; color: var(--muted); }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #8fa0a4;
  border-radius: var(--radius-sm);
}
textarea { resize: vertical; }

input[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: var(--error); }

.hint {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}
.error {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--error);
  margin: 0.35rem 0 0;
}
.form-error { margin-top: 0.9rem; }
.form-error a { color: var(--error); font-weight: 600; }

.form-success {
  background: var(--success-bg);
  border: 1px solid #b7d4c3;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  color: #1d4230;
  margin-top: 1.25rem;
}

/* ---- Hoe het werkt ---- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 48em) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.5rem;
  background: var(--surface);
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: 5px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 750;
  vertical-align: -0.3em;
}

/* Leverancierspas callout: styled as the pass itself */
.callout {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem 1.2rem 1.6rem;
  max-width: 44rem;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.45rem;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--brand) 0 6px,
      var(--surface) 6px 12px
    );
}
.section--tinted .callout { background: var(--surface); }

/* ---- Waarom (pillars: ruled columns, no boxes) ---- */
.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.9rem 2.5rem;
}
@media (min-width: 48em) {
  .pillars { grid-template-columns: 1fr 1fr; }
}
.pillars li {
  border-top: 2px solid var(--brand);
  padding-top: 0.9rem;
}
.pillars h3 { margin-bottom: 0.35em; }
.pillars p { margin: 0; }

/* ---- Prijs ---- */
.price-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.price-card .btn { margin-top: 0.4rem; }
.price-card__note {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 1.4rem;
}

/* ---- FAQ ---- */
.faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__item h3 { margin-bottom: 0.45em; }
.faq__item p { margin: 0; }

/* ---- Gidsen (quiet link rows) ---- */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.guide-list li {
  border-top: 1px solid var(--border);
}
.guide-list li:last-child { border-bottom: 1px solid var(--border); }
.guide-list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 1rem;
  padding: 0.95rem 0.25rem;
  text-decoration: none;
  color: inherit;
}
.guide-list a:hover { background: rgba(19, 94, 99, 0.05); }
.guide-list h3 {
  font-size: 1.02rem;
  margin: 0;
  color: var(--brand);
}
.guide-list a:hover h3 { color: var(--brand-dark); text-decoration: underline; }
.guide-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1 1 22rem;
}
.guide-list .guide-list__arrow {
  font-family: var(--font-ui);
  color: var(--brand);
  margin-left: auto;
}

/* ---- Slot-CTA ---- */
.section--cta { padding: 4rem 0; }
.section--cta__inner { text-align: center; }

/* ---- Legal page + guide articles ---- */
.legal h1 { margin-bottom: 1em; }
.legal h2 { font-size: 1.3rem; margin-top: 2em; }
.legal ol { padding-left: 1.4rem; }
.legal ol li { margin-bottom: 0.5rem; }
.legal__summary {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.back-link { display: inline-block; margin-top: 2rem; font-family: var(--font-ui); }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: #ccd6dc;
  padding: 2.5rem 0;
  margin-top: 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .wordmark { color: #fff; }
.site-footer .wordmark span { color: #7fc4c9; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.site-footer a { color: #ccd6dc; }
.site-footer a:hover { color: #fff; }
.site-footer__legal {
  font-family: var(--font-ui);
  color: #9fabb5;
  font-size: 0.88rem;
  margin: 0;
}
@media (min-width: 48em) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---- Draft/concept banner ---- */
.draft-banner {
  background: #fff3cd;
  border: 2px solid #d4900a;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  color: #6b4200;
  font-size: 0.97rem;
}
.draft-banner strong { color: #4e3000; }

/* ---- Legal placeholder block ---- */
.legal-placeholder {
  background: #fff8e6;
  border: 1px dashed #c4880a;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  margin: 1rem 0;
  color: #6b4200;
  font-style: italic;
}

/* ---- Motion preferences ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
