/* JouwPraktijkWebsite — Below-fold styles (loaded async) */

/* ── PROCESS STRIP ── */
.process-strip {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.process-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.process-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--fg);
}
.process-step .step-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.process-arrow { color: var(--border); font-size: 1.1rem; margin: 0 4px; }
@media (max-width: 600px) {
  .process-steps { flex-direction: column; gap: 12px; }
  .process-arrow { transform: rotate(90deg); }
}

/* ── SECTIONS ── */
section { padding: 80px 0; }
section:nth-child(even) { background: #fff; }
.section-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle { color: var(--fg-muted); font-size: 1.05rem; max-width: 560px; margin-bottom: 48px; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
  will-change: transform;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.step-card p { color: var(--fg-muted); font-size: 0.85rem; line-height: 1.5; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── HOW IT WORKS — collapsible inside showcases ── */
.showcase-how { margin-top: 64px; text-align: center; }
.how-toggle {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 12px 24px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  color: var(--fg); transition: color 0.25s, border-color 0.25s, box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.how-toggle:hover { color: var(--accent); border-color: var(--accent); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.how-toggle-arrow { transition: transform 0.3s; flex-shrink: 0; }
#how.how-expanded .how-toggle-arrow { transform: rotate(180deg); }
#how.how-expanded .how-toggle { color: var(--accent); border-color: var(--accent); }
.how-collapsible {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
#how.how-expanded .how-collapsible {
  max-height: 600px; opacity: 1; margin-top: 32px;
}

/* ── BENEFITS ── */
.benefits-section { padding: 80px 0; background: #fff; }
.benefits-expand-btn { display: none; }
.faq-expand-btn { display: none; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s; will-change: transform;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.benefit-card p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.6; }
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefits-grid .benefit-card:nth-child(4),
.benefits-grid .benefit-card:nth-child(5) {
  max-width: 100%;
}
@media (min-width: 768px) {
  .benefits-bottom-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
  }
}

/* ── SHOWCASE — CSS moved inline in index.html <style> for reliability ── */

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative; transition: transform 0.2s, box-shadow 0.2s; will-change: transform;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
}
.pricing-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.pricing-card .pricing-sub { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 14px; }
.pricing-price {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--accent); margin-bottom: 0; line-height: 1;
}
.pricing-price-label { font-size: 0.82rem; color: var(--fg-muted); }
.pricing-cta-note {
  font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 2px; text-align: center;
}
.pricing-free-note { color: var(--accent); font-weight: 600; font-size: 0.82rem; text-align: center; margin-bottom: 20px; }
.pricing-features {
  list-style: none; margin-bottom: 24px;
  padding-top: 18px; border-top: 1px solid var(--border); margin-top: 16px;
}
.pricing-features li {
  padding: 6px 0; font-size: 0.9rem; color: var(--fg);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.85rem; margin-top: 2px;
}

/* ── RUSH / EXPRESS SECTION ── */
.rush-section {
  background: var(--rush-light);
  border-top: 3px solid var(--rush);
}

.rush-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 768px) { .rush-inner { grid-template-columns: 1fr 1fr; align-items: center; } }

.rush-content .section-label { color: var(--rush); }
.rush-price {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--rush); margin-bottom: 12px;
}
.rush-list { list-style: none; }
.rush-list li {
  padding: 5px 0; font-size: 0.92rem; color: var(--fg);
  display: flex; align-items: flex-start; gap: 10px;
}
.rush-list li::before { content: '\26A1'; font-size: 0.8rem; margin-top: 2px; }

.rush-box {
  background: #fff; border: 2px solid var(--rush); border-radius: var(--radius-lg);
  padding: 28px; text-align: center;
}
.rush-box .rush-tag {
  display: inline-block; background: var(--rush); color: #fff;
  padding: 4px 14px; border-radius: 100px; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.rush-box h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--rush); margin-bottom: 6px;
}
.rush-box p { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 18px; }
.btn-rush {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a5532; color: #fff; padding: 12px 28px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-rush:hover { background: #083d25; transform: translateY(-1px); }

/* ── ABOUT US ── */
.about-section { background: #fff; }

.about-layout {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  margin-top: 48px; align-items: center;
}
@media (min-width: 768px) { .about-layout { grid-template-columns: 1fr 1fr; } }

.about-visual { display: flex; justify-content: center; }
.about-photo { width: 100%; max-width: 480px; height: auto; }
.about-portrait { max-width: 340px; border-radius: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); }

.about-content p {
  font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 0; }
.about-content strong { color: var(--fg); font-weight: 600; }

.about-roles {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
}
.about-role { display: flex; align-items: center; gap: 14px; }
.about-role-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.about-role div { display: flex; flex-direction: column; }
.about-role strong {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--fg);
}
.about-role span { font-size: 0.84rem; color: var(--fg-muted); }

