/* =========================================================
   Human Behaviour Group — Stylesheet
   Lichte, rustige uitstraling met DISC-kleuren als accenten
   ========================================================= */

:root {
  /* Primaire palet — officieel HBG-logo */
  --hbg-navy: #2c3e5a;        /* diepblauw uit logo */
  --hbg-navy-dark: #1d2b40;
  --hbg-navy-soft: #3f5577;
  --hbg-gold: #b89a2a;         /* mosterdgoud uit logo */
  --hbg-gold-soft: #d4b94a;
  --hbg-gold-light: #f1e7c2;
  --hbg-ink: #1a2233;
  --hbg-text: #3a4659;
  --hbg-muted: #6b7589;
  --hbg-line: #e6ebf2;
  --hbg-bg: #ffffff;
  --hbg-bg-soft: #f6f8fb;
  --hbg-bg-cream: #faf6e8;     /* zacht crème met goud-undertoon */

  /* DISC-accenten (gestandaardiseerd) */
  --disc-d: #d94545; /* Dominance — Rood */
  --disc-i: #d4a82a; /* Influence — afgestemd op huisstijl-goud */
  --disc-s: #4caf7a; /* Steadiness — Groen */
  --disc-c: #3b82c4; /* Compliance — Blauw */

  /* Schaduwen */
  --shadow-sm: 0 1px 2px rgba(20, 40, 68, 0.04), 0 1px 3px rgba(20, 40, 68, 0.06);
  --shadow-md: 0 4px 12px rgba(20, 40, 68, 0.06), 0 2px 4px rgba(20, 40, 68, 0.04);
  --shadow-lg: 0 16px 40px rgba(20, 40, 68, 0.08), 0 4px 12px rgba(20, 40, 68, 0.04);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Typografie */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--hbg-text);
  background: var(--hbg-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--hbg-navy);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--hbg-navy-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--hbg-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}
h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
}

/* Mobile safety: prevent unintended horizontal scroll
   (overflow-x: clip i.p.v. hidden — anders breekt position:sticky op de header) */
html, body { overflow-x: clip; }
img, svg, video { max-width: 100%; height: auto; }

