/* ==========================================================================
   Busy Buster — theme.css
   Componentstyling bovenop tokens.css. 4px-grid, pill-knoppen, zachte kaarten,
   aqua-accent spaarzaam. Mobile-first, responsive vanaf 360px.
   ========================================================================== */

/* --- Reset/normalize aanvullingen --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

/* --- Layout primitives --------------------------------------------------- */
.bb-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.bb-section { padding-block: var(--space-16); }
@media (min-width: 768px) { .bb-section { padding-block: var(--section-pad); } }

.bb-section--gray { background: var(--surface-section); }
.bb-section--ink  { background: var(--surface-ink); color: var(--text-inverse); }
.bb-section--tint { background: var(--surface-tint); }

.bb-section--ink h1, .bb-section--ink h2, .bb-section--ink h3, .bb-section--ink h4 { color: var(--text-inverse); }
.bb-section--ink p { color: var(--text-inverse-secondary); }

/* --- Typografie ---------------------------------------------------------- */
h1, .bb-h1 { font-size: clamp(34px, 6vw, var(--text-h1)); }
h2, .bb-h2 { font-size: clamp(27px, 4.5vw, var(--text-h2)); }
h3, .bb-h3 { font-size: clamp(21px, 3vw, var(--text-h3)); }
h4, .bb-h4 { font-size: var(--text-h4); }
.bb-display { font-family: var(--font-display); font-weight: var(--weight-display); font-size: clamp(38px, 7vw, var(--text-display)); line-height: var(--leading-display); letter-spacing: var(--tracking-display); }
.bb-lead { font-size: clamp(17px, 2.2vw, var(--text-lead)); color: var(--text-secondary); }
.bb-eyebrow { font-size: var(--text-caption); font-weight: 700; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--accent-strong); margin-bottom: var(--space-3); }
.bb-section--ink .bb-eyebrow { color: var(--bb-aqua); }

/* De aqua "dot." aan het einde van een kop. */
.bb-dot::after { content: "."; color: var(--bb-aqua); }

.bb-muted { color: var(--text-muted); }
.bb-center { text-align: center; }
.bb-maxw-prose { max-width: 64ch; }
.bb-maxw-640 { max-width: 640px; }
.bb-mx-auto { margin-inline: auto; }

/* --- Knoppen (pills) ----------------------------------------------------- */
/* Maatvoering overgenomen uit referentie bbBtnSizes: sm/md/lg, allemaal pill. */
.bb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  line-height: 1.2; padding: 12px 24px; border-radius: var(--radius-pill);
  border: 1px solid transparent; transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
  text-decoration: none; white-space: nowrap; box-sizing: border-box;
}
.bb-btn:active { transform: scale(0.98); }
.bb-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.bb-btn--primary { background: var(--gray-950); color: var(--text-inverse); border-color: var(--gray-950); }
.bb-btn--primary:hover { background: var(--gray-800); color: var(--text-inverse); border-color: var(--gray-800); }

.bb-btn--secondary { background: var(--gray-0, #fff); color: var(--text-primary); border-color: var(--border-default); }
.bb-btn--secondary:hover { background: var(--gray-50); color: var(--text-primary); }

.bb-btn--accent { background: var(--bb-aqua); color: var(--gray-950); border-color: var(--bb-aqua); }
.bb-btn--accent:hover { background: var(--aqua-200); color: var(--gray-950); border-color: var(--aqua-200); }

.bb-btn--ghost { background: transparent; color: var(--accent-deep); border-color: transparent; }
.bb-btn--ghost:hover { background: var(--aqua-50); }

.bb-btn--ghost-inverse { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.bb-btn--ghost-inverse:hover { background: rgba(255,255,255,0.08); color: #fff; }

.bb-btn--sm { padding: 8px 18px; font-size: 15px; gap: 8px; }
.bb-btn--lg { padding: 16px 32px; font-size: 17px; gap: 10px; }
.bb-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.bb-btn-row--center { justify-content: center; }
.bb-btn--arrow::after { content: "\2192"; }

/* --- Pills / badges / chips --------------------------------------------- */
.bb-pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-small); font-weight: 600; padding: 7px 14px;
  border-radius: var(--radius-pill); background: var(--aqua-50); color: var(--accent-deep);
}
.bb-pill .bb-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bb-aqua); }
.bb-section--ink .bb-pill { background: rgba(92,224,224,0.14); color: var(--bb-aqua); }