/* ── FAQ ── */
.faq-list { columns: 1; }
@media (min-width: 768px) { .faq-list { columns: 2; column-gap: 20px; } }
.faq-item { break-inside: avoid; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 16px 20px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s; user-select: none;
}
.faq-q:hover { background: #fafaf8; }
.faq-q .arrow { transition: transform 0.25s; font-size: 0.8rem; color: var(--fg-muted); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }
.faq-a p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ── COMPLIANCE TRUST STRIP ── */
.compliance-strip {
  background: #fff; padding: 28px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.compliance-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.compliance-inner h3 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--fg);
}
.compliance-items {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
}
.compliance-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--fg-muted); white-space: nowrap;
}
.compliance-item svg { flex-shrink: 0; color: var(--accent); }
@media (max-width: 600px) {
  .compliance-items { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── PRAKTIJKCARE ── */
.praktijkcare-section {
  background: var(--accent-light); padding: 64px 0;
}
.praktijkcare-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; max-width: 680px; margin: 0 auto; }
.praktijkcare-block h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.praktijkcare-sub { color: var(--fg-muted); font-size: 0.95rem; margin-bottom: 20px; }
.praktijkcare-intro { font-size: 0.9rem; color: var(--fg); line-height: 1.6; margin-bottom: 20px; }
.praktijkcare-bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.praktijkcare-bullets li { font-size: 0.9rem; color: var(--fg); padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.praktijkcare-bullets li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.praktijkcare-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.praktijkcare-price span { font-size: 0.85rem; font-weight: 400; color: var(--fg-muted); }
.praktijkcare-link { font-weight: 600; color: var(--accent); font-size: 0.9rem; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(13,107,63,0.35); transition: color 0.2s, text-decoration-color 0.2s; }
.praktijkcare-link:hover { color: var(--accent-hover); text-decoration-color: var(--accent-hover); }
@media (max-width: 768px) {
  .praktijkcare-section { padding: 48px 0; }
  .praktijkcare-block { padding: 28px 24px; }
}

/* ── CTA BOTTOM ── */
.cta-bottom {
  text-align: center; background: var(--accent); padding: 64px 0;
}
.cta-bottom h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.cta-bottom p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent); padding: 14px 32px; border-radius: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.cta-or {
  color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 14px 0;
}

/* ── CONTACT FORM ── */
.contact-section { background: var(--bg); padding: 80px 0; }
.contact-grid {
  max-width: 640px; margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; margin-bottom: 16px;
}
.contact-info p { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--fg-muted); font-size: 0.95rem; }
.contact-detail svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-form {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--fg); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-body); font-size: 0.95rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg);
  color: var(--fg); transition: border-color 0.2s; width: 100%; min-width: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  background: var(--accent); color: #fff; padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; color: var(--accent); }
.form-success p { color: var(--fg-muted); }

