/* ============================================================================
 * aanvraag.css — Vakkracht aanvragen (S-tier B2B redesign)
 * ----------------------------------------------------------------------------
 * Pagina-specifieke stijl. Consumeert de gedeelde tokens uit design-tokens.css
 * (--fh-*). Scoped op .aanv-* / .af-* zodat niets buiten deze pagina verandert.
 * Vervangt het oude inline <style id="aanvraag-v2"> blok.
 * ========================================================================== */

/* ====== 1. HERO ====== */
.aanv-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--fh-on-dark);
  padding: clamp(120px, 14vh, 180px) 0 clamp(140px, 16vw, 190px);
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(136, 217, 50, 0.18), transparent 60%),
    radial-gradient(820px 520px at -5% 115%, rgba(136, 217, 50, 0.10), transparent 60%),
    linear-gradient(40deg, var(--fh-primary-deep) 0%, var(--fh-primary) 50%, var(--fh-primary-mid) 100%);
}
.aanv-hero .wrap { position: relative; z-index: 2; max-width: 1180px; }
.aanv-hero__main { max-width: 720px; }

/* Garandeer schone donkere ruimte onder de hero-content (override van de
   globale 'hero-unify' !important-regel in styles.css die padding-bottom op
   ~64-110px zet). Moet groter zijn dan de overlap van .aanv-card hierboven,
   zodat de cream form-card nooit de trust-kaarten bedekt. */
.aanv-page .aanv-hero { padding-bottom: clamp(150px, 16vh, 200px) !important; }

/* Decoratieve grid-overlay rechts van de tekst */
.aanv-hero__art {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(-120px, -2vw, 0px);
  transform: translateY(-50%);
  width: min(46vw, 620px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.9;
}
.aanv-hero__art svg { width: 100%; height: 100%; display: block; }
.aanv-hero__art::after {                       /* neon glow-bol achter het grid */
  content: "";
  position: absolute;
  inset: 18% 18% auto auto;
  width: 42%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(136, 217, 50, 0.30), transparent 70%);
  filter: blur(20px);
}
@media (max-width: 920px) { .aanv-hero__art { display: none; } }

.aanv-crumbs {
  font-family: var(--fh-font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fh-accent);
  display: flex; gap: 9px; align-items: center; flex-wrap: wrap;
  margin-bottom: 26px;
}
.aanv-crumbs a { color: var(--fh-on-dark); opacity: 0.6; transition: opacity 0.15s ease; }
.aanv-crumbs a:hover { opacity: 1; color: var(--fh-accent); }
.aanv-crumbs .sep { opacity: 0.4; }

.aanv-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fh-font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--fh-accent); margin-bottom: 18px;
}
.aanv-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--fh-accent); }

.aanv-hero h1 {
  color: var(--fh-on-dark);
  font-family: var(--fh-font-display);
  font-size: clamp(44px, 6.4vw, 72px);
  line-height: 1.0; letter-spacing: -0.035em;
  margin-bottom: 22px; max-width: 15ch;
}
.aanv-hero h1 em {
  font-family: var(--fh-font-serif); font-style: italic; font-weight: 400;
  color: var(--fh-accent);
}
.aanv-hero .lead {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6;
  color: var(--fh-on-dark-muted);
  max-width: 480px; margin-bottom: 34px;
}

/* CTA-rij: "Online aanvragen" = dominante primary, rest = secondary outline */
.aanv-quick { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.aanv-qbtn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px; border-radius: var(--fh-radius-pill);
  font-family: var(--fh-font-display); font-weight: 700; font-size: 14px; line-height: 1;
  border: 1.5px solid transparent;
  transition: transform var(--fh-transition), background var(--fh-transition),
              box-shadow var(--fh-transition), border-color var(--fh-transition), color var(--fh-transition);
}
.aanv-qbtn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* primary — Online aanvragen (komt visueel eerst via order) */
.aanv-qbtn.mail {
  order: -1;
  background: var(--fh-accent); color: var(--fh-accent-ink);
  box-shadow: var(--fh-glow);
}
.aanv-qbtn.mail:hover { background: var(--fh-accent-strong); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(136, 217, 50, 0.42); }
.aanv-qbtn .aanv-arrow { transition: transform var(--fh-transition); font-size: 1.05em; }
.aanv-qbtn.mail:hover .aanv-arrow { transform: translateX(4px); }

/* secondary — WhatsApp + Bel (outline) */
.aanv-qbtn.wa, .aanv-qbtn.call {
  background: transparent; color: var(--fh-on-dark);
  border-color: rgba(252, 247, 242, 0.28);
}
.aanv-qbtn.wa:hover, .aanv-qbtn.call:hover {
  border-color: var(--fh-accent); color: var(--fh-accent); transform: translateY(-2px);
}

/* USP-blokken → glassmorphism floating cards met grote neon-metric */
.aanv-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 0; border: 0; margin: 0;
}
.aanv-trust .ti {
  display: block; max-width: none;
  background: rgba(252, 247, 242, 0.06);
  border: 1px solid rgba(252, 247, 242, 0.14);
  border-radius: var(--fh-radius-md);
  padding: 22px 20px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform var(--fh-transition-slow), border-color var(--fh-transition-slow);
}
.aanv-trust .ti:hover { transform: translateY(-4px); border-color: rgba(136, 217, 50, 0.4); }
.aanv-trust .ti svg { width: 26px; height: 26px; color: var(--fh-accent); margin-bottom: 12px; }
.aanv-trust .ti b {
  display: block; font-family: var(--fh-font-display);
  font-size: 18px; font-weight: 700; color: var(--fh-on-dark);
  line-height: 1.2; margin-bottom: 4px;
}
.aanv-trust .ti b .m {
  color: var(--fh-accent); font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
}
.aanv-trust .ti span { font-size: 13px; color: var(--fh-on-dark-muted); line-height: 1.4; }