/* =============== Audience redirect strip (homepage) =============== */
.audience-redirect {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f7f9fc 0%, #fff 100%);
  border: 1px solid var(--hbg-line);
  border-left: 4px solid var(--hbg-gold);
  border-radius: var(--radius-md);
}
.audience-redirect-intro strong {
  display: block;
  color: var(--hbg-ink);
  font-size: 1rem;
  margin-bottom: 4px;
}
.audience-redirect-intro span {
  color: var(--hbg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.audience-redirect-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.audience-redirect-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.audience-redirect-card:hover {
  transform: translateX(2px);
  box-shadow: 0 6px 18px rgba(44,62,90,0.1);
  border-color: var(--hbg-gold);
}
.audience-redirect-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audience-redirect-card strong {
  display: block;
  color: var(--hbg-ink);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.audience-redirect-card span:not(.audience-redirect-arrow) {
  color: var(--hbg-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.audience-redirect-arrow {
  color: var(--hbg-gold);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.audience-redirect-card:hover .audience-redirect-arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .audience-redirect { grid-template-columns: 1fr; gap: 18px; }
  .audience-redirect-options { grid-template-columns: 1fr; }
}

/* =============== Audience-switcher (smalle bovenbalk) =============== */
:root {
  --audience-bar-h: 32px;
}
.audience-bar {
  background: var(--hbg-navy-dark);
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  line-height: 1;
  position: sticky;
  top: 0;
  z-index: 60;
}
.audience-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.audience-bar-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-right: auto;
  padding: 8px 0;
}
.audience-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.audience-tab:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.audience-tab.active {
  color: var(--hbg-navy-dark);
  background: var(--hbg-gold);
  border-bottom-color: var(--hbg-gold);
  font-weight: 600;
}
.audience-tab.active:hover {
  background: var(--hbg-gold);
  color: var(--hbg-navy-dark);
}
.audience-tab-icon,
.audience-bar svg {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  :root { --audience-bar-h: 36px; }
  .audience-bar { font-size: 0.72rem; }
  .audience-bar-label { display: none; }
  .audience-bar-inner {
    padding: 0;
    flex-wrap: nowrap;
    justify-content: stretch;
  }
  .audience-tab {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 9px 6px;
    font-size: 0.72rem;
    gap: 0;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: none !important;
  }
  .audience-tab:last-child { border-right: none; }
  .audience-tab.active {
    background: var(--hbg-gold);
    color: var(--hbg-navy-dark) !important;
    font-weight: 600;
    border-bottom: none !important;
  }
  .audience-tab:hover { background: rgba(255,255,255,0.06); }
  .audience-tab.active:hover { background: var(--hbg-gold); }
  .audience-tab-icon,
  .audience-bar svg { display: none !important; }
}

/* =============== Header / Nav =============== */
.site-header {
  position: sticky;
  top: var(--audience-bar-h);
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hbg-line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 22px rgba(44, 62, 90, 0.10);
  background: rgba(255, 255, 255, 0.96);
}
.site-header.is-scrolled .nav {
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand .logo-mark {
  height: 64px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}
.brand.brand-footer .logo-mark {
  height: 84px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
@media (max-width: 640px) {
  .brand .logo-mark { height: 52px; }
}

/* HBG Ensize certificeringskaart */
.hbg-cert-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #fffaeb 0%, #fff 60%);
  border: 2px solid var(--hbg-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(184,154,42,0.18);
}
.hbg-cert-text { padding: 44px 48px; }
.hbg-cert-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--hbg-gold);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.hbg-cert-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 26px 0;
}
.hbg-cert-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hbg-cert-feature strong {
  display: block;
  color: var(--hbg-ink);
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.hbg-cert-feature span:last-child {
  color: var(--hbg-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.hbg-cert-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 1px;
}
.hbg-cert-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hbg-cert-price {
  background: linear-gradient(135deg, var(--hbg-navy) 0%, var(--hbg-navy-dark) 100%);
  color: #fff;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hbg-cert-price-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.hbg-cert-price-amount {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--hbg-gold);
  line-height: 1;
}
.hbg-cert-price-amount span { font-size: 1.6rem; }
.hbg-cert-price-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 6px;
}
.hbg-cert-price-divider {
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 24px 0;
}
.hbg-cert-price-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  font-size: 1.05rem;
}
.hbg-cert-price-bonus a {
  color: var(--hbg-gold);
  font-weight: 700;
}
.hbg-cert-price-badge {
  display: inline-block;
  background: var(--hbg-gold);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hbg-cert-price-fine {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  margin-top: 16px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .hbg-cert-card { grid-template-columns: 1fr; }
  .hbg-cert-features { grid-template-columns: 1fr; }
  .hbg-cert-text { padding: 32px 28px; }
  .hbg-cert-price { padding: 36px 28px; }
}

/* ============= Premium certificering-blok ============= */
.cert-premium {
  position: relative;
  background: linear-gradient(135deg, #fffaeb 0%, #fff 50%, #fffaeb 100%);
  border: 2px solid var(--hbg-gold);
  border-radius: var(--radius-lg);
  padding: 56px 48px 44px;
  box-shadow:
    0 24px 60px rgba(184,154,42,0.18),
    0 0 0 6px rgba(184,154,42,0.08);
  margin-top: 20px;
  overflow: visible;
}
.cert-premium::before,
.cert-premium::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--hbg-gold);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.cert-premium::before { top: -20px; left: -20px; }
.cert-premium::after { bottom: -20px; right: -20px; }

.cert-premium-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e3c25a 0%, #b89a2a 50%, #8f7820 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 9px 24px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(184,154,42,0.4);
  z-index: 2;
}

.cert-premium-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 44px;
  align-items: start;
}

.cert-premium-content { min-width: 0; }
.cert-premium-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #8f7820;
  background: rgba(184,154,42,0.16);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cert-premium-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  line-height: 1.25;
  color: var(--hbg-ink);
}
.cert-premium-intro {
  color: var(--hbg-text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.cert-premium-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-premium-list li {
  position: relative;
  padding-left: 26px;
  color: var(--hbg-text);
  font-size: 0.94rem;
  line-height: 1.55;
}
.cert-premium-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--hbg-gold);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cert-premium-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Rechter kolom: prijs + diploma */
.cert-premium-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.cert-premium-price {
  width: 100%;
  background: linear-gradient(135deg, var(--hbg-navy) 0%, var(--hbg-navy-dark) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(44,62,90,0.25);
}
.cert-premium-price-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.cert-premium-price-amount {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--hbg-gold);
  line-height: 1;
}
.cert-premium-price-amount small {
  font-size: 1.3rem;
  vertical-align: top;
  margin-left: 2px;
}
.cert-premium-price-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin: 4px 0 14px;
}
.cert-premium-price-bonus {
  font-size: 0.92rem;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}
.cert-premium-price-bonus a {
  color: var(--hbg-gold);
  font-weight: 700;
}
.cert-premium-price-badge {
  display: inline-block;
  background: var(--hbg-gold);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-right: 6px;
}

/* 3D tilt mini-certificaat */
.cert-premium-diploma {
  text-align: center;
  perspective: 1200px;
}
.cert-premium-diploma-tilt {
  display: inline-block;
  transform: rotateY(-12deg) rotateX(6deg) rotate(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: drop-shadow(0 18px 30px rgba(44,62,90,0.35));
}
.cert-premium-diploma-tilt:hover {
  transform: rotateY(0deg) rotateX(0deg) rotate(0deg) scale(1.06);
}
.cert-premium-diploma-tilt img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(184,154,42,0.3);
}
.cert-premium-diploma-caption {
  display: block;
  margin-top: 16px;
  color: var(--hbg-muted);
  font-size: 0.78rem;
  font-style: italic;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .cert-premium { padding: 50px 26px 32px; }
  .cert-premium-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cert-premium-aside { flex-direction: column-reverse; }
  .cert-premium-diploma-tilt {
    transform: rotate(-1.5deg);
  }
}

/* Hero brand-logo + watermark */
.hero { position: relative; overflow: hidden; }
.hero-brand-logo {
  display: block;
  height: 120px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(184, 154, 42, 0.18));
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 720px;
  max-width: 60vw;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(100%);
}
.hero-watermark-large {
  width: 900px;
  max-width: 80vw;
  opacity: 0.05;
  right: 50%;
  transform: translate(50%, -50%);
}

/* About-page brand-logo prominent boven de eyebrow */
.page-hero-branded { padding-top: 80px; position: relative; overflow: hidden; }
.about-hero-brand-logo {
  display: block;
  margin: 0 auto 30px;
  height: 140px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(184, 154, 42, 0.25));
}
@media (max-width: 720px) {
  .about-hero-brand-logo { height: 96px; margin-bottom: 22px; }
  .hero-watermark-large { display: none; }
}
.hero .container { position: relative; z-index: 1; }
@media (max-width: 820px) {
  .hero-brand-logo { height: 84px; margin-bottom: 18px; }
  .hero-watermark { display: none; }
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--hbg-text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover {
  background: var(--hbg-bg-soft);
  color: var(--hbg-ink);
}
.nav-links a.active {
  background: var(--hbg-navy);
  color: #fff;
}
.nav-cta {
  background: var(--hbg-navy) !important;
  color: #fff !important;
  padding: 10px 20px !important;
}
.nav-cta:hover {
  background: var(--hbg-navy-dark) !important;
}
/* 'Kies je pad' is de fallback / focus voor het algemeen-menu */
.nav-kies {
  background: rgba(184,154,42,0.14) !important;
  color: var(--hbg-gold) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(184,154,42,0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
}
.nav-kies:hover {
  background: var(--hbg-gold) !important;
  color: var(--hbg-navy-dark) !important;
  border-color: var(--hbg-gold) !important;
}
.nav-kies::before {
  content: '\21AA';
  font-size: 0.85em;
  opacity: 0.7;
}

/* ========== Future DISC badge (herbruikbaar) ========== */
.fdisc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  color: var(--hbg-navy-dark);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #d94545 0%, #e3c25a 33%, #4caf7a 66%, #3b82c4 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 24px rgba(44,62,90,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.fdisc-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(44,62,90,0.18);
  color: var(--hbg-navy-dark);
}
.fdisc-badge-flag {
  display: inline-block;
  background: linear-gradient(135deg, #d94545 0%, #b89a2a 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fdisc-badge-arrow {
  font-size: 1.05em;
  color: var(--hbg-gold);
  transition: transform 0.2s ease;
}
.fdisc-badge:hover .fdisc-badge-arrow {
  transform: translateX(4px);
}

/* Floating versie voor home-pages */
.fdisc-badge-floating {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 60;
  padding: 12px 22px 12px 16px;
  background: linear-gradient(135deg, #2c3e5a 0%, #1e2c44 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(44,62,90,0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fdisc-badge-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(44,62,90,0.40);
  color: #fff;
}
.fdisc-badge-floating .fdisc-badge-flag {
  background: var(--hbg-gold);
  color: var(--hbg-navy-dark);
}
@media (max-width: 720px) {
  .fdisc-badge-floating { bottom: 14px; right: 14px; padding: 10px 16px 10px 12px; font-size: 0.84rem; }
}
.nav-login {
  background: #d94545 !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(217,69,69,0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.nav-login:hover {
  background: #c23838 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217,69,69,0.4);
}
.nav-login svg {
  width: 14px; height: 14px;
  stroke-width: 2.4;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--hbg-ink);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--hbg-line);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
}

/* =============== Buttons =============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--hbg-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--hbg-navy-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--hbg-navy);
  border: 1.5px solid var(--hbg-navy);
}
.btn-outline:hover {
  background: var(--hbg-navy);
  color: #fff;
}
.btn-ghost {
  background: var(--hbg-bg-soft);
  color: var(--hbg-ink);
}
.btn-ghost:hover {
  background: var(--hbg-line);
}

/* =============== Hero =============== */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hbg-navy);
  background: rgba(30, 58, 95, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(184, 154, 42, 0.32) 60%);
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--hbg-text);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--hbg-muted);
}
.trust-dots {
  display: flex;
}
.trust-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: -4px;
  border: 2px solid #fff;
}
.trust-dots span:nth-child(1) {
  background: var(--disc-d);
}
.trust-dots span:nth-child(2) {
  background: var(--disc-i);
}
.trust-dots span:nth-child(3) {
  background: var(--disc-s);
}
.trust-dots span:nth-child(4) {
  background: var(--disc-c);
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 60px 0 40px;
  }
}