.bb-icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--aqua-50); color: var(--accent-deep); flex: none;
}
.bb-icon-chip svg { width: 24px; height: 24px; }

/* --- Header / topbar / nav ----------------------------------------------- */
/* Topbar overgenomen uit referentie: lichte gray-50-balk, sterren links,
   telefoon + WhatsApp rechts. Hoogte 38px, items 13px/600 text-secondary. */
.bb-topbar {
  background: var(--gray-50); border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-body);
}
.bb-topbar .bb-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; padding-block: 0; }
.bb-topbar a, .bb-topbar .bb-topbar-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-secondary); text-decoration: none; }
.bb-topbar a:hover { color: var(--text-primary); text-decoration: none; }
.bb-topbar .bb-topbar-items { display: inline-flex; align-items: center; gap: 22px; }
.bb-topbar .bb-stars { color: var(--gray-950); font-size: 12px; letter-spacing: 1px; }
.bb-topbar .bb-topbar-ic { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: var(--aqua-600); }
.bb-topbar .bb-topbar-ic svg { width: 16px; height: 16px; transform: scale(0.66); }
@media (max-width: 560px) { .bb-topbar .bb-topbar-items .bb-hide-sm { display: none; } }

.bb-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border-subtle); }
.bb-header .bb-container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); min-height: 68px; }
.bb-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
/* Cap elke logo-variant robuust: eigen img, WP custom-logo en custom-logo-link */
.bb-logo img,
.bb-logo .bb-logo-img,
.bb-header .custom-logo,
.bb-header .custom-logo-link img { max-height: 36px; width: auto; height: auto; display: block; }
.bb-logo .bb-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--bb-ink); letter-spacing: -0.02em; }
.bb-logo .bb-logo-text::after { content: "."; color: var(--bb-aqua); }
/* Mobiel: compacter logo conform mockup */
@media (max-width: 1023px) {
  .bb-logo img,
  .bb-logo .bb-logo-img,
  .bb-header .custom-logo,
  .bb-header .custom-logo-link img { max-height: 30px; }
  .bb-logo .bb-logo-text { font-size: 19px; }
}

.bb-nav { display: none; }
@media (min-width: 1024px) { .bb-nav { display: flex; align-items: center; gap: var(--space-2); } }
.bb-nav ul.bb-menu { display: flex; align-items: center; gap: 2px; }
.bb-menu > li { position: relative; }
.bb-menu > li > a { display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: var(--radius-pill); color: var(--text-primary); font-weight: 600; font-size: var(--text-small); }
.bb-menu > li > a:hover { background: var(--gray-50); text-decoration: none; }
.bb-menu .menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid var(--gray-400); border-bottom: 2px solid var(--gray-400); transform: rotate(45deg); margin-top: -3px; }

/* Dropdown */
.bb-menu .sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: var(--space-2); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all var(--duration-fast) var(--ease-out); z-index: 60;
}
.bb-menu li:hover > .sub-menu, .bb-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.bb-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: var(--text-small); color: var(--text-primary); font-weight: 500; }
.bb-menu .sub-menu a:hover { background: var(--aqua-50); color: var(--accent-deep); text-decoration: none; }

.bb-header-cta { display: none; }
@media (min-width: 1024px) { .bb-header-cta { display: flex; gap: var(--space-2); } }

/* Mobiele acties: CTA "Kennismaken" + hamburger (referentie shared.jsx:335). */
.bb-header-mobile-actions { display: inline-flex; align-items: center; gap: 10px; }
@media (min-width: 1024px) { .bb-header-mobile-actions { display: none; } }
.bb-header-mobile-actions .bb-mobile-cta-btn { display: inline-flex; }