@media (max-width: 720px) {
  .aanv-trust { grid-template-columns: 1fr; gap: 12px; }
  .aanv-hero { min-height: auto; padding-top: clamp(96px, 18vh, 140px); }
}

/* ====== 2. FORM SECTION + CARD ====== */
.aanv-form-section { background: var(--fh-cream); padding: 0 0 var(--fh-section-pad); }
.aanv-form-section .wrap { max-width: 960px; }
.aanv-card {
  position: relative;
  /* Bescheiden overlap (< gegarandeerde hero padding-bottom), zodat de cream-card
     nooit de trust-kaarten bedekt — overlapt alleen lege donkere ruimte */
  margin-top: clamp(-96px, -8vw, -72px);
  background: var(--fh-paper);
  border: 1px solid var(--fh-rule);
  border-radius: var(--fh-radius-lg);
  box-shadow: var(--fh-shadow-xl);
  overflow: hidden;
}
.aanv-card-head { padding: clamp(40px, 5vw, 60px) clamp(28px, 5vw, 60px) 0; }
.aanv-card-head .k {
  font-family: var(--fh-font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fh-accent-text);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.aanv-card-head .k svg { width: 16px; height: 16px; }
.aanv-card-head h2 {
  font-family: var(--fh-font-display); font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 8px; color: var(--fh-primary);
}
.aanv-card-head h2 em { font-family: var(--fh-font-serif); font-style: italic; font-weight: 400; color: var(--fh-accent-text); }
.aanv-card-head p { color: var(--fh-muted); font-size: 14.5px; line-height: 1.55; max-width: 62ch; }
.aanv-card-head p b { color: var(--fh-accent-text); font-weight: 700; }

/* ====== Progress stepper ====== */
.aanv-stepper {
  display: flex; align-items: flex-start; gap: 0;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 5vw, 60px) 0;
  counter-reset: step;
}
.aanv-stepper__item {
  flex: 1; position: relative; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 9px;
}
/* verbindingslijn tussen stappen */
.aanv-stepper__item:not(:last-child)::after {
  content: ""; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px;
  background: var(--fh-rule); z-index: 0;
}
.aanv-stepper__item.is-done::after { background: var(--fh-accent); }
.aanv-stepper__dot {
  position: relative; z-index: 1;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--fh-cream-2); border: 2px solid var(--fh-rule);
  color: var(--fh-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh-font-display); font-weight: 800; font-size: 15px;
  transition: background var(--fh-transition), border-color var(--fh-transition), color var(--fh-transition);
}
.aanv-stepper__label {
  font-family: var(--fh-font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--fh-muted); max-width: 12ch; line-height: 1.25;
}
.aanv-stepper__item.is-done .aanv-stepper__dot { background: var(--fh-accent); border-color: var(--fh-accent); color: var(--fh-accent-ink); }
.aanv-stepper__item.is-active .aanv-stepper__dot {
  background: var(--fh-accent); border-color: var(--fh-accent); color: var(--fh-accent-ink);
  box-shadow: 0 0 0 0 var(--fh-accent-soft); animation: aanv-pulse 1.8s ease-out infinite;
}
.aanv-stepper__item.is-active .aanv-stepper__label { color: var(--fh-primary); font-weight: 700; }
@keyframes aanv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(136, 217, 50, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(136, 217, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(136, 217, 50, 0); }
}
@media (max-width: 560px) { .aanv-stepper__label { display: none; } }