/* Decorative background shapes */
.bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.bg-shapes::before,
.bg-shapes::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.bg-shapes::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 154, 42, 0.42), transparent 70%);
  top: -80px;
  right: -60px;
}
.bg-shapes::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(44, 62, 90, 0.18), transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* =============== Sections =============== */
section {
  padding: 80px 0;
}
.section-soft {
  background: var(--hbg-bg-soft);
}
.section-cream {
  background: var(--hbg-bg-cream);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--hbg-muted);
}

/* =============== Cards =============== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  color: var(--hbg-muted);
  font-size: 0.97rem;
  margin: 0;
}
.card-d .icon-circle {
  background: rgba(217, 69, 69, 0.12);
  color: var(--disc-d);
}
.card-i .icon-circle {
  background: rgba(240, 180, 41, 0.18);
  color: var(--disc-i);
}
.card-s .icon-circle {
  background: rgba(76, 175, 122, 0.14);
  color: var(--disc-s);
}
.card-c .icon-circle {
  background: rgba(59, 130, 196, 0.14);
  color: var(--disc-c);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* =============== Feature blocks (alternating) =============== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}
.feature-text h2 {
  margin-bottom: 18px;
}
.feature-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.feature-text li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--hbg-text);
}
.feature-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hbg-navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-illustration {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--hbg-line);
}

@media (max-width: 820px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .feature-row.reverse {
    direction: ltr;
  }
}

/* =============== Stats =============== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 50px;
  background: var(--hbg-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  text-align: center;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* =============== Quote / Testimonial =============== */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.quote blockquote {
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--hbg-ink);
  font-weight: 500;
  margin: 0 0 24px;
  font-style: italic;
}
.quote-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hbg-muted);
  font-size: 0.95rem;
}
.quote-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--disc-i);
}

/* =============== CTA banner =============== */
.cta-banner {
  background: linear-gradient(135deg, var(--hbg-navy) 0%, var(--hbg-navy-soft) 100%);
  color: #fff;
  padding: 64px 50px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--hbg-navy);
}
.cta-banner .btn-primary:hover {
  background: var(--hbg-bg-soft);
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.cta-banner::before {
  width: 240px;
  height: 240px;
  background: var(--disc-i);
  top: -80px;
  right: -60px;
}
.cta-banner::after {
  width: 200px;
  height: 200px;
  background: var(--disc-s);
  bottom: -70px;
  left: -50px;
}

/* =============== Process timeline =============== */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hbg-line);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hbg-line);
}
.process-step h4 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}
.process-step p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--hbg-muted);
}
.step-icon {
  width: 42px;
  height: 42px;
}

/* =============== Form =============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact-info {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info h3 {
  margin-top: 0;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-info-item .ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--hbg-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hbg-navy);
  flex-shrink: 0;
}
.contact-info-item div strong {
  display: block;
  color: var(--hbg-ink);
  margin-bottom: 2px;
}
.contact-info-item div span {
  color: var(--hbg-muted);
  font-size: 0.95rem;
}

.form {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field {
  margin-bottom: 18px;
}
.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hbg-ink);
  margin-bottom: 6px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-sm);
  background: var(--hbg-bg-soft);
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--hbg-ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--hbg-navy);
  background: #fff;
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.form .form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--hbg-muted);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =============== Team =============== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  background: var(--hbg-bg-soft);
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h3 {
  margin: 6px 0 4px;
}
.team-role {
  color: var(--hbg-navy-soft);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.team-bio {
  color: var(--hbg-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* =============== Values =============== */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.value {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  border-left: 4px solid var(--hbg-navy);
}
.value:nth-child(4n + 1) {
  border-color: var(--disc-d);
}
.value:nth-child(4n + 2) {
  border-color: var(--disc-i);
}
.value:nth-child(4n + 3) {
  border-color: var(--disc-s);
}
.value:nth-child(4n + 4) {
  border-color: var(--disc-c);
}
.value h4 {
  margin: 0 0 6px;
}
.value p {
  margin: 0;
  color: var(--hbg-muted);
  font-size: 0.93rem;
}