/* Mobile nav toggle */
.bb-burger { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--border-default); border-radius: var(--radius-md); background: #fff; flex: none; transition: all var(--duration-fast) var(--ease-out); }
.bb-burger[aria-expanded="true"] { background: var(--gray-950); border-color: var(--gray-950); }
.bb-burger[aria-expanded="true"] span { background: #fff; }
@media (min-width: 1024px) { .bb-burger { display: none; } }
.bb-burger span { width: 20px; height: 2px; background: var(--bb-ink); border-radius: 2px; transition: var(--duration-fast); }
.bb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bb-mobile-nav { display: none; border-top: 1px solid var(--border-subtle); background: #fff; }
.bb-mobile-nav.is-open { display: block; }
.bb-mobile-nav ul { padding: var(--space-3) 0; }
.bb-mobile-nav a { display: block; padding: 12px var(--container-pad); font-weight: 600; color: var(--text-primary); }
.bb-mobile-nav .sub-menu a { padding-left: calc(var(--container-pad) + 16px); font-weight: 500; color: var(--text-secondary); }
.bb-mobile-nav .bb-mobile-cta { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-4) var(--container-pad) var(--space-6); }

/* --- Hero ---------------------------------------------------------------- */
.bb-hero { padding-block: var(--space-12) var(--space-16); }
@media (min-width: 768px) { .bb-hero { padding-block: var(--space-20); } }
.bb-hero .bb-hero-grid { display: grid; gap: var(--space-10); align-items: center; }
@media (min-width: 1024px) { .bb-hero .bb-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-16); } }
.bb-hero h1 { margin-bottom: var(--space-5); }
.bb-hero .bb-lead { margin-bottom: var(--space-8); }
.bb-hero-media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-pop); aspect-ratio: 4/5; }
.bb-hero-media video, .bb-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.bb-hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-8); font-size: var(--text-small); color: var(--text-secondary); }
.bb-hero-trust li { display: flex; align-items: center; gap: 8px; }
.bb-hero-trust svg { width: 18px; height: 18px; color: var(--accent-strong); }

/* --- Hero: full-bleed video variant (referentie BBVideoHero) -------------- */
.bb-vhero { position: relative; overflow: hidden; background: var(--gray-950); isolation: isolate; }
.bb-vhero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bb-vhero-overlay { position: absolute; inset: 0; background: rgba(12, 13, 15, 0.62); z-index: 1; }
.bb-vhero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-6); padding-block: 64px 76px; }
@media (min-width: 768px) { .bb-vhero-inner { padding-block: 110px 120px; gap: 26px; } }
.bb-vhero .bb-pill { background: rgba(92,224,224,0.14); color: var(--bb-aqua); }
.bb-vhero-title { color: var(--text-inverse); max-width: 760px; margin-bottom: 0; text-wrap: balance; }
.bb-vhero-lead { color: var(--text-inverse-secondary); max-width: 520px; margin-bottom: 0; text-wrap: pretty; }
.bb-vhero-proof { display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; }
.bb-price-badge--inverse { background: var(--gray-950); border-color: var(--gray-950); color: var(--text-inverse); }
.bb-price-badge--inverse .bb-pph { color: var(--text-inverse); }
.bb-price-badge--inverse .bb-pph small { color: var(--bb-aqua); }
.bb-price-badge--inverse .bb-pph-sub { color: var(--text-inverse-secondary); }
.bb-hero-trust--inverse { margin-top: 0; color: var(--text-inverse-secondary); }
.bb-hero-trust--inverse svg { color: var(--bb-aqua); }
@media (prefers-reduced-motion: reduce) { .bb-vhero-video { display: none; } .bb-vhero { background-size: cover; background-position: center; } }

/* --- Grids --------------------------------------------------------------- */
.bb-cols { display: grid; gap: var(--space-5); }
.bb-cols-2 { grid-template-columns: 1fr; }
.bb-cols-3 { grid-template-columns: 1fr; }
.bb-cols-4 { grid-template-columns: repeat(2, 1fr); }
.bb-cols-5 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .bb-cols-2 { grid-template-columns: repeat(2, 1fr); } .bb-cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bb-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .bb-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .bb-cols-5 { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
}

/* --- Kaarten ------------------------------------------------------------- */
.bb-card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-card); transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out); }
.bb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.bb-card h3 { font-size: var(--text-h4); margin-bottom: var(--space-2); }
.bb-card .bb-card-icon { margin-bottom: var(--space-4); }
.bb-card p { font-size: var(--text-small); color: var(--text-secondary); }
.bb-card .bb-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-4); font-weight: 600; font-size: var(--text-small); color: var(--accent-deep); }
.bb-card .bb-card-link svg { width: 16px; height: 16px; }
.bb-card-link:hover { gap: 9px; text-decoration: none; }

/* Pijnkaart (Herken je dit?) */
.bb-pain { border-left: 3px solid var(--bb-aqua); }

/* Persona-kaart */
.bb-persona h3 { font-size: var(--text-h4); }