/* ====== Form body ====== */
.af-form { padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 60px) clamp(36px, 5vw, 56px); }
.af-group { margin-top: 44px; }
.af-group:first-of-type { margin-top: 30px; }
.af-group .glabel {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--fh-font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--fh-primary);
  border-left: 3px solid var(--fh-accent); padding-left: 16px;
  margin-bottom: 22px;
}
/* grotere, prominente neon badge-circles voor de stapnummers */
.af-group .glabel .n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--fh-accent); color: var(--fh-accent-ink);
  font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(136, 217, 50, 0.4);
}
.af-row { margin-bottom: var(--fh-field-gap); }
.af-row:last-child { margin-bottom: 0; }
.af-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fh-field-gap); margin-bottom: var(--fh-field-gap); }
@media (max-width: 600px) {
  .af-row.split { grid-template-columns: 1fr; gap: 0; }
  .af-row.split > div { margin-bottom: var(--fh-field-gap); }
  .af-row.split > div:last-child { margin-bottom: 0; }
}
.af-form label {
  display: block; font-family: var(--fh-font-display);
  font-size: 13px; font-weight: 600; color: var(--fh-ink); margin-bottom: 8px;
}
.af-form input, .af-form select, .af-form textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--fh-ink);
  background: var(--fh-cream);
  border: 1.5px solid var(--fh-rule); border-radius: var(--fh-radius-sm);
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.af-form textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.af-form input:hover, .af-form select:hover, .af-form textarea:hover { border-color: #cfc6b5; }

/* custom-styled select (native behouden → submit/validatie blijft werken) */
.af-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F5F5B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.af-form input::placeholder, .af-form textarea::placeholder { color: #a09e98; }

/* focus: neon border + ring (brief-spec) */
.af-form input:focus, .af-form select:focus, .af-form textarea:focus {
  outline: none; border-color: var(--fh-accent-strong); background: var(--fh-paper);
  box-shadow: var(--fh-focus-ring);
}
.af-form select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235ef03a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.af-err { display: none; color: #d23b2f; font-size: 12px; font-weight: 600; margin-top: 6px; }
.af-form .error input, .af-form .error select, .af-form .error textarea { border-color: #e0483a; background: #fff5f4; }
.af-form .error .af-err { display: block; }

.af-consent {
  display: flex; align-items: flex-start; gap: 12px; margin: 32px 0 4px;
  font-size: 12.5px; color: var(--fh-ink-2); line-height: 1.5;
}
.af-consent input { width: 19px; height: 19px; margin-top: 1px; flex-shrink: 0; accent-color: var(--fh-accent-text); }
.af-consent a { color: var(--fh-accent-text); font-weight: 600; text-decoration: underline; }
.af-consent.error { color: #d23b2f; }

/* Submit: full-width, grote padding, hover-scale + bewegende icon */
.af-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 30px; }
.af-submit {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--fh-accent); color: var(--fh-accent-ink);
  font-family: var(--fh-font-display); font-weight: 800; font-size: 16px;
  padding: 18px 28px; border: 0; border-radius: var(--fh-radius-md); cursor: pointer;
  box-shadow: var(--fh-glow);
  transition: transform var(--fh-transition), background var(--fh-transition), box-shadow var(--fh-transition);
}
.af-submit svg { width: 20px; height: 20px; transition: transform var(--fh-transition); }
.af-submit:hover { background: var(--fh-accent-strong); transform: scale(1.015) translateY(-1px); box-shadow: 0 18px 44px rgba(136, 217, 50, 0.42); }
.af-submit:hover svg { transform: translateX(4px); }
.af-submit:active { transform: scale(0.99); }
.af-submit:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }
.af-alt { font-family: var(--fh-font-display); font-weight: 600; font-size: 13.5px; }
.af-alt a { color: var(--fh-accent-text); }
.af-alt a:hover { color: var(--fh-primary); }
.af-foot-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12.5px; color: var(--fh-muted); justify-content: center; text-align: center; }
.af-foot-note svg { width: 15px; height: 15px; color: var(--fh-accent-text); flex-shrink: 0; }

/* ====== Success ====== */
.aanv-success { text-align: center; padding: clamp(44px, 6vw, 68px) 24px; }
.aanv-success .check {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-accent), var(--fh-accent-text));
  color: #06180e; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px; box-shadow: var(--fh-glow);
}
.aanv-success .check svg { width: 38px; height: 38px; }
.aanv-success h3 { font-family: var(--fh-font-display); font-size: clamp(22px, 3vw, 28px); color: var(--fh-primary); margin-bottom: 10px; }
.aanv-success p { color: var(--fh-ink-2); font-size: 15px; line-height: 1.55; max-width: 460px; margin: 0 auto 22px; }
.aanv-success .row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.aanv-success .aanv-qbtn { order: 0; }
.aanv-success .aanv-qbtn.wa { background: #25d366; color: #0b3d20; border-color: transparent; }
.aanv-success .aanv-qbtn.mail { background: var(--fh-cream-2); color: var(--fh-ink); border-color: var(--fh-rule); box-shadow: none; }
.aanv-success .aanv-qbtn.call { background: var(--fh-accent); color: var(--fh-accent-ink); border-color: transparent; }

/* ====== 3. PROCESS TIMELINE — horizontaal grid ====== */
.aanv-timeline { background: var(--fh-cream); padding: var(--fh-section-pad) 0; }
.aanv-timeline .wrap { max-width: 1120px; }
.aanv-timeline .head { text-align: center; margin-bottom: clamp(40px, 5vw, 56px); }
.aanv-timeline .head .k {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fh-font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fh-accent-text); margin-bottom: 12px;
}
.aanv-timeline .head .k::before { content: ""; width: 22px; height: 2px; background: var(--fh-accent); }
.aanv-timeline h2 { font-family: var(--fh-font-display); font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.02em; color: var(--fh-primary); }
.aanv-timeline h2 em { font-family: var(--fh-font-serif); font-style: italic; font-weight: 400; color: var(--fh-accent-text); }