/* =============== Footer =============== */
.site-footer {
  background: var(--hbg-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 36px 28px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.15s ease;
}
.site-footer a:hover {
  color: #fff;
}
.footer-address {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.55;
  display: block;
  margin-top: 12px;
  font-style: normal;
}
.footer-contactbar {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 26px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}
.footer-contactbar strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.footer-contactbar span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
.footer-contactbar a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.footer-contactbar a:hover {
  color: var(--hbg-gold);
}
.footer-contactbar .btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  margin-bottom: 0;
}
.footer-contactbar .btn-outline-light:hover {
  background: var(--hbg-gold);
  border-color: var(--hbg-gold);
  color: #fff;
}
@media (max-width: 720px) {
  .footer-contactbar {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 14px;
  }
  .footer-contactbar .btn-outline-light {
    justify-self: start;
  }
}

/* =============== Gratis funnel-assets sectie =============== */
.gratis-section {
  background: linear-gradient(180deg, #fffbf0 0%, #fff 100%);
  position: relative;
}
.gratis-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hbg-gold) 0%, #e3c25a 50%, var(--hbg-gold) 100%);
}
.gratis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.gratis-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid rgba(184,154,42,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(184,154,42,0.08);
}
.gratis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(184,154,42,0.22);
  border-color: var(--hbg-gold);
  color: inherit;
}
.gratis-card-featured {
  border-color: var(--hbg-gold);
  box-shadow: 0 8px 24px rgba(184,154,42,0.18);
  transform: translateY(-4px);
}
.gratis-card-featured:hover {
  transform: translateY(-10px);
}
.gratis-visual {
  position: relative;
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gratis-visual img {
  max-width: 70%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
  transition: transform 0.3s ease;
}
.gratis-card:hover .gratis-visual img {
  transform: scale(1.04) translateY(-2px);
}
.gratis-visual-ebook {
  background: radial-gradient(ellipse at top, #fff3c4 0%, #fffaeb 60%, #faf0c5 100%);
}
.gratis-visual-elearning {
  background: linear-gradient(135deg, #2c3e5a 0%, #1a2535 100%);
}
.gratis-visual-elearning img {
  max-width: 78%;
  max-height: 82%;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.4));
}
.gratis-visual-ticket {
  background: linear-gradient(135deg, #2c3e5a 0%, #4a5a78 100%);
  padding: 14px;
}
.gratis-visual-ticket img {
  max-width: 92%;
  max-height: 92%;
}
.gratis-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--hbg-gold);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  z-index: 2;
}
.gratis-badge-popular {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--hbg-navy);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}
.gratis-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gratis-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8f7820;
  margin-bottom: 10px;
}
.gratis-body h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--hbg-ink);
}
.gratis-body p {
  color: var(--hbg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.gratis-cta {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hbg-navy);
  margin-top: auto;
}
.gratis-card:hover .gratis-cta {
  color: var(--hbg-gold);
}
.gratis-rationale {
  text-align: center;
  margin: 36px auto 0;
  color: var(--hbg-muted);
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .gratis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gratis-card-featured {
    transform: none;
  }
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .brand small {
  color: rgba(255, 255, 255, 0.55);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.footer-bottom > span:last-child a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-bottom > span:last-child a:hover {
  color: var(--hbg-gold);
  border-bottom-color: var(--hbg-gold);
}
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom > span:last-child { white-space: normal; }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============== Login pagina (3 platform cards) =============== */
.login-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.login-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-md);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(44,62,90,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.login-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(44,62,90,0.12);
  border-color: rgba(184,154,42,0.4);
}
.login-card-highlight {
  border-color: rgba(184,154,42,0.45);
  box-shadow: 0 12px 30px rgba(184,154,42,0.12);
}
.login-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.login-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 10px;
}
.login-card h2 {
  font-size: 1.35rem;
  color: var(--hbg-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.login-card p {
  color: var(--hbg-muted);
  line-height: 1.55;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.login-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.88rem;
  color: var(--hbg-navy-soft);
}
.login-card-features li {
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.4;
}
.login-card-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hbg-gold);
}
.login-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}
.login-card-domain {
  display: block;
  font-size: 0.78rem;
  color: var(--hbg-muted);
  text-align: center;
  margin-top: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.01em;
}
.login-help {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 28px 32px;
  background: #f7f9fc;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-md);
}
.login-help-col h3 {
  font-size: 1rem;
  color: var(--hbg-ink);
  margin: 0 0 6px;
}
.login-help-col p {
  color: var(--hbg-muted);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}
.login-help-col a {
  color: var(--hbg-gold);
  text-decoration: none;
}
.login-help-col a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .login-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .login-help { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
}