/* ── Below-fold content-visibility optimization ── */
#faq, #contact, .about-section, .rush-section {
  content-visibility: auto; contain-intrinsic-size: auto 600px;
}
/* .cta-bottom content-visibility removed — inline CSS controls it */

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 36px 0; text-align: center; content-visibility: auto; contain-intrinsic-size: auto 120px; }
footer p { font-size: 0.85rem; color: var(--fg-muted); }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.whatsapp-float svg { width: 28px; height: 28px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; text-decoration: none; z-index: 1000; font-size: 0.9rem; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; outline: 2px solid #fff; }

/* ── MOBILE CRO OPTIMIZATIONS ── */

/* Sticky mobile CTA bar — appears after hero scrolls out */
.sticky-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-bar a {
  display: block; width: 100%; text-align: center;
  background: var(--accent); color: #fff; padding: 14px 24px;
  border-radius: 10px; font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; transition: background 0.2s;
}
.sticky-cta-bar a:hover { background: var(--accent-hover); }

@media (max-width: 768px) {
  .sticky-cta-bar { display: block; }
  /* Push WhatsApp float up above sticky bar */
  .sticky-cta-bar.visible ~ .whatsapp-float,
  body:has(.sticky-cta-bar.visible) .whatsapp-float { bottom: 80px; }

  /* Collapse benefits section on mobile — saves ~850px */
  .benefits-section { padding: 40px 0; }
  .benefits-section .section-subtitle { margin-bottom: 0; }
  .benefits-grid { display: none; }
  .benefits-section.expanded .benefits-grid { display: grid; margin-top: 24px; }
  .benefits-expand-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; background: none; border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 20px; font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 600; color: var(--fg-muted);
    cursor: pointer; transition: all 0.2s;
  }
  .benefits-expand-btn:hover { border-color: var(--accent); color: var(--accent); }
  .benefits-section.expanded .benefits-expand-btn .expand-arrow { transform: rotate(180deg); }

  /* FAQ: hide items 5+ on mobile, show expand button */
  .faq-item:nth-child(n+5) { display: none; }
  .faq-item:nth-child(n+5).faq-item-hidden-express { display: none !important; }
  .faq-list.faq-expanded .faq-item:nth-child(n+5) { display: block; }
  .faq-list.faq-expanded .faq-item-hidden-express { display: none !important; }
  .faq-expand-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px; background: none; border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 20px; font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 600; color: var(--fg-muted);
    cursor: pointer; transition: all 0.2s;
  }
  .faq-expand-btn:hover { border-color: var(--accent); color: var(--accent); }
}

/* Benefits expand button hidden on desktop */
@media (min-width: 769px) {
  .benefits-expand-btn { display: none !important; }
  .faq-expand-btn { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   SUBPAGE COMPONENTS (v3.1 — SEO site architecture)
   ══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 48px 0 40px; background: var(--accent-light);
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--fg);
  line-height: 1.2; margin-bottom: 14px; max-width: 700px;
}
.page-hero p {
  font-size: 1.05rem; color: var(--fg-muted); max-width: 600px;
  line-height: 1.7; margin-bottom: 0;
}
.page-hero .hero-cta { margin-top: 24px; }
@media (max-width: 768px) {
  .page-hero { padding: 32px 0 28px; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--fg-muted);
}
.breadcrumb a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(13,107,63,0.35); transition: color 0.2s, text-decoration-color 0.2s; }
.breadcrumb a:hover { color: var(--accent-hover); text-decoration-color: var(--accent-hover); }
.breadcrumb .sep { color: var(--fg-muted); margin: 0 2px; font-size: 0.9em; }
.breadcrumb .current { color: var(--fg-muted); font-weight: 500; }

/* ── EXPANDED FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 32px; background: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--fg-muted); font-size: 0.88rem; line-height: 1.6; margin-top: 12px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
  color: var(--fg); margin-bottom: 14px; letter-spacing: 0.01em;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--fg-muted);
  padding: 4px 0; transition: color 0.2s; text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--fg-muted);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── CONTENT SECTIONS (subpages) ── */
.content-section { padding: 64px 0; }
.content-section:nth-child(even) { background: #fff; }
.content-section h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px;
  line-height: 1.25;
}
.content-section h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.content-section p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.content-section p:last-child { margin-bottom: 0; }
.content-section ul { list-style: none; margin-bottom: 16px; }
.content-section ul li {
  padding: 5px 0; font-size: 0.92rem; color: var(--fg);
  display: flex; align-items: flex-start; gap: 10px;
}
.content-section ul li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.content-narrow { max-width: 760px; margin: 0 auto; }