.aanv-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
/* verbindende lijn achter de iconen (desktop) */
.aanv-steps::before {
  content: ""; position: absolute; top: 54px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--fh-accent), rgba(136, 217, 50, 0.25));
  z-index: 0;
}
.aanv-step {
  position: relative; z-index: 1;
  display: block; padding: 28px 22px;
  background: var(--fh-paper); border: 1px solid var(--fh-rule);
  border-radius: var(--fh-radius-md); box-shadow: var(--fh-shadow-sm);
  transition: transform var(--fh-transition-slow), box-shadow var(--fh-transition-slow);
}
.aanv-step:hover { transform: translateY(-6px); box-shadow: var(--fh-shadow-lg); }
.aanv-step .node {
  position: relative; width: 56px; height: 56px; border-radius: var(--fh-radius-md);
  background: var(--fh-primary); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: var(--fh-shadow-sm);
}
.aanv-step .node .aanv-step__ico { display: flex; }
.aanv-step .node .aanv-step__ico svg { width: 26px; height: 26px; color: var(--fh-accent); }
.aanv-step .node .num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--fh-accent); color: var(--fh-accent-ink);
  font-family: var(--fh-font-display); font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--fh-paper);
}
.aanv-step .body .t { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.aanv-step .body h3 { font-family: var(--fh-font-display); font-size: 17px; color: var(--fh-primary); line-height: 1.2; }
/* tijd-badges → neon pills */
.aanv-step .body .when {
  font-family: var(--fh-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--fh-accent-ink);
  background: var(--fh-accent); padding: 4px 11px; border-radius: var(--fh-radius-pill);
}
.aanv-step .body p { color: var(--fh-ink-2); font-size: 14px; line-height: 1.55; }

@media (max-width: 880px) {
  .aanv-steps { grid-template-columns: repeat(2, 1fr); }
  .aanv-steps::before { display: none; }
}
@media (max-width: 520px) {
  .aanv-steps { grid-template-columns: 1fr; }
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  .aanv-qbtn, .aanv-trust .ti, .aanv-step, .af-submit, .af-submit svg, .aanv-arrow { transition: none !important; }
  .aanv-qbtn:hover, .aanv-trust .ti:hover, .aanv-step:hover, .af-submit:hover { transform: none; }
  .aanv-stepper__item.is-active .aanv-stepper__dot { animation: none; }
}

/* ====== 6. Finishing — footer-ademruimte + custom scrollbar (page-scoped) ====== */
.aanv-page footer .foot-top { gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(32px, 4vw, 48px); }
.aanv-page footer .foot-bot { border-top: 1px solid rgba(252, 247, 242, 0.14); padding-top: 26px; margin-top: 8px; }

/* subtiele neongroene scrollbar (alleen op deze pagina; herbruikbaar via .fh-scroll) */
body.aanv-page { scrollbar-width: thin; scrollbar-color: var(--fh-accent-text) transparent; }
body.aanv-page::-webkit-scrollbar { width: 12px; }
body.aanv-page::-webkit-scrollbar-track { background: var(--fh-cream-2); }
body.aanv-page::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--fh-accent-text), var(--fh-primary));
  border-radius: var(--fh-radius-pill); border: 3px solid var(--fh-cream-2);
}
body.aanv-page::-webkit-scrollbar-thumb:hover { background: var(--fh-accent-text); }

/* ════════════════════════════════════════════════════════════════════════
   S-TIER UPGRADE — trust-glass / form-split-sidebar / process-timeline
   Esthetiek: editorial-utilitarian — donkergroen + Fraunces-cursief + één
   echte lime accent (#88D932). Anker: een verticale, opgelichte glow-rail
   die hero, formulier en proces visueel knoopt — herkenbaar zonder logo.
   Page-gescoped via .aanv-page; bestaande tokens hergebruikt.
   ════════════════════════════════════════════════════════════════════════ */

/* 1 · TRUST-GLASS — drie items als glasmorf chips onder de hero-knoppen */
.aanv-page .aanv-trust { gap: 12px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(252,247,242,.10); }
.aanv-page .aanv-trust .ti {
  background: rgba(252,247,242,.07) !important;
  border: 1px solid rgba(252,247,242,.14) !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex !important; flex-direction: row !important; align-items: center !important; gap: 14px !important;
  text-align: left !important;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.aanv-page .aanv-trust .ti:hover {
  border-color: rgba(136, 217, 50,.40) !important;
  background: rgba(252,247,242,.10) !important;
  transform: translateY(-2px);
}
.aanv-page .aanv-trust .ti svg {
  width: 22px !important; height: 22px !important; margin-bottom: 0 !important;
  flex-shrink: 0; color: var(--fh-accent);
}
.aanv-page .aanv-trust .ti b { font-size: 14px !important; margin-bottom: 1px !important; }
.aanv-page .aanv-trust .ti span { font-size: 12px !important; opacity: .82; }

/* 2 · FORM — split-layout, premium velden, badge-rail, shimmer-submit, custom checkbox */

/* 2A · Split-grid (form links 65% / sidebar rechts 35% op desktop) */
.aanv-page .aanv-split {
  display: grid; grid-template-columns: 1fr; gap: 0;
  padding: 0 clamp(28px,5vw,60px) clamp(28px,4vw,44px);
}
@media (min-width: 1024px) {
  .aanv-page .aanv-card { max-width: 1180px; margin-inline: auto; }
  .aanv-page .aanv-form-section .wrap { max-width: 1240px; }
  .aanv-page .aanv-split { grid-template-columns: minmax(0,1.85fr) minmax(0,1fr); gap: 36px; align-items: start; }
  .aanv-page .aanv-formcol { min-width: 0; }
  .aanv-page .aanv-formcol .af-form,
  .aanv-page .aanv-formcol .aanv-success { padding-left: 0 !important; padding-right: 0 !important; }
}

/* 2B · Section-headers (.glabel) — pill-band + grotere ringbadge */
.aanv-page .af-form .glabel {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--fh-accent-softer);
  border: 1px solid rgba(136, 217, 50,.28);
  border-radius: 10px;
  padding: 8px 14px 8px 8px;
  font-family: var(--fh-font-display); font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--fh-accent-text);
  margin-bottom: 20px;
}
.aanv-page .af-form .glabel .n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--fh-accent); color: var(--fh-accent-ink);
  font-family: var(--fh-font-display); font-weight: 800; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(136, 217, 50,.18);
  flex-shrink: 0;
}