/* =============== Legal article (algemene voorwaarden + privacy) =============== */
.legal-article h2 {
  font-size: 1.35rem;
  color: var(--hbg-navy-dark);
  margin-top: 38px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-article h2:first-of-type { margin-top: 6px; }
.legal-article p {
  color: var(--hbg-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal-article ul {
  margin: 0 0 18px 18px;
  padding: 0;
}
.legal-article li {
  color: var(--hbg-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.legal-article strong { color: var(--hbg-ink); }
.legal-article a { color: var(--hbg-gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-cta-row {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--hbg-line);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============== Page hero (smaller for non-home) =============== */
.page-hero {
  padding: 70px 0 40px;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  max-width: 760px;
  margin: 0 auto 16px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--hbg-muted);
  font-size: 1.1rem;
}

/* Decorative DISC dots row */
.disc-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 22px;
}
.disc-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.disc-row span:nth-child(1) {
  background: var(--disc-d);
}
.disc-row span:nth-child(2) {
  background: var(--disc-i);
}
.disc-row span:nth-child(3) {
  background: var(--disc-s);
}
.disc-row span:nth-child(4) {
  background: var(--disc-c);
}

/* =============== Photo gallery / Impressies =============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery a,
.gallery .gallery-tile {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 42, 0.18), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(44, 62, 90, 0.14), transparent 55%),
    var(--hbg-bg-soft);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery .gallery-tile.gallery-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23b89a2a' stroke-width='1.6' opacity='0.55'><rect x='10' y='14' width='44' height='36' rx='4'/><circle cx='22' cy='26' r='4'/><path d='M10 42 L24 30 L34 38 L44 28 L54 36 L54 50 L10 50 Z' fill='%23b89a2a' opacity='0.18' stroke='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px 56px;
  pointer-events: none;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s ease;
  display: block;
}
.gallery a:hover img,
.gallery .gallery-tile:hover img {
  transform: scale(1.05);
}
.gallery .tile-1 { grid-column: span 3; grid-row: span 2; }
.gallery .tile-2 { grid-column: span 3; grid-row: span 1; }
.gallery .tile-3 { grid-column: span 2; grid-row: span 1; }
.gallery .tile-4 { grid-column: span 2; grid-row: span 2; }
.gallery .tile-5 { grid-column: span 2; grid-row: span 1; }
.gallery .tile-6 { grid-column: span 2; grid-row: span 1; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 30, 50, 0.85) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery a:hover .gallery-caption,
.gallery .gallery-tile:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 820px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery .tile-1,
  .gallery .tile-2,
  .gallery .tile-3,
  .gallery .tile-4,
  .gallery .tile-5,
  .gallery .tile-6 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery .tile-1, .gallery .tile-4 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* =============== Founders hero (samen op één foto) =============== */
.founders-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.founders-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 42, 0.2), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(44, 62, 90, 0.18), transparent 60%),
    var(--hbg-bg-soft);
  aspect-ratio: 4 / 5;
  position: relative;
}
.founders-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
/* Caption-overlay verwijderd. Gebruik een gewone <div class="hero-photo-caption"> in HTML als je een onderschrift wil. */
.founders-hero-image:has(img[src=""]):after,
.founders-hero-image .ph-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184, 154, 42, 0.6);
}
@media (max-width: 820px) {
  .founders-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founders-hero-image {
    aspect-ratio: 4 / 3;
  }
}

/* =============== Uitgebreide team card =============== */
.team-grid.team-grid-large {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-card.team-card-rich {
  text-align: left;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card.team-card-rich .photo-wide {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hbg-bg-soft);
  position: relative;
}
.team-card.team-card-rich .photo-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}
.team-card.team-card-rich:hover .photo-wide img {
  transform: scale(1.04);
}
.team-card.team-card-rich .card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card.team-card-rich h3 {
  margin: 0 0 4px;
}
.team-card.team-card-rich .team-role {
  margin-bottom: 18px;
}
.team-card.team-card-rich .team-bio {
  flex: 1;
}
.team-card.team-card-rich .team-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.team-card.team-card-rich .team-actions .btn {
  padding: 9px 18px;
  font-size: 0.88rem;
}
@media (max-width: 820px) {
  .team-grid.team-grid-large {
    grid-template-columns: 1fr;
  }
}

/* =============== HBG USP-blok (geel/goud highlight) =============== */
.hbg-usp {
  position: relative;
  background: linear-gradient(135deg, #faf4d6 0%, #f5e9b3 100%);
  border: 1px solid rgba(184, 154, 42, 0.3);
  border-left: 6px solid var(--hbg-gold);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hbg-usp::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184, 154, 42, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hbg-usp .eyebrow {
  background: rgba(184, 154, 42, 0.22);
  color: #6e5c19;
  margin-bottom: 14px;
}
.hbg-usp h3 {
  margin: 0 0 10px;
  color: var(--hbg-ink);
  font-size: 1.5rem;
}
.hbg-usp p {
  margin: 0 0 22px;
  color: #4a4220;
  font-size: 1.05rem;
  max-width: 720px;
}
.hbg-usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.hbg-usp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hbg-usp-item .usp-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--hbg-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hbg-usp-item strong {
  display: block;
  color: var(--hbg-ink);
  margin-bottom: 2px;
}
.hbg-usp-item span {
  color: #5a4f25;
  font-size: 0.92rem;
}
@media (max-width: 720px) {
  .hbg-usp-grid { grid-template-columns: 1fr; }
  .hbg-usp { padding: 28px 26px; }
}

/* =============== Partner-cards (trainingspartners) =============== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}
@media (max-width: 520px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner-card {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.partner-card.partner-empty {
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 42, 0.1), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(44, 62, 90, 0.06), transparent 60%),
    var(--hbg-bg-soft);
  border-style: dashed;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  min-height: 380px;
}
.partner-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--hbg-line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.partner-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--hbg-bg-soft);
  color: var(--hbg-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.partner-name {
  flex: 1;
}
.partner-name h3 {
  margin: 0 0 2px;
  font-size: 1.2rem;
}
.partner-name span {
  font-size: 0.85rem;
  color: var(--hbg-muted);
}
.partner-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.partner-pitch {
  color: var(--hbg-text);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.55;
}

/* Two-option layout within a partner card (1-daagse / 2-daagse) */
.partner-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.partner-option {
  background: var(--hbg-bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-option .opt-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hbg-muted);
  font-weight: 600;
}
.partner-option .opt-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hbg-ink);
  letter-spacing: -0.01em;
}
.partner-option .opt-sub {
  font-size: 0.85rem;
  color: var(--hbg-muted);
}
@media (max-width: 480px) {
  .partner-options { grid-template-columns: 1fr; }
}

.partner-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--hbg-text);
}
.partner-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-meta-row svg {
  flex-shrink: 0;
  color: var(--hbg-navy-soft);
}