/* ── COMPARISON TABLE ── */
.comparison-table-wrap { overflow-x: auto; margin: 32px 0; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  min-width: 600px;
}
.comparison-table thead th {
  background: var(--accent); color: #fff; padding: 14px 16px;
  text-align: left; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.comparison-table thead th:first-child { border-radius: 12px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 12px 0 0; }
.comparison-table thead th.featured-col { background: var(--accent-hover); }
.comparison-table tbody td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--fg); }
.comparison-table tbody td .check { color: var(--accent); font-weight: 700; }
.comparison-table tbody td .dash { color: var(--border); }
.comparison-table .price-row td {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--accent); padding: 16px;
  border-top: 2px solid var(--border);
}

/* ── TIMELINE (werkwijze) ── */
.timeline { position: relative; padding-left: 40px; margin: 40px 0; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-step {
  position: relative; margin-bottom: 48px; padding-bottom: 0;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -40px; top: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  z-index: 1;
}
.timeline-step h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px;
}
.timeline-step p { color: var(--fg-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }
.timeline-step .timeline-detail {
  margin-top: 12px; padding: 16px 20px;
  background: var(--accent-light); border-radius: var(--radius);
  font-size: 0.88rem; color: var(--fg);
}

/* ── DOELGROEP GRID (voor-wie hub) ── */
.doelgroep-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.doelgroep-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
a.doelgroep-card { cursor: pointer; }
a.doelgroep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.doelgroep-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px;
}
.doelgroep-card p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.doelgroep-card .card-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-weight: 600; font-size: 0.85rem;
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}
a.doelgroep-card:hover .card-link { gap: 8px; color: var(--accent-hover); }

/* ── PROBLEM/SOLUTION BLOCKS (doelgroep pages) ── */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin: 32px 0;
}
.problem-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.problem-card .problem-icon { font-size: 1.5rem; margin-bottom: 12px; }
.problem-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.problem-card p { color: var(--fg-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0; }
.solution-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; margin: 40px 0;
}
@media (max-width: 768px) { .solution-block { grid-template-columns: 1fr; gap: 24px; } }

/* ── INCLUDED FEATURES GRID ── */
.included-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin: 32px 0;
}
.included-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: var(--accent-light); border-radius: var(--radius);
}
.included-item .item-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.included-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.included-item p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.5; margin-bottom: 0; }

/* ── INCLUDED CARDS V2 ── */
.included-grid-v2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 36px 0;
}
.included-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.included-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.included-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.included-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.included-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.55; margin-bottom: 0; }
@media (max-width: 768px) {
  .included-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .included-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .included-grid-v2 { grid-template-columns: 1fr; }
}