/* 2C · Verticale gestippelde verbindingslijn tussen .af-group's */
.aanv-page .af-form .af-group { position: relative; }
.aanv-page .af-form .af-group + .af-group { margin-top: 30px; padding-top: 12px; }
.aanv-page .af-form .af-group + .af-group::before {
  content: ""; position: absolute; left: 19px; top: -22px; height: 28px; width: 2px;
  background: repeating-linear-gradient(to bottom,
    var(--fh-accent) 0, var(--fh-accent) 4px,
    transparent 4px, transparent 10px);
  opacity: .85;
}

/* 2D · Premium veld-styling (overschrijft de basisregels uit blok 2) */
.aanv-page .af-form input,
.aanv-page .af-form select,
.aanv-page .af-form textarea {
  border: 1.5px solid var(--fh-rule) !important;
  border-radius: 11px !important;
  padding: 13px 16px !important;
  font-size: 16px !important;
  color: var(--fh-primary);
  background: var(--fh-paper);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.aanv-page .af-form input:hover,
.aanv-page .af-form select:hover,
.aanv-page .af-form textarea:hover { border-color: #cdbf9c !important; }
.aanv-page .af-form input:focus,
.aanv-page .af-form select:focus,
.aanv-page .af-form textarea:focus {
  outline: none !important;
  border-color: var(--fh-accent-strong) !important;
  box-shadow: 0 0 0 4px var(--fh-accent-soft) !important;
}
.aanv-page .af-form label {
  display: block; font-family: var(--fh-font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fh-primary); margin-bottom: 6px;
}

/* 2E · Custom checkbox (privacy-consent) */
.aanv-page .af-consent { display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--fh-cream); border: 1px solid var(--fh-rule);
  border-radius: 12px; font-size: 13px; line-height: 1.5; color: var(--fh-primary); }
.aanv-page .af-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; border: 2px solid #c9bfaf; border-radius: 6px;
  background: #fff center / 0 no-repeat
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4.5L6.5 11.5L3 8' stroke='%230a3d18' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  cursor: pointer; flex-shrink: 0; margin-top: 1px;
  transition: background-color .15s ease, border-color .15s ease, background-size .15s ease;
}
.aanv-page .af-consent input[type="checkbox"]:checked {
  background-color: var(--fh-accent); border-color: var(--fh-accent); background-size: 16px;
}
.aanv-page .af-consent input[type="checkbox"]:focus-visible {
  outline: none; box-shadow: 0 0 0 4px var(--fh-accent-soft);
}
.aanv-page .af-consent a { color: var(--fh-accent-text); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* 2F · Submit-knop — full-width, shimmer-sweep */
.aanv-page .af-form .af-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 26px; }
.aanv-page .af-form .af-submit {
  width: 100%; padding: 17px 32px; font-size: 16.5px; font-weight: 800;
  border-radius: 12px; background: var(--fh-accent); color: var(--fh-accent-ink);
  border: none; font-family: var(--fh-font-display);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden; cursor: pointer; min-height: 56px;
  box-shadow: 0 12px 28px -10px rgba(136, 217, 50,.55), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s cubic-bezier(.2,.8,.2,1), filter .18s, box-shadow .18s;
}
.aanv-page .af-form .af-submit::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg); transition: left .6s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.aanv-page .af-form .af-submit:hover { transform: translateY(-2px); filter: brightness(1.04);
  box-shadow: 0 18px 36px -10px rgba(136, 217, 50,.65), inset 0 1px 0 rgba(255,255,255,.35); }
.aanv-page .af-form .af-submit:hover::after { left: 125%; }
.aanv-page .af-form .af-submit:active { transform: translateY(0); }
.aanv-page .af-form .af-submit svg { width: 19px; height: 19px; position: relative; z-index: 1; }
.aanv-page .af-form .af-submit > * { position: relative; z-index: 1; }
.aanv-page .af-form .af-alt { font-size: 13px; text-align: center; }
.aanv-page .af-form .af-alt a { color: var(--fh-primary); font-weight: 700; }