/* --- Section heading block ---------------------------------------------- */
.bb-section-head { max-width: 720px; margin-bottom: var(--space-10); }
.bb-section-head.bb-center { margin-inline: auto; }
.bb-section-head .bb-lead { margin-top: var(--space-3); }

/* --- Logobalk (D) -------------------------------------------------------- */
.bb-logobar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-8); }
.bb-logobar .bb-logo-item { font-family: var(--font-display); font-weight: 700; color: var(--gray-400); font-size: 20px; letter-spacing: -0.01em; filter: grayscale(1); opacity: 0.8; }
.bb-logobar-caption { text-align: center; font-size: var(--text-caption); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-6); font-weight: 600; }

/* --- Prijs-per-uur-badge (B) — pill, referentie shared.jsx:50 ----------- */
.bb-price-badge {
  display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap;
  padding: 5px 13px; border-radius: var(--radius-pill);
  background: var(--aqua-100); border: 1px solid var(--aqua-200);
  color: var(--text-primary); font-family: var(--font-body);
}
.bb-price-badge .bb-pph { font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1; letter-spacing: -0.02em; color: inherit; }
.bb-price-badge .bb-pph small { font-size: 12px; font-weight: 700; color: var(--aqua-700); margin-left: 2px; }
.bb-price-badge .bb-pph-sub { font-size: 11.5px; color: var(--text-secondary); font-weight: 500; }
.bb-price-badge .bb-pph-sub::before { content: "\00B7 "; }

/* --- Prijskaarten (Tarieven) -------------------------------------------- */
.bb-price-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: var(--space-6); position: relative; }
.bb-price-card.is-featured { border-color: var(--bb-ink); box-shadow: var(--shadow-lift); }
.bb-price-card .bb-price-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--bb-ink); color: #fff; font-size: var(--text-caption); font-weight: 700; padding: 5px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.bb-price-card .bb-price-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-h4); }
.bb-price-card .bb-price-amount { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1; margin-block: var(--space-2); }
.bb-price-card .bb-price-amount small { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.bb-price-card .bb-price-hours { font-size: var(--text-small); color: var(--text-secondary); margin-bottom: var(--space-4); }
.bb-price-card ul.bb-price-feats { display: flex; flex-direction: column; gap: var(--space-2); margin-block: var(--space-4); font-size: var(--text-small); }
.bb-price-card ul.bb-price-feats li { display: flex; gap: 8px; align-items: flex-start; }
.bb-price-card ul.bb-price-feats svg { width: 18px; height: 18px; color: var(--accent-strong); flex: none; margin-top: 1px; }
.bb-price-card .bb-price-cta { margin-top: auto; }

/* --- Stappenplan (F) ----------------------------------------------------- */
/* Verticale tijdlijn (referentie StepItem ds-bundle:1226): cirkel + lijn. */
.bb-steps { display: flex; flex-direction: column; }
.bb-step { display: flex; gap: 20px; }
.bb-step .bb-step-rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.bb-step .bb-step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gray-950); color: var(--bb-aqua); font-family: var(--font-display); font-weight: 700; font-size: 17px; flex: none; }
.bb-step .bb-step-line { width: 2px; flex: 1; min-height: 24px; background: var(--border-default); margin-top: 8px; border-radius: 1px; }
.bb-step .bb-step-body { padding-bottom: 32px; }
.bb-step:last-child .bb-step-body { padding-bottom: 0; }
.bb-step h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-h4); margin: 8px 0; letter-spacing: var(--tracking-heading); }
.bb-step p { font-size: var(--text-small); line-height: 1.6; color: var(--text-secondary); margin: 0; text-wrap: pretty; }
.bb-section--ink .bb-step .bb-step-num { background: var(--bb-aqua); color: var(--gray-950); }
.bb-section--ink .bb-step .bb-step-line { background: rgba(255,255,255,0.18); }
.bb-section--ink .bb-step p { color: var(--text-inverse-secondary); }