.partner-footer {
  padding: 20px 28px 26px;
  background: var(--hbg-bg-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-footer .btn { width: 100%; justify-content: center; }
.partner-footer .footer-note {
  font-size: 0.82rem;
  color: var(--hbg-muted);
  text-align: center;
  margin: 0;
}

.partner-card.partner-empty .empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.partner-card.partner-empty h3 {
  font-size: 1.1rem;
  color: var(--hbg-ink);
  margin-bottom: 8px;
}
.partner-card.partner-empty p {
  color: var(--hbg-muted);
  font-size: 0.95rem;
  margin: 0 0 18px;
  max-width: 280px;
}

/* =============== Vision block (groot citaat over de missie) =============== */
.vision-block {
  background: linear-gradient(135deg, var(--hbg-navy) 0%, var(--hbg-navy-soft) 100%);
  color: #fff;
  padding: 72px 56px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.vision-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 154, 42, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(184, 154, 42, 0.12), transparent 50%);
  pointer-events: none;
}
.vision-block::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 520px;
  height: 360px;
  background: url('../img/hbg/hbg-logo.png') no-repeat center/contain;
  opacity: 0.06;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
@media (max-width: 720px) {
  .vision-block::after { display: none; }
}
.vision-block .quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--hbg-gold);
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
.vision-block .vision-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(184, 154, 42, 0.22);
  color: var(--hbg-gold);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.vision-block h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin: 0 0 24px;
  font-weight: 600;
  font-style: italic;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.vision-block h2 em {
  color: var(--hbg-gold);
  font-style: italic;
}
.vision-block p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.vision-block .vision-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.vision-block .btn-primary {
  background: var(--hbg-gold);
  color: var(--hbg-ink);
}
.vision-block .btn-primary:hover { background: #d4b94a; }
.vision-block .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.vision-block .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
@media (max-width: 720px) {
  .vision-block { padding: 48px 28px; }
}

/* =============== HBG-lied (audio player) =============== */
.hbg-song {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.hbg-song .song-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--hbg-bg-soft);
  position: relative;
}
.hbg-song .song-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hbg-song .song-cover .play-indicator {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hbg-song:hover .play-indicator { opacity: 1; }
.hbg-song .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hbg-song .song-body { display: flex; flex-direction: column; gap: 8px; }
.hbg-song .song-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hbg-gold);
  font-weight: 600;
}
.hbg-song h3 { margin: 0; font-size: 1.4rem; }
.hbg-song .song-quote {
  color: var(--hbg-text);
  font-style: italic;
  font-size: 0.97rem;
  margin: 4px 0 0;
  line-height: 1.5;
}
.hbg-song audio {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 720px) {
  .hbg-song { grid-template-columns: 1fr; }
  .hbg-song .song-cover { max-width: 280px; margin: 0 auto; }
}

/* =============== Partner tier sections =============== */
.partner-tier {
  padding: 70px 0;
  border-top: 1px solid var(--hbg-line);
}
.partner-tier:first-of-type { border-top: 0; }
.partner-tier-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.partner-tier-badge {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--hbg-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px;
}
.partner-tier-badge img { width:100%; height:100%; object-fit: contain; display:block; }
.partner-tier-info { flex: 1; min-width: 240px; }
.partner-tier-info h2 { margin: 0 0 6px; font-size: 1.6rem; }
.partner-tier-info p { margin: 0; color: var(--hbg-muted); font-size: 0.97rem; max-width: 720px; }

.partner-people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}
.partner-person {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-person:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.partner-person .pp-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--hbg-bg-soft);
}
.partner-person .pp-image img { width:100%; height:100%; object-fit: cover; display:block; }
.partner-person .pp-body { padding: 18px 22px 22px; }
.partner-person .pp-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.partner-person .pp-role { color: var(--hbg-muted); font-size: 0.85rem; }
.partner-person .pp-target { color: var(--hbg-navy-soft); font-size: 0.78rem; margin-top: 6px; font-style: italic; }

/* Label chips voor partners */
.pp-labels { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.pp-label {
  display: inline-flex; align-items: center;
  font-size: 0.65rem; padding: 2px 8px;
  border-radius: 999px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.6;
}
.pp-label-founding { background: rgba(76, 56, 156, 0.14); color: #5638a3; }
.pp-label-mission { background: rgba(76, 175, 122, 0.16); color: #2f8557; }
.pp-label-business { background: rgba(59, 130, 196, 0.14); color: #1f6aa8; }
.pp-label-ambassador { background: rgba(217, 69, 69, 0.12); color: #d94545; }
.pp-label-platform { background: rgba(184, 154, 42, 0.18); color: #8f7820; }
.partner-person.partner-placeholder {
  border-style: dashed;
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 42, 0.10), transparent 60%),
    var(--hbg-bg-soft);
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  min-height: 320px;
}
.partner-person.partner-placeholder .pp-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.partner-person.partner-placeholder h3 { font-size: 1rem; color: var(--hbg-ink); }
.partner-person.partner-placeholder p { color: var(--hbg-muted); font-size: 0.88rem; margin: 6px 0 0; }

/* =============== Gratis instap-product (Universele DISC) =============== */
.gratis-product {
  position: relative;
  background: linear-gradient(135deg, #fff8e0 0%, #f5e9b3 100%);
  border: 2px solid rgba(184, 154, 42, 0.4);
  border-radius: var(--radius-xl);
  padding: 56px 50px;
  overflow: hidden;
}
.gratis-product::before {
  content: "100% GRATIS";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--hbg-gold);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}
.gratis-product::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 42, 0.25), transparent 70%);
  pointer-events: none;
}
.gratis-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.gratis-product-text .eyebrow {
  background: rgba(184, 154, 42, 0.22);
  color: #6e5c19;
}
.gratis-product-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--hbg-ink);
  line-height: 1.2;
  margin: 0 0 16px;
}
.gratis-product-text p {
  color: #4a4220;
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.gratis-product-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.gratis-product-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: #4a4220;
  line-height: 1.4;
}
.gratis-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hbg-gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.gratis-product-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.gratis-product-image img { width:100%; height:100%; object-fit: cover; display:block; }
@media (max-width: 820px) {
  .gratis-product { padding: 40px 28px; }
  .gratis-product-grid { grid-template-columns: 1fr; gap: 24px; }
  .gratis-product-list { grid-template-columns: 1fr; }
}