/* 2G · SIDEBAR — adviseur-kaart met initiaal-avatar, quote, contact, badges */
.aanv-page .aanv-sidebar {
  background: linear-gradient(180deg, #f6fbf2 0%, var(--fh-cream) 100%);
  border: 1px solid rgba(136, 217, 50,.28);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
@media (min-width: 1024px) {
  .aanv-page .aanv-sidebar { position: sticky; top: 96px; align-self: start; }
}
.aanv-page .aanv-sidebar__head { display: flex; align-items: center; gap: 14px; }
.aanv-page .aanv-sidebar__av {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; position: relative;
  background: linear-gradient(135deg, var(--fh-primary) 0%, var(--fh-primary-mid) 100%);
  color: var(--fh-accent); font-family: var(--fh-font-display); font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center; letter-spacing: -.02em;
  box-shadow: 0 8px 18px -8px rgba(13,43,26,.55), inset 0 1px 0 rgba(252,247,242,.10);
}
.aanv-page .aanv-sidebar__av::after {
  content: ""; position: absolute; right: 2px; bottom: 2px; width: 14px; height: 14px; border-radius: 50%;
  background: #4ade80; border: 2.5px solid var(--fh-cream);
  box-shadow: 0 0 0 0 rgba(74,222,128,.55); animation: aanvDot 1.8s infinite;
}
@keyframes aanvDot { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.55)} 50%{box-shadow:0 0 0 7px rgba(74,222,128,0)} }
.aanv-page .aanv-sidebar__name { font-family: var(--fh-font-display); font-weight: 800; font-size: 17px; color: var(--fh-primary); line-height: 1.2; }
.aanv-page .aanv-sidebar__role { font-size: 12.5px; color: var(--fh-muted); margin-top: 3px; letter-spacing: .02em; }
.aanv-page .aanv-sidebar__quote {
  font-family: var(--fh-font-serif); font-style: italic; font-weight: 400;
  font-size: 16.5px; line-height: 1.5; color: var(--fh-primary);
  padding: 14px 16px; background: rgba(136, 217, 50,.10); border-left: 3px solid var(--fh-accent);
  border-radius: 0 12px 12px 0;
}
.aanv-page .aanv-sidebar__contacts { display: flex; flex-direction: column; gap: 8px; }
.aanv-page .aanv-sidebar__contacts a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: var(--fh-paper); border: 1px solid var(--fh-rule);
  font-family: var(--fh-font-display); font-weight: 700; font-size: 14px;
  color: var(--fh-primary); text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.aanv-page .aanv-sidebar__contacts a:hover { border-color: var(--fh-accent); background: #fbfff5; transform: translateX(2px); }
.aanv-page .aanv-sidebar__contacts a svg { width: 18px; height: 18px; color: var(--fh-accent-text); flex-shrink: 0; }
.aanv-page .aanv-sidebar__contacts a .arr { margin-left: auto; opacity: .5; transition: opacity .15s, transform .15s; }
.aanv-page .aanv-sidebar__contacts a:hover .arr { opacity: 1; transform: translateX(3px); }
.aanv-page .aanv-sidebar__badges {
  display: flex; flex-wrap: wrap; gap: 6px; padding-top: 4px;
  border-top: 1px dashed rgba(13,43,26,.18);
  padding-top: 14px;
}
.aanv-page .aanv-sidebar__badges span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fh-font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--fh-accent-text);
  background: rgba(136, 217, 50,.14); border-radius: 999px; padding: 5px 10px;
}
.aanv-page .aanv-sidebar__badges span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--fh-accent);
  box-shadow: 0 0 0 2px rgba(136, 217, 50,.30);
}

/* 3 · PROCESS-TIMELINE — light green-grey band, outlined nodes, glow-rail */
.aanv-page .aanv-timeline { background: #f6faf2 !important; padding: clamp(64px,7vw,96px) 0 !important; }
.aanv-page .aanv-timeline .head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.aanv-page .aanv-timeline .head .k { color: var(--fh-accent-text); }
.aanv-page .aanv-timeline .head h2 { font-family: var(--fh-font-display); font-weight: 700;
  font-size: clamp(28px,3.8vw,44px); letter-spacing: -.025em; color: var(--fh-primary); margin: 8px 0 0; }
.aanv-page .aanv-timeline .head h2 em { font-family: var(--fh-font-serif); font-style: italic; font-weight: 400; color: var(--fh-accent-text); }

.aanv-page .aanv-steps { position: relative; list-style: none; padding: 0; margin: 0;
  display: grid !important; grid-template-columns: 1fr !important; gap: 22px;
  max-width: 820px; margin-inline: auto; }
.aanv-page .aanv-steps::before {
  content: ""; position: absolute; left: 57px; top: 80px; bottom: 80px; width: 2px;
  background: linear-gradient(to bottom, var(--fh-accent), rgba(136, 217, 50,.10));
  z-index: 0;
}
.aanv-page .aanv-step {
  display: grid !important; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--fh-paper) !important; border: none !important;
  border-left: 4px solid var(--fh-accent) !important;
  border-radius: 16px !important;
  padding: 26px 30px !important;
  box-shadow: 0 4px 22px -8px rgba(13,43,26,.10);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  position: relative;
}
.aanv-page .aanv-step:hover { transform: translateY(-3px);
  box-shadow: 0 14px 36px -10px rgba(13,43,26,.18); }
.aanv-page .aanv-step .node {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--fh-accent); background: var(--fh-paper);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.aanv-page .aanv-step .node .aanv-step__ico { display: flex; align-items: center; justify-content: center; }
.aanv-page .aanv-step .node .aanv-step__ico svg { width: 24px; height: 24px; color: var(--fh-accent-text); }
.aanv-page .aanv-step .node .num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--fh-primary); color: var(--fh-accent);
  font-family: var(--fh-font-display); font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.aanv-page .aanv-step .body { padding-top: 4px; }
.aanv-page .aanv-step .body .t { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 6px; }
.aanv-page .aanv-step .body h3 { font-family: var(--fh-font-display); font-weight: 700; font-size: 18px;
  color: var(--fh-primary); margin: 0; letter-spacing: -.01em; }
.aanv-page .aanv-step .body .when {
  display: inline-block; background: rgba(136, 217, 50,.18);
  color: var(--fh-accent-text); font-family: var(--fh-font-display);
  font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
  border-radius: 999px; padding: 4px 11px; vertical-align: middle;
}
.aanv-page .aanv-step .body p { font-size: 14.5px; line-height: 1.6; color: var(--fh-muted); margin: 0; max-width: 60ch; }