/* Home: 'Zo werkt het' als 2-koloms grid (tekst+tijdlijn links, video rechts) */
.bb-howto-grid { display: grid; gap: var(--space-10); align-items: center; }
@media (min-width: 1024px) { .bb-howto-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.bb-howto-col { display: flex; flex-direction: column; gap: 36px; }
.bb-howto-head { max-width: none; margin-bottom: 0; }
.bb-howto-video { width: 100%; border-radius: var(--radius-2xl); overflow: hidden; background: var(--gray-950); box-shadow: var(--shadow-card); }
.bb-howto-video video { width: 100%; height: auto; display: block; }

/* --- Risico-omkering (E) ------------------------------------------------- */
.bb-risk { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .bb-risk { grid-template-columns: repeat(2, 1fr); } }
.bb-risk li { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4); background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); }
.bb-risk .bb-icon-chip { width: 40px; height: 40px; }
.bb-risk strong { display: block; font-size: var(--text-body); }
.bb-risk span { font-size: var(--text-small); color: var(--text-secondary); }

/* --- Sterren (referentie Stars ds-bundle:239) --------------------------- */
.bb-stars { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); }
.bb-stars .bb-stars-glyph { font-size: 16px; letter-spacing: 2px; color: var(--gray-950); line-height: 1; }
.bb-stars .bb-stars-empty { color: var(--gray-300); }
.bb-stars .bb-stars-count { font-size: var(--text-caption); color: var(--text-muted); font-weight: 500; }
.bb-section--ink .bb-stars .bb-stars-glyph { color: var(--bb-aqua); }
.bb-section--ink .bb-stars .bb-stars-empty { color: rgba(255,255,255,0.25); }

/* --- Testimonial-kaart (C) ----------------------------------------------- */
.bb-testimonial { display: flex; flex-direction: column; gap: var(--space-4); }
.bb-testimonial .bb-quote { font-size: var(--text-h4); font-weight: 500; line-height: 1.45; font-family: var(--font-body); }
.bb-testimonial .bb-quote::before { content: "\201C"; color: var(--bb-aqua); font-family: var(--font-display); font-weight: 800; }
.bb-testimonial .bb-author { display: flex; align-items: center; gap: var(--space-3); }
.bb-testimonial .bb-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.bb-testimonial .bb-author-name { font-weight: 700; font-size: var(--text-small); }
.bb-testimonial .bb-author-meta { font-size: var(--text-caption); color: var(--text-muted); }
.bb-testimonial .bb-result { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-small); font-weight: 700; color: var(--accent-deep); background: var(--aqua-50); padding: 6px 12px; border-radius: var(--radius-pill); align-self: flex-start; }

/* --- VA-profielkaart (I) ------------------------------------------------- */
.bb-va-card { text-align: center; }
.bb-va-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto var(--space-4); }
.bb-va-card .bb-va-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-h4); }
.bb-va-card .bb-va-spec { font-size: var(--text-caption); letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--accent-strong); font-weight: 700; margin-bottom: var(--space-3); }
.bb-va-card p { font-size: var(--text-small); color: var(--text-secondary); }