/* ── BEHEER CTA CARD ── */
.beheer-cta-card {
  background: var(--accent-light); border: 1px solid rgba(13,107,63,0.15);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; align-items: center; gap: 28px;
}
.beheer-cta-content { flex: 1; }
.beheer-cta-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.beheer-cta-content .beheer-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.beheer-cta-content .beheer-price span { font-size: 0.85rem; font-weight: 400; color: var(--fg-muted); }
.beheer-cta-content p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.55; margin-bottom: 16px; }
.beheer-cta-content ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.beheer-cta-content ul li { font-size: 0.85rem; color: var(--fg); display: flex; align-items: center; gap: 6px; }
.beheer-cta-content ul li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.btn-beheer {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 12px 28px;
  border-radius: 10px; font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-beheer:hover { background: var(--accent-hover); transform: translateY(-1px); }
@media (max-width: 768px) {
  .beheer-cta-card { flex-direction: column; padding: 28px 24px; gap: 0; text-align: center; }
  .beheer-cta-content ul { grid-template-columns: 1fr; justify-items: center; }
}

/* ── BLOG LISTING ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 40px;
}
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 24px; }
.blog-card .blog-tag {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 8px; line-height: 1.3;
}
.blog-card h3 a { color: var(--fg); text-decoration: none; transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card .blog-excerpt { color: var(--fg-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.blog-card .blog-meta { font-size: 0.78rem; color: var(--fg-muted); }
.blog-card .read-more {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-weight: 600; font-size: 0.85rem;
  margin-top: 12px; transition: color 0.2s;
}
.blog-card .read-more:hover { color: var(--accent-hover); }

/* ── BLOG POST ── */
.blog-post { max-width: 740px; margin: 0 auto; padding: 40px 0 64px; }
.blog-post h1 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.25;
  margin-bottom: 16px;
}
.blog-post .post-meta { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 32px; }
.blog-post .post-content h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin-top: 40px; margin-bottom: 16px;
}
.blog-post .post-content h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-top: 32px; margin-bottom: 12px;
}
.blog-post .post-content p {
  color: var(--fg-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 18px;
}
.blog-post .post-content ul, .blog-post .post-content ol {
  margin-bottom: 18px; padding-left: 24px;
}
.blog-post .post-content li {
  font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 6px;
}
.blog-post .post-content a { color: var(--accent); text-decoration: underline; }
.blog-post .post-content a:hover { color: var(--accent-hover); }
.blog-post .post-content blockquote {
  border-left: 3px solid var(--accent); padding: 16px 20px; margin: 24px 0;
  background: var(--accent-light); border-radius: 0 var(--radius) var(--radius) 0;
}
.blog-post .post-content blockquote p { color: var(--fg); margin-bottom: 0; }
.blog-post .related-posts { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.blog-post .related-posts h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }

/* ── NICHE HERO (doelgroep pages) ── */
.niche-hero { padding: 48px 0 40px; background: var(--accent-light); border-bottom: 1px solid var(--border); }
.niche-hero .breadcrumb { margin-bottom: 24px; }
.niche-hero .niche-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.niche-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--fg);
  line-height: 1.2; margin-bottom: 14px; max-width: 700px;
}
.niche-hero p {
  font-size: 1.05rem; color: var(--fg-muted); max-width: 600px;
  line-height: 1.7;
}
.niche-hero .hero-cta { margin-top: 24px; }

/* ── PAGE CTA BANNER ── */
.page-cta {
  text-align: center; background: var(--accent); padding: 56px 0;
}
.page-cta h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; color: #fff; margin-bottom: 10px;
}
.page-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 24px; }

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }

/* ── FOUNDER STORY (over page) ── */
.founder-section { padding: 64px 0; background: #fff; }
.founder-photo {
  width: 100%; max-width: 400px; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.founder-content p {
  font-size: 1rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px;
}
.founder-content strong { color: var(--fg); font-weight: 600; }

/* ── VALUE CARDS ── */
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin: 32px 0;
}
.value-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center;
}
.value-card .value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.value-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.value-card p { color: var(--fg-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }

/* ── INTERNAL LINK BLOCKS ── */
.link-block {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); margin: 12px 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none; color: var(--fg);
}
.link-block:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.link-block .link-arrow { color: var(--accent); font-weight: 700; margin-left: auto; }
.link-block p { margin-bottom: 0; color: var(--fg-muted); font-size: 0.88rem; }

/* ── WIST JE DAT CARD ── */
.wjd-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f0faf4 100%);
  border: 1px solid rgba(13,107,63,0.12); border-radius: var(--radius-lg);
  padding: 36px 40px; max-width: 600px; margin: 0 auto; text-align: center;
}
.wjd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--accent);
  font-size: 0.78rem; font-weight: 700; padding: 6px 14px;
  border-radius: 999px; margin-bottom: 16px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.wjd-badge svg { flex-shrink: 0; }
.wjd-heading {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--fg); margin-bottom: 8px;
}
.wjd-body {
  font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px;
}
.wjd-items {
  display: flex; flex-direction: column; gap: 8px;
  text-align: left; max-width: 380px; margin: 0 auto;
}
.wjd-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--fg);
}
.wjd-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 768px) {
  .wjd-card { padding: 28px 24px; }
}