@media (max-width: 560px) {
  .aanv-page .aanv-step { padding: 22px 18px !important; gap: 16px; }
  .aanv-page .aanv-steps::before { left: 22px; }
  .aanv-page .aanv-step .node { width: 46px; height: 46px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO PREVIEW CARD — "Wat je krijgt" (vervangt de oude SVG-grid)
═══════════════════════════════════════════════════════════════════════ */
.aanv-page .aanv-hero__preview {
  position: absolute;
  top: 50%;
  right: clamp(20px, 4vw, 56px);
  transform: translateY(-50%);
  z-index: 2;
  width: min(40vw, 420px);
  padding: clamp(24px, 2.6vw, 32px);
  background: linear-gradient(180deg, rgba(252, 247, 242, 0.07), rgba(252, 247, 242, 0.03));
  border: 1px solid rgba(252, 247, 242, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.20);
  color: var(--fh-on-dark);
}
@media (max-width: 1100px) {
  .aanv-page .aanv-hero__preview {
    position: relative;
    top: auto; right: auto; transform: none;
    width: auto;
    max-width: 560px;
    margin: 36px 0 0;
  }
}
@media (max-width: 720px) {
  .aanv-page .aanv-hero__preview { display: none; }
}
.aanv-page .aanv-hero__preview-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.aanv-page .aanv-hero__preview-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fh-accent);
}
.aanv-page .aanv-hero__preview-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--fh-accent);
  box-shadow: 0 0 0 0 rgba(136, 217, 50, 0.6);
  animation: aanvLivePulse 1.8s infinite ease-out;
}
@keyframes aanvLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(136, 217, 50, 0.6); }
  60% { box-shadow: 0 0 0 8px rgba(136, 217, 50, 0); }
}
.aanv-page .aanv-hero__preview-meta {
  font-family: var(--fh-font-sans); font-size: 11px;
  letter-spacing: 0.04em; color: rgba(252, 247, 242, 0.55);
  text-transform: uppercase;
}
.aanv-page .aanv-hero__timeline {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.aanv-page .aanv-hero__timeline::before {
  content: ''; position: absolute;
  left: 22px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--fh-accent) 0%, rgba(136, 217, 50, 0.15) 100%);
}
.aanv-page .aanv-hero__tl-item {
  display: grid; grid-template-columns: 46px 1fr;
  gap: 14px; align-items: start; position: relative;
}
.aanv-page .aanv-hero__tl-when {
  position: relative; z-index: 1;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(6, 24, 16, 0.85);
  border: 1.5px solid var(--fh-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh-font-display); font-size: 12.5px; font-weight: 800;
  color: var(--fh-accent); letter-spacing: 0.02em; flex-shrink: 0;
}
.aanv-page .aanv-hero__tl-item.is-final .aanv-hero__tl-when {
  background: var(--fh-accent); color: var(--fh-accent-ink);
  box-shadow: 0 8px 22px rgba(136, 217, 50, 0.42);
}
.aanv-page .aanv-hero__tl-body { padding-top: 4px; }
.aanv-page .aanv-hero__tl-body strong {
  display: block; font-family: var(--fh-font-display);
  font-size: 14.5px; font-weight: 700; color: var(--fh-on-dark);
  margin-bottom: 4px; line-height: 1.3;
}
.aanv-page .aanv-hero__tl-body span {
  display: block; font-family: var(--fh-font-sans);
  font-size: 12.5px; line-height: 1.5;
  color: rgba(252, 247, 242, 0.62);
}
.aanv-page .aanv-hero__preview-foot {
  display: flex; align-items: center; gap: 9px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(252, 247, 242, 0.10);
  font-family: var(--fh-font-sans); font-size: 12px;
  color: rgba(252, 247, 242, 0.65);
}
.aanv-page .aanv-hero__preview-foot svg {
  width: 16px; height: 16px; color: var(--fh-accent); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   BRENT SIDEBAR v2 — premium photo card + grote CTA's
═══════════════════════════════════════════════════════════════════════ */
.aanv-page .aanv-sidebar.aanv-sidebar--v2 {
  background: var(--fh-paper);
  border: 1px solid var(--fh-rule);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(8, 24, 17, 0.04), 0 30px 60px -16px rgba(8, 24, 17, 0.18);
}
.aanv-page .aanv-sidebar__photo {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  background: var(--fh-primary); overflow: hidden;
}
.aanv-page .aanv-sidebar__photo img { object-position: center 22%; }
.aanv-page .aanv-sidebar__photo picture,
.aanv-page .aanv-sidebar__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.aanv-page .aanv-sidebar__photo-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(8, 24, 17, 0.85) 100%);
  pointer-events: none;
}
.aanv-page .aanv-sidebar__live {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 11px 6px 12px;
  background: rgba(6, 20, 14, 0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(136, 217, 50, 0.35);
  border-radius: 999px;
  font-family: var(--fh-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fh-accent);
}
.aanv-page .aanv-sidebar__live-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fh-accent);
  box-shadow: 0 0 0 0 rgba(136, 217, 50, 0.6);
  animation: aanvLivePulse 1.8s infinite ease-out;
}
.aanv-page .aanv-sidebar__person {
  position: absolute; left: 20px; right: 20px; bottom: 16px;
  color: var(--fh-on-dark);
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__name {
  font-family: var(--fh-font-display);
  font-size: 22px; font-weight: 800;
  color: var(--fh-on-dark); line-height: 1.1;
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__role {
  font-family: var(--fh-font-sans);
  font-size: 12.5px; color: rgba(252, 247, 242, 0.78);
  letter-spacing: 0.02em; margin-top: 0;
}
.aanv-page .aanv-sidebar__body { padding: 24px 22px 22px; }
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__quote {
  position: relative; margin: 0 0 18px;
  padding: 16px 18px 16px 48px;
  background: rgba(136, 217, 50, 0.08);
  border-radius: 12px;
  font-family: var(--fh-font-sans);
  font-size: 14.5px; line-height: 1.55;
  color: var(--fh-ink-2); font-style: normal;
  border-left: none;
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__quote strong {
  color: var(--fh-primary); font-weight: 700;
}
.aanv-page .aanv-sidebar__quote-mark {
  position: absolute; top: 12px; left: 14px;
  width: 24px; height: 24px; color: var(--fh-accent); opacity: 0.55;
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__contacts {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.aanv-page .aanv-sidebar__cta {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 0;
}
.aanv-page .aanv-sidebar__cta--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.30);
}
.aanv-page .aanv-sidebar__cta--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.aanv-page .aanv-sidebar__cta--call {
  background: var(--fh-primary); color: var(--fh-on-dark);
  border: 1px solid var(--fh-primary);
}
.aanv-page .aanv-sidebar__cta--call:hover {
  background: var(--fh-primary-deep); transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12, 38, 27, 0.30);
}
.aanv-page .aanv-sidebar__cta svg {
  width: 22px; height: 22px; flex-shrink: 0;
}
.aanv-page .aanv-sidebar__cta > span:not(.aanv-sidebar__cta-arr) {
  display: flex; flex-direction: column; flex: 1;
}
.aanv-page .aanv-sidebar__cta > span:not(.aanv-sidebar__cta-arr) small {
  font-family: var(--fh-font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  opacity: 0.78;
}
.aanv-page .aanv-sidebar__cta > span:not(.aanv-sidebar__cta-arr) strong {
  font-family: var(--fh-font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.005em; margin-top: 2px;
}
.aanv-page .aanv-sidebar__cta-arr {
  font-size: 18px; font-weight: 700; opacity: 0.7;
  transition: transform 0.18s ease;
}
.aanv-page .aanv-sidebar__cta:hover .aanv-sidebar__cta-arr {
  transform: translateX(4px); opacity: 1;
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__badges {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--fh-rule);
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__badges span {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: rgba(136, 217, 50, 0.10);
  border: 1px solid rgba(136, 217, 50, 0.22);
  border-radius: 999px;
  font-family: var(--fh-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fh-accent-text);
}
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__badges span::before { display: none !important; content: none !important; }
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__badges span svg {
  width: 11px; height: 11px; color: var(--fh-accent-text);
}

/* DEFENSIEVE FALLBACK voor inline-SVG zonder explicit dimensions — voorkomt full-bleed explosie wanneer CSS-rules nog niet geladen zijn (page-load race) of cache-mismatch */
.aanv-page svg:not([width]) { max-width: 48px; max-height: 48px; }


/* ═══════════════════════════════════════════════════════════════════════
   COLOR ACCENTS v2 — meer kleur, strak gehouden
   Subtiele groene moments throughout het form-blok zonder druk te worden.
═══════════════════════════════════════════════════════════════════════ */

/* Form-card krijgt een groene accent-strip aan de bovenkant */
.aanv-page .aanv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fh-accent) 0%, var(--fh-accent-strong) 50%, var(--fh-accent) 100%);
  z-index: 2;
}

/* Subtle gradient-tint achter card-head zodat het minder steriel-wit voelt */
.aanv-page .aanv-card-head {
  background: linear-gradient(180deg, rgba(136, 217, 50, 0.05) 0%, transparent 100%);
}

/* Iedere form-step-groep krijgt een subtiele groene LEFT-BORDER accent.
   Strak: dunne 2px, alleen op top zichtbaar als visuele anchor van de stap. */
.aanv-page .af-form .af-group {
  position: relative;
  padding-left: 18px;
}
.aanv-page .af-form .af-group::after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--fh-accent) 0%, rgba(136, 217, 50, 0.18) 100%);
  border-radius: 2px;
}
@media (max-width: 700px) {
  .aanv-page .af-form .af-group { padding-left: 14px; }
}