/* =============== Product-detail (per assessment) =============== */
.product-section {
  padding: 90px 0;
}
.product-section .feature-row {
  margin-bottom: 0;
}
.product-section .feature-illustration {
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-section .feature-illustration img {
  border-radius: 8px;
  max-height: 420px;
  width: auto;
  object-fit: contain;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-tag-d  { background: rgba(217, 69, 69, 0.14); color: #a13434; }
.product-tag-i  { background: rgba(184, 154, 42, 0.16); color: #8f7820; }
.product-tag-s  { background: rgba(76, 175, 122, 0.16); color: #2f8557; }
.product-tag-c  { background: rgba(59, 130, 196, 0.14); color: #1f6aa8; }
.product-tag-navy { background: rgba(44, 62, 90, 0.10); color: var(--hbg-navy); }

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--hbg-line);
}
.product-feature-block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hbg-muted);
  margin: 0 0 10px;
}
.product-feature-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-feature-block li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--hbg-text);
}
.product-feature-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b89a2a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .product-features { grid-template-columns: 1fr; }
}

.sample-report-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--hbg-bg-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hbg-navy);
  text-decoration: none;
  border: 1px solid var(--hbg-line);
  transition: background 0.15s, color 0.15s;
}
.sample-report-link:hover {
  background: var(--hbg-navy);
  color: #fff;
  border-color: var(--hbg-navy);
}

/* Driving forces wheel for WHY Index */
.driving-forces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.driving-force {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-md);
}
.driving-force .df-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.driving-force strong {
  display: block;
  font-size: 0.93rem;
  color: var(--hbg-ink);
  margin-bottom: 2px;
}
.driving-force span {
  font-size: 0.85rem;
  color: var(--hbg-muted);
}
@media (max-width: 600px) {
  .driving-forces-grid { grid-template-columns: 1fr; }
}

/* Other-assessments (sub-cards for GAP, Team Evaluator, Employee Surveys) */
.sub-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.sub-product {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sub-product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sub-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hbg-bg-soft);
}
.sub-product-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sub-product-body { padding: 22px 26px 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.sub-product-body h3 { margin: 0; font-size: 1.15rem; }
.sub-product-body .sub-pitch { margin: 0; color: var(--hbg-text); font-size: 0.92rem; line-height: 1.55; }
.sub-product-body ul { list-style: none; padding: 0; margin: 0; }
.sub-product-body li {
  position: relative; padding-left: 20px; font-size: 0.85rem; color: var(--hbg-muted); margin-bottom: 5px;
}
.sub-product-body li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--hbg-gold); opacity: 0.6;
}

/* Anchor-card pointing into detail section */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
.card.card-anchor {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card.card-anchor:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(44, 62, 90, 0.14);
  border-color: var(--hbg-gold);
}
.card.card-anchor:hover h3 { color: var(--hbg-navy); }
.card.card-anchor::after {
  content: "Lees meer ↓";
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hbg-navy-soft);
  letter-spacing: 0.04em;
}
.card.card-anchor:hover::after { color: var(--hbg-gold); }

/* RAW-10 pijlers (Robuust, Authentiek, Winnen) */
.raw-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.raw-pillar {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.raw-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.raw-pillar-r::before { background: #d94545; }
.raw-pillar-a::before { background: #b89a2a; }
.raw-pillar-w::before { background: #2f8557; }
.raw-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.raw-pillar-r .raw-letter { background: #d94545; }
.raw-pillar-a .raw-letter { background: #b89a2a; }
.raw-pillar-w .raw-letter { background: #2f8557; }
.raw-pillar h3 { margin-bottom: 10px; }
.raw-pillar p { color: var(--hbg-muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 720px) {
  .raw-pillars { grid-template-columns: 1fr; }
}

/* 10 stappen */
.raw-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.raw-step {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-md);
  padding: 18px 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.raw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hbg-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.raw-step strong { font-size: 0.95rem; color: var(--hbg-ink); }
.raw-step span:last-child { color: var(--hbg-muted); font-size: 0.82rem; line-height: 1.45; }
@media (max-width: 1024px) { .raw-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .raw-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .raw-steps { grid-template-columns: 1fr; } }

/* 5-card grid voor analyses */
.card-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .card-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .card-grid-5 { grid-template-columns: 1fr; }
}

/* =============== Persona cards (Voor wie?) =============== */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
@media (max-width: 520px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}
.persona-card {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.persona-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--hbg-bg-soft);
}
.persona-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.persona-card:hover .persona-image img { transform: scale(1.04); }
.persona-body { padding: 26px 28px 28px; display:flex; flex-direction:column; flex:1; gap:16px; }
.persona-body h3 { margin:0; font-size: 1.25rem; }
.persona-body .persona-pitch { color: var(--hbg-text); margin:0; font-size:0.97rem; line-height:1.55; }
.persona-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--hbg-line);
  margin-top: auto;
}
.persona-tabs button {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 4px;
  font: 600 0.83rem/1 var(--font-sans);
  color: var(--hbg-muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s, border-color 0.15s;
}
.persona-tabs button.active {
  color: var(--hbg-navy);
  border-bottom-color: var(--hbg-gold);
}
.persona-tabs button:hover:not(.active) { color: var(--hbg-ink); }
.persona-panes { min-height: 160px; }
.persona-pane { display: none; }
.persona-pane.active { display: block; }
.persona-pane ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.persona-pane li {
  position: relative; padding-left: 22px;
  font-size: 0.92rem; color: var(--hbg-text); line-height: 1.5;
}
.persona-pane li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--hbg-gold);
  opacity: 0.85;
}

/* =============== Area cards met afbeelding =============== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--hbg-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-image {
  width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--hbg-bg-soft);
}
.area-image img { width:100%; height:100%; object-fit: cover; display:block; transition: transform 0.4s ease; }
.area-card:hover .area-image img { transform: scale(1.04); }
.area-body { padding: 22px 24px 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.area-body h3 { margin:0; font-size:1.15rem; }
.area-body .area-pitch { margin: 0; color: var(--hbg-text); font-size: 0.93rem; line-height: 1.55; }
.area-tools {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hbg-line);
}
.area-tool-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(184, 154, 42, 0.12);
  color: #6e5c19;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-transform: uppercase;
}

/* =============== Assessment showcase met Ensize-product-beelden =============== */
.product-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hbg-line);
}
.product-strip-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-strip-item img {
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-strip-item strong {
  font-size: 0.85rem;
  color: var(--hbg-ink);
  letter-spacing: 0.02em;
}

/* =============== Two-column flexible grid =============== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: center;
}
@media (max-width: 820px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
}

/* =============== Wide highlight image (groep / partners) =============== */
.image-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 42, 0.18), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(44, 62, 90, 0.14), transparent 55%),
    var(--hbg-bg-soft);
  aspect-ratio: 3 / 2;
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.image-band .band-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 30, 50, 0.78) 100%);
  color: #fff;
}
.image-band .band-caption h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.1rem;
}
.image-band .band-caption p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
@media (max-width: 820px) {
  .image-band { aspect-ratio: 4 / 3; }
}