/* --- Vergelijkingstabel (J) ---------------------------------------------- */
.bb-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-xl); border: 1px solid var(--border-default); }
.bb-compare { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
.bb-compare th, .bb-compare td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: var(--text-small); }
.bb-compare thead th { font-family: var(--font-display); font-weight: 800; font-size: var(--text-body); background: var(--gray-50); }
.bb-compare thead th.is-us { background: var(--bb-ink); color: #fff; }
.bb-compare tbody td.is-us { font-weight: 700; }
.bb-compare tbody td svg { width: 18px; height: 18px; vertical-align: -3px; }
.bb-compare .bb-yes { color: var(--green-600); }
.bb-compare .bb-no { color: var(--red-600); }

/* --- ROI-calculator (H) -------------------------------------------------- */
.bb-roi { background: #fff; border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: var(--space-8); box-shadow: var(--shadow-card); }
.bb-roi .bb-roi-grid { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 768px) { .bb-roi .bb-roi-grid { grid-template-columns: 1fr 0.85fr; } }
.bb-roi label { display: block; font-weight: 600; font-size: var(--text-small); margin-bottom: var(--space-2); }
.bb-roi .bb-roi-val { font-family: var(--font-display); font-weight: 800; color: var(--accent-deep); }
.bb-roi input[type="range"] { width: 100%; accent-color: var(--aqua-500); height: 6px; margin-bottom: var(--space-6); }
.bb-roi .bb-roi-field { margin-bottom: var(--space-5); }
.bb-roi .bb-roi-result { background: var(--bb-ink); color: #fff; border-radius: var(--radius-lg); padding: var(--space-6); text-align: center; }
.bb-roi .bb-roi-result .bb-roi-amount { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--bb-aqua); }
.bb-roi .bb-roi-result p { font-size: var(--text-small); color: var(--text-inverse-secondary); margin-top: var(--space-2); margin-bottom: 0; }

/* --- FAQ-accordeon (G) --------------------------------------------------- */
.bb-faq { max-width: 800px; margin-inline: auto; }
.bb-faq-item { border-bottom: 1px solid var(--border-default); }
.bb-faq-q { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); width: 100%; background: none; border: none; padding: var(--space-5) 0; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: var(--text-h4); color: var(--text-primary); }
.bb-faq-q:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
.bb-faq-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--aqua-50); position: relative; transition: var(--duration-fast); }
.bb-faq-icon::before, .bb-faq-icon::after { content: ""; position: absolute; background: var(--accent-deep); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.bb-faq-icon::before { width: 12px; height: 2px; }
.bb-faq-icon::after { width: 2px; height: 12px; transition: var(--duration-fast); }
.bb-faq-q[aria-expanded="true"] .bb-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.bb-faq-a { overflow: hidden; max-height: 0; transition: max-height var(--duration-base) var(--ease-out); }
.bb-faq-a-inner { padding-bottom: var(--space-5); color: var(--text-secondary); font-size: var(--text-body); }

/* --- CTA-banner (A) — "Hoeveel is jouw tijd waard" (referentie CTABanner) -- */
.bb-cta-banner {
  background: var(--surface-ink); border-radius: var(--radius-2xl);
  padding: 64px 56px; display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center; box-sizing: border-box;
}
@media (max-width: 640px) { .bb-cta-banner { padding: 44px 24px; } }
.bb-cta-banner-title { font-family: var(--font-display); font-weight: var(--weight-display); font-size: clamp(30px, 5vw, var(--text-h1)); line-height: var(--leading-display); letter-spacing: var(--tracking-display); margin: 0; color: var(--text-inverse); max-width: 640px; text-wrap: balance; }
.bb-cta-banner-q { color: var(--bb-aqua); }
.bb-cta-banner-intro { margin: 0; font-size: var(--text-lead); line-height: 1.55; color: var(--text-inverse-secondary); max-width: 560px; text-wrap: pretty; }
.bb-cta-banner .bb-btn-row { margin-top: 0; }
/* Secondary-knop op een donkere band (transparant met witte rand). */
.bb-btn--on-ink { background: transparent; color: var(--text-inverse); border-color: rgba(255,255,255,0.3); }
.bb-btn--on-ink:hover { background: rgba(255,255,255,0.08); color: var(--text-inverse); border-color: rgba(255,255,255,0.45); }

/* --- Video --------------------------------------------------------------- */
.bb-video { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-pop); max-width: 880px; margin-inline: auto; aspect-ratio: 16/9; background: var(--bb-ink); }
.bb-video video { width: 100%; height: 100%; object-fit: cover; }

/* --- Footer -------------------------------------------------------------- */
.bb-footer { background: var(--surface-ink); color: var(--text-inverse-secondary); padding-block: var(--space-16) var(--space-8); }
.bb-footer a { color: var(--text-inverse-secondary); }
.bb-footer a:hover { color: #fff; }
.bb-footer-grid { display: grid; gap: var(--space-10); }
@media (min-width: 640px) { .bb-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bb-footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); } }
/* Footer-kop in accentkleur (aqua) i.p.v. wit — referentie ds-bundle:790. */
.bb-footer h4 { color: var(--bb-aqua); font-size: var(--text-caption); font-family: var(--font-body); font-weight: 600; letter-spacing: var(--tracking-caps); text-transform: uppercase; margin-bottom: var(--space-4); }
.bb-footer ul li { margin-bottom: var(--space-2); font-size: var(--text-small); }
.bb-footer .bb-footer-brand .bb-footer-logo { display: inline-block; margin-bottom: var(--space-4); }
.bb-footer .bb-footer-brand .bb-footer-logo img { max-height: 40px; width: auto; height: auto; display: block; }
.bb-footer .bb-footer-brand .bb-logo-text { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.bb-footer .bb-footer-brand .bb-logo-text::after { content: "."; color: var(--bb-aqua); }
.bb-footer .bb-footer-brand p { font-size: var(--text-small); margin-top: var(--space-4); max-width: 32ch; }
.bb-footer .bb-footer-contact { margin-top: var(--space-5); font-size: var(--text-small); display: flex; flex-direction: column; gap: var(--space-2); }
.bb-footer .bb-footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
.bb-footer .bb-footer-contact svg { width: 16px; height: 16px; color: var(--bb-aqua); }
.bb-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-12); padding-top: var(--space-6); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); font-size: var(--text-caption); }