/* Stepper-dots (1/2/3/4 boven het formulier) actiever groen */
.aanv-page .aanv-stepper__item.is-active .aanv-stepper__dot {
  background: var(--fh-accent);
  color: var(--fh-accent-ink);
  box-shadow: 0 4px 14px rgba(136, 217, 50, 0.40);
}

/* Submit button — extra glow op hover voor finale stap */
.aanv-page .af-submit {
  background: linear-gradient(135deg, var(--fh-accent) 0%, var(--fh-accent-strong) 100%);
  box-shadow: 0 8px 24px rgba(136, 217, 50, 0.30);
}
.aanv-page .af-submit:hover {
  box-shadow: 0 14px 36px rgba(136, 217, 50, 0.45);
}

/* Section-numbers (1/2/3/4 in .glabel .n) krijgen subtle glow */
.aanv-page .af-group .glabel .n {
  box-shadow: 0 2px 8px rgba(136, 217, 50, 0.32);
}

/* Header "VERTEL ONS WAT JE ZOEKT" - eyebrow .k met groene streep ervoor */
.aanv-page .aanv-card-head .k::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--fh-accent);
  margin-right: 4px;
}

/* Brent-card: padding aanpassen nu de badges weg zijn, geen weeskind-marge */
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__body { padding-bottom: 22px; }
.aanv-page .aanv-sidebar--v2 .aanv-sidebar__contacts:last-child { margin-bottom: 0; }