/* Utility */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

/* =============== VIDEO EMBED (lite YouTube, privacy-vriendelijk) =============== */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--hbg-navy-dark);
  box-shadow: 0 18px 44px rgba(44,62,90,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-embed:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(44,62,90,0.26);
}
.video-embed-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-embed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(44,62,90,0.30) 0%, rgba(44,62,90,0.55) 100%);
  color: #fff;
  text-align: center;
  padding: 24px;
}
.video-embed-play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.30);
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-embed:hover .video-embed-play {
  transform: scale(1.08);
  background: var(--hbg-gold);
}
.video-embed-play svg {
  width: 30px; height: 30px;
  fill: var(--hbg-navy-dark);
  margin-left: 4px;
}
.video-embed-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(184,154,42,0.92);
  color: var(--hbg-navy-dark);
  padding: 5px 14px;
  border-radius: 999px;
}
.video-embed-title {
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 480px;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.video-embed-duration {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* Wanneer geactiveerd: iframe vult de container */
.video-embed.is-active { cursor: default; }
.video-embed.is-active .video-embed-overlay,
.video-embed.is-active .video-embed-poster { display: none; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Placeholder als er nog geen YouTube-ID is */
.video-embed[data-yt=""] .video-embed-overlay,
.video-embed:not([data-yt]) .video-embed-overlay {
  cursor: not-allowed;
}
.video-embed[data-yt=""] .video-embed-play,
.video-embed:not([data-yt]) .video-embed-play {
  background: rgba(255,255,255,0.40);
  opacity: 0.6;
}
.video-embed[data-yt=""] .video-embed-play svg,
.video-embed:not([data-yt]) .video-embed-play svg {
  fill: rgba(44,62,90,0.6);
}
.video-embed-pending {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(44,62,90,0.85);
  color: #fff;
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: left;
  line-height: 1.4;
  display: none;
}
.video-embed[data-yt=""] .video-embed-pending,
.video-embed:not([data-yt]) .video-embed-pending { display: block; }
.video-embed-pending strong { color: #e3c25a; }

/* =====================================================================
   MOBILE SAFETY-NET (max-width: 640px)
   ---------------------------------------------------------------------
   Vangt inline-style grids en padding op die niet via class+media-query
   afgehandeld worden. Dwingt 3-col grids naar 1-col, en reduceert grote
   inline padding op narrow phones. Specificity via !important is hier
   bewust: het overrides inline styles op pagina-niveau zonder ze stuk
   voor stuk te hoeven aanpassen.
   ===================================================================== */
@media (max-width: 640px) {

  /* Inline 3-col grids → 1-col */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  /* Grote inline-padding terugbrengen */
  [style*="padding:60px"], [style*="padding: 60px"],
  [style*="padding:48px"], [style*="padding: 48px"] {
    padding: 26px !important;
  }
  [style*="padding:44px 40px"], [style*="padding: 44px 40px"],
  [style*="padding:40px 36px"], [style*="padding: 40px 36px"],
  [style*="padding:36px 40px"], [style*="padding: 36px 40px"] {
    padding: 26px 22px !important;
  }
  [style*="padding:32px"], [style*="padding: 32px"] {
    padding: 22px !important;
  }

  /* Padding op .reis-pitch-hero en -body (leiderschapsreizen) */
  .reis-pitch-hero { padding: 22px 22px !important; aspect-ratio: 16/10 !important; }
  .reis-pitch-hero h3 { font-size: 1.4rem !important; }
  .reis-pitch-body { padding: 24px 22px 26px !important; }
  .reis-pitch-days { grid-template-columns: 1fr !important; }
  .reis-pitch-grid { grid-template-columns: 1fr !important; }
  .reis-pitch-cta { flex-direction: column; align-items: flex-start !important; }
  .reis-pitch-cta a { width: 100%; justify-content: center; }

  /* Pull-quote: kleinere font */
  [style*="font-size:1.05rem"] { font-size: 0.98rem !important; }
  [style*="font-size:1.18rem"] { font-size: 1.04rem !important; }
  [style*="font-size:1.32rem"] { font-size: 1.12rem !important; }

  /* Hero-titel font-size cappen op mobile */
  .page-hero h1 { font-size: clamp(1.55rem, 6vw, 2rem) !important; line-height: 1.15 !important; }
  .page-hero p { font-size: 0.98rem !important; }

  /* Section-head h2 op mobile */
  .section-head h2 { font-size: clamp(1.4rem, 5vw, 1.7rem) !important; }

  /* Cards: kleinere padding op mobile */
  .card { padding: 22px 20px !important; }
  .vision-block { padding: 26px 22px !important; }
  .vision-block h2 { font-size: clamp(1.3rem, 5vw, 1.7rem) !important; }
  .cta-banner { padding: 26px 22px !important; }
  .cta-banner h2 { font-size: clamp(1.3rem, 5vw, 1.7rem) !important; }

  /* Footer: stack contactbar */
  .footer-contactbar { flex-direction: column; align-items: flex-start !important; gap: 14px; }

  /* Buttons: full-width op mobile als ze in een flex zitten */
  .hero-cta { flex-direction: column; align-items: stretch !important; }
  .hero-cta .btn { width: 100%; text-align: center; }

  /* Founders-hero (4:5 portrait) wordt al opgevangen door bestaande media query */

  /* Tabellen die horizontaal scrollen op smal scherm */
  .container table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Te grote inline-radius border-radius op cards beperken niet nodig, ziet er goed uit */
}

/* Iets ruimer max-width voor inline form-blocks */
@media (max-width: 760px) {
  [style*="max-width:920px"], [style*="max-width:980px"], [style*="max-width:1040px"], [style*="max-width:1080px"], [style*="max-width:1180px"] {
    max-width: 100% !important;
  }
}
