
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f4efe6;
  --bg-alt: #ece4d7;
  --surface: rgba(255, 252, 246, 0.88);
  --card: #fffdf8;
  --line: rgba(19, 36, 33, 0.12);
  --text: #132421;
  --muted: #5d6a68;
  --brand: #0d7a5f;
  --brand-strong: #07533f;
  --accent: #e8873a;
  --accent-soft: #fff0e2;
  --success: #dff4e8;
  --shadow: 0 24px 60px rgba(19, 36, 33, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 122, 95, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(232, 135, 58, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f3ec 0%, var(--bg) 48%, #f1eadf 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(19, 36, 33, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 36, 33, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 78%);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 122, 95, 0.10);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232, 135, 58, 0.16);
}
.section-intro {
  max-width: 720px;
  margin-bottom: 30px;
}
.section-intro h2 {
  margin: 16px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}
.section-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 236, 0.78);
  border-bottom: 1px solid rgba(19, 36, 33, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.brand-copy strong {
  display: block;
  font-size: 17px;
}
.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(19, 36, 33, 0.05);
}
.site-nav .nav-cta {
  background: var(--text);
  color: white;
}
.hero {
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}
.hero h1 {
  margin: 18px 0 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
  max-width: 11ch;
}
.hero .lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: white;
  box-shadow: 0 16px 28px rgba(13, 122, 95, 0.24);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 36, 33, 0.08);
}
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-chip,
.metric,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(19, 36, 33, 0.08);
  font-size: 14px;
  font-weight: 600;
}
.hero-panel,
.card,
.check-widget,
.check-aside,
.cta-band,
.faq-item,
.footer-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}
.hero-panel {
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -20% -35% 28%;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 135, 58, 0.24), transparent 62%);
}
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-strong);
}
.panel-label::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}
.panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  margin: 18px 0 16px;
}
.panel-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.panel-list li {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
}
.panel-list strong {
  display: block;
  margin-bottom: 4px;
}
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.stat-box {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(19, 36, 33, 0.08);
}
.stat-box strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
}
.grid-3,
.grid-2,
.route-grid,
.issue-grid,
.step-grid,
.proof-grid,
.footer-grid,
.cross-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}
.grid-3,
.route-grid,
.issue-grid,
.proof-grid,
.cross-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2,
.detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.route-card,
.issue-card,
.step-card,
.proof-card,
.detail-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}
.route-card {
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: 'Bekijk';
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-weight: 700;
  color: var(--brand-strong);
}
.route-card:hover { transform: translateY(-3px); }
.card h3,
.route-card h3,
.issue-card h3,
.step-card h3,
.proof-card h3,
.detail-card h3 {
  margin: 14px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
}
.card p,
.route-card p,
.issue-card p,
.step-card p,
.proof-card p,
.detail-card p,
.copy,
.faq-item p,
.footer-panel p { color: var(--muted); line-height: 1.68; }
.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}
.list li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(13, 122, 95, 0.12);
  color: var(--brand-strong);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.check-shell {
  padding-top: 10px;
}
.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.check-widget,
.check-aside {
  padding: 26px;
}
.check-top {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.check-progress {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 36, 33, 0.08);
  overflow: hidden;
}
.check-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 0.25s ease;
}
.check-step-label { color: var(--muted); font-size: 14px; font-weight: 700; }
.check-focus {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7c4719;
  font-size: 14px;
  font-weight: 700;
}
.check-focus button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.check-body h3,
.check-result h3 {
  margin: 18px 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
}
.check-help,
.check-result p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}
.check-options {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.option {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.option:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 122, 95, 0.45);
}
.option strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}
.option span { color: var(--muted); line-height: 1.5; }
.check-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  cursor: pointer;
}
.hidden { display: none !important; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.result-pill {
  padding: 16px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.result-pill small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.result-pill strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
}
.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }
.check-aside {
  background: linear-gradient(180deg, rgba(13, 122, 95, 0.10) 0%, rgba(255, 255, 255, 0.72) 100%);
}
.check-aside h3,
.footer-panel h3,
.cta-band h3 {
  margin: 12px 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
}
.faq-grid {
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 22px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 12px; }
.cta-band {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.site-footer {
  padding: 32px 0 48px;
}
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
}
.footer-panel {
  padding: 24px;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-links a {
  color: var(--brand-strong);
  font-weight: 700;
}
@media (max-width: 1000px) {
  .hero-grid,
  .check-layout,
  .cta-band,
  .footer-grid,
  .detail-grid,
  .grid-2,
  .stat-band,
  .result-grid { grid-template-columns: 1fr; }
  .grid-3,
  .route-grid,
  .issue-grid,
  .step-grid,
  .proof-grid,
  .cross-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; }
  .hero { padding-top: 44px; }
  .hero h1 { max-width: 12ch; }
  .grid-3,
  .route-grid,
  .issue-grid,
  .step-grid,
  .proof-grid,
  .cross-grid,
  .form-grid { grid-template-columns: 1fr; }
  .wrap { width: min(calc(100% - 24px), var(--wrap)); }
  .section { padding: 68px 0; }
  .check-widget,
  .check-aside,
  .hero-panel,
  .card,
  .route-card,
  .issue-card,
  .step-card,
  .proof-card,
  .detail-card,
  .cta-band,
  .faq-item,
  .footer-panel { padding: 20px; }
}