/* --- Utilities ----------------------------------------------------------- */
.bb-mt-0 { margin-top: 0; }
.bb-stack > * + * { margin-top: var(--space-4); }
.bb-stack-lg > * + * { margin-top: var(--space-8); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: #fff; padding: 12px 20px; border-radius: var(--radius-md); }
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

/* --- Scroll-reveal (max één per sectie, respecteert reduced-motion) ------ */
.bb-reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.bb-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .bb-reveal { opacity: 1; transform: none; transition: none; }
  .bb-btn:hover, .bb-card:hover { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ==========================================================================
   v1.0.4 — Pillar/tarieven refinements + overflow hardening (ronde 3)
   ========================================================================== */

/* Globale overflow-guard: niets mag horizontaal uit beeld vallen. */
html, body { overflow-x: hidden; max-width: 100%; }

/* Grid-kinderen mogen krimpen: voorkomt dat 5 prijskaarten (cols-5) of
   andere grids breder worden dan hun container op desktop. */
.bb-cols > * { min-width: 0; }
.bb-price-card { min-width: 0; }
.bb-price-card .bb-price-name,
.bb-price-card .bb-price-amount,
.bb-price-card .bb-price-hours,
.bb-price-card .bb-price-feats,
.bb-price-card .bb-price-feats li,
.bb-price-card .bb-price-feats span { min-width: 0; overflow-wrap: anywhere; }
.bb-price-card .bb-btn { max-width: 100%; }

/* Compacte prijskaarten voor de 5-koloms pillar-preview: kleinere typografie
   zodat alle vijf netjes naast elkaar passen vanaf 1024px. */
@media (min-width: 1024px) {
  .bb-cols-5 .bb-price-card { padding: var(--space-5); }
  .bb-cols-5 .bb-price-card .bb-price-amount { font-size: 30px; }
  .bb-cols-5 .bb-price-card .bb-price-amount small { font-size: 13px; }
  .bb-cols-5 .bb-price-card .bb-price-name { font-size: 17px; }
  .bb-cols-5 .bb-price-card .bb-price-hours { font-size: 12.5px; }
  .bb-cols-5 .bb-price-card ul.bb-price-feats { font-size: 13px; gap: 6px; }
  .bb-cols-5 .bb-price-card ul.bb-price-feats svg { width: 16px; height: 16px; }
}

/* Kruimelpad (breadcrumb) in de pillar-hero. */
.bb-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: var(--text-caption); color: var(--text-muted); margin-bottom: var(--space-6); }
.bb-breadcrumb a { color: var(--text-link); font-weight: 500; }
.bb-breadcrumb a:hover { text-decoration: underline; }
.bb-breadcrumb .bb-breadcrumb-sep { color: var(--text-muted); }
.bb-breadcrumb .bb-breadcrumb-current { font-weight: 600; color: var(--text-secondary); }

/* Compactere pillar-hero: kleinere H1 (geen display-formaat), tekst links. */
.bb-pillar-hero { padding-block: var(--space-10) var(--space-12); }
@media (min-width: 768px) { .bb-pillar-hero { padding-block: var(--space-12) var(--space-16); } }
.bb-pillar-hero h1 { font-size: clamp(30px, 5vw, var(--text-h1)); line-height: var(--leading-display); letter-spacing: var(--tracking-display); margin-bottom: var(--space-5); }
.bb-pillar-hero .bb-lead { max-width: 540px; margin-bottom: var(--space-6); }
.bb-pillar-hero .bb-hero-trust { margin-top: var(--space-6); }

/* Tekst-links + media-rechts split (voor 'Wat is een VA' en soortgelijke). */
.bb-split { display: grid; gap: var(--space-10); align-items: center; }
@media (min-width: 1024px) { .bb-split { grid-template-columns: 1fr 1fr; gap: var(--space-16); } }
.bb-split > * { min-width: 0; }
.bb-split .bb-split-body { max-width: 560px; }
.bb-split .bb-split-body h2 { margin-bottom: var(--space-4); }
.bb-split .bb-split-media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.bb-split .bb-split-media img { width: 100%; height: 100%; object-fit: cover; }
.bb-split-head { text-align: left; max-width: none; }
