/* Gewoon Online — gwnonline.nl
   Palette: warm-blue + cream, trustworthy and calm.
   No framework, no build step. Pure CSS variables. */

:root {
  --ink: #0e2138;
  --muted: #5a6b80;
  --bg: #f6f1e7;
  --paper: #ffffff;
  --primary: #1f3a64;
  --primary-hover: #2a4a7a;
  --accent: #c79257;
  --accent-soft: #f1dcc1;
  --line: #e3dccd;
  --line-strong: #cdc4b1;
  --good: #2f6f4f;
  --error: #b6432d;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -18px rgba(14, 33, 56, 0.25);
  --maxw: 1100px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ─────────── Header / nav ─────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-mark-img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
}
.nav-menu {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}
.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.nav-menu a:hover { border-color: var(--accent); text-decoration: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 720px) {
  .nav-menu { display: none; }
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(31, 58, 100, 0.6);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-light:hover { background: var(--accent-soft); border-color: var(--accent); }
.btn-block { width: 100%; }

/* ─────────── Hero ─────────── */
.hero {
  padding: 64px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-intro {
  font-size: 1.18rem;
  color: var(--muted);
  margin: 14px 0 28px;
  max-width: 32em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-visual h3 {
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.mock-mail {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--accent);
}
.mock-mail .from { font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.mock-mail .subj { color: var(--muted); margin-bottom: 10px; }
.mock-mail ul { margin: 0; padding-left: 18px; }
.mock-mail li { margin-bottom: 3px; }
.mock-reply {
  margin-top: 14px;
  padding: 12px 14px;
  background: #eef2f9;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-reply .check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  font-size: 13px;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
}

/* ─────────── Sections ─────────── */
section { scroll-margin-top: 80px; }
.section { padding: 64px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 38em; margin: 0 auto 44px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ─────────── Voor wie / for-grid ─────────── */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.for-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.for-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.for-card .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.for-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.for-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ─────────── Wat krijg je ─────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.benefit h3 { font-size: 1.02rem; margin-bottom: 4px; }
.benefit p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ─────────── Pakketten ─────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #fbf6ec 100%);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.price-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.price-card .sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-card .price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.price-card .price .per {
  font-size: 0.95rem;
  color: var(--muted);
}
.price-card .setup {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 0.94rem;
  flex-grow: 1;
}
.price-card li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}
.price-card li.dim { color: var(--muted); }
.price-card li.dim::before { color: var(--line-strong); content: "—"; }

.pricing-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ─────────── Hoe werkt het ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.step h3 { margin-top: 10px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ─────────── FAQ ─────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ─────────── Contact / formulier ─────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info h3 { margin-bottom: 14px; }
.contact-info .item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact-info .item:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .item .ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info .item b { display: block; color: var(--ink); margin-bottom: 2px; }
.contact-info .item span { color: var(--muted); }
.contact-info a { color: var(--primary); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-form h3 { margin-bottom: 16px; }
.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-row label .opt { color: var(--muted); font-weight: 400; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(31, 58, 100, 0.12);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-msg {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.94rem;
  display: none;
}
.form-msg.ok { background: #e8f3ec; color: var(--good); display: block; }
.form-msg.err { background: #fbe7e2; color: var(--error); display: block; }
.form-foot {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ─────────── Final CTA ─────────── */
.final-cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.final-cta h2 { color: #fff; margin: 0 0 6px; }
.final-cta p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.final-cta .btn-light { background: #fff; color: var(--primary); }
.final-cta .btn-light:hover { background: var(--accent-soft); }

/* ─────────── Footer ─────────── */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--primary); }

/* ─────────── Utility ─────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ─────────── Modules section: bundle deal + extras ─────────── */
/* Module cards hergebruiken .price-card stijl - geen duplicatie nodig */

.bundle-deal {
  margin-top: 36px;
  background: linear-gradient(135deg, #1f3a64 0%, #2a4a7a 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow);
}
.bundle-headline h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.35rem;
  font-weight: 700;
}
.bundle-headline p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
}
.bundle-price {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bundle-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
}
.bundle-old .strike {
  text-decoration: line-through;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
}
.bundle-old .old-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.bundle-arrow {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}
.bundle-new {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 4px;
  position: relative;
  padding-bottom: 18px;
}
.bundle-new .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.bundle-new .per {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.bundle-new .save {
  grid-column: 1 / -1;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.bundle-cta {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: #fff !important;
  font-weight: 700;
}
.bundle-cta:hover {
  background: var(--accent-soft) !important;
  border-color: var(--accent-soft) !important;
}

@media (max-width: 760px) {
  .bundle-deal {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
    padding: 28px 24px;
  }
  .bundle-price {
    justify-content: center;
  }
}

.module-extras {
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.module-extras h3 {
  font-size: 0.85rem;
  margin: 0 0 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.extra-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.extra-item.extra-free {
  border-left-color: var(--good);
}
.extra-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.extra-item.extra-free .extra-price {
  color: var(--good);
}
.extra-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.extra-note {
  font-size: 0.8rem;
  color: var(--muted);
}


/* "Alle details" link onder modules */
.more-details-link {
  text-align: center;
  margin-top: 26px;
  margin-bottom: 0;
}
.more-details-link a {
  display: inline-block;
  padding: 10px 22px;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
  box-shadow: 0 4px 12px -6px rgba(31, 58, 100, 0.4);
}
.more-details-link a:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ───────────── Hero center variant ───────────── */
.hero-center {
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-center-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-center-inner .hero-actions {
  justify-content: center;
}
.hero-center-inner .hero-trust {
  justify-content: center;
}
.hero-center-inner h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin: 14px 0 18px;
}
.hero-center-inner .hero-intro {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ───────────── Mock-mail als illustratie in "Hoe werkt het" ───────────── */
.mock-mail-illustration {
  max-width: 520px;
  margin: 48px auto 0;
}
.mock-caption {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  font-weight: 600;
}

/* ───────────── Bundle-deal: rustige variant ───────────── */
.bundle-deal-quiet {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}
.bundle-deal-quiet .bundle-headline h3 {
  color: var(--ink);
}
.bundle-deal-quiet .bundle-headline p {
  color: var(--muted);
}
.bundle-deal-quiet .bundle-new {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.bundle-deal-quiet .bundle-new .amount {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
}
.bundle-deal-quiet .bundle-new .per {
  color: var(--muted);
  font-size: 1rem;
}
.bundle-deal-quiet .bundle-context {
  color: var(--muted);
  font-size: 0.92rem;
  margin-left: 8px;
}
.bundle-deal-quiet .bundle-cta {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.bundle-deal-quiet .bundle-cta:hover {
  background: var(--primary-hover, #182d4f);
  border-color: var(--primary-hover, #182d4f);
}

/* ───────────── Founder block "Wie zit erachter" ───────────── */
.founder-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.founder-mark {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.founder-mark img {
  border-radius: 18px;
}
.founder-copy h2 {
  margin: 6px 0 16px;
  font-size: 2rem;
  line-height: 1.15;
}
.founder-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.founder-meta {
  color: var(--muted);
  font-size: 0.98rem !important;
  margin-bottom: 22px !important;
}
@media (max-width: 720px) {
  .founder-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-mark { padding-top: 0; }
  .founder-copy h2 { font-size: 1.7rem; }
}

/* ───────────── Pricing: "inbegrepen" banner ───────────── */
.pricing-included-banner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  margin: 0 auto 28px;
  max-width: 940px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pricing-included-banner .banner-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.pricing-included-banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pricing-included-banner li {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.pricing-included-banner li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}
@media (max-width: 720px) {
  .pricing-included-banner { flex-direction: column; align-items: flex-start; }
  .pricing-included-banner ul { gap: 4px 16px; }
}

/* ───────────── Card main list (pakket-specifiek) ───────────── */
.card-main-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
}
.card-main-list li {
  padding: 4px 0;
  font-size: 0.98rem;
  color: var(--ink);
  border-bottom: 1px dashed transparent;
}
.card-main-list li:first-child {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.card-main-list li:not(:first-child) {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ───────────── Plus-blok: geaccentueerde extra per pakket ───────────── */
.plus-block {
  background: var(--accent-soft);
  border: 1px solid #e8d2b8;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 20px;
  position: relative;
}
.plus-block .plus-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.plus-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plus-block li {
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 4px 0;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.plus-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.plus-block .value-tag {
  display: inline-block;
  background: var(--paper);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 1px 8px;
  margin-left: 4px;
  white-space: nowrap;
}

/* Featured card heeft een iets warmere plus-blok */
.plus-featured {
  background: linear-gradient(135deg, #f4ddc0 0%, #f1dcc1 100%);
  border-color: #d8b88d;
}

/* ───────────── Advies-CTA blok onder pakketten ───────────── */
.advice-cta {
  margin: 36px auto 0;
  max-width: 820px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.advice-copy h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--primary);
}
.advice-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 540px;
}
.advice-cta .btn {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .advice-cta { flex-direction: column; align-items: flex-start; }
}

/* Plus-empty: neutrale variant voor Start zodat de card-hoogte matcht */
.plus-empty {
  background: #f5f1ea;
  border-color: var(--line);
}
.plus-empty .plus-label-empty {
  background: var(--muted);
}
.plus-empty li {
  color: var(--muted);
  font-style: italic;
}
.plus-empty li::before {
  content: "−";
  color: var(--muted);
  font-weight: 400;
}

/* Override: card-main-list heeft GEEN vinkjes (het is een specificatie, geen feature-lijst) */
.price-card .card-main-list li {
  padding: 4px 0;
}
.price-card .card-main-list li::before {
  content: none;
}
.price-card .card-main-list li:first-child {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.price-card .card-main-list li:first-child strong {
  font-weight: 700;
  color: var(--primary);
}
