/* ============================================================
   Begeleiding page — op maat bovenop site.css
   ============================================================ */

/* ---- Hero ---- */
.bg-hero {
  padding-block: clamp(56px, 6vw, 96px) clamp(40px, 4vw, 64px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 90% at 80% 0%, color-mix(in oklch, var(--brand-orange) 14%, transparent), transparent 60%),
    var(--bg-app);
}
.bg-hero__crumb {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--fg-3);
  margin-bottom: 24px;
}
.bg-hero__crumb a { color: var(--fg-3); }
.bg-hero__crumb a:hover { color: var(--brand-navy); }
.bg-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--brand-navy-200);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 22px;
}
.bg-hero__tag .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--brand-orange);
}
.bg-hero h1 {
  font-size: clamp(2.25rem, 1.2rem + 3.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--brand-navy-800);
  max-width: 20ch;
  margin-bottom: 24px;
}
.bg-hero__lede {
  font-size: clamp(1.0625rem, 0.9rem + 0.5vw, 1.25rem);
  color: var(--fg-3);
  max-width: 58ch;
  line-height: 1.55;
  margin-bottom: 32px;
}

/* ---- Why us / approach ---- */
.bg-approach {
  padding-block: clamp(60px, 6vw, 96px);
  background: var(--bg-surface-2);
}
.bg-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.bg-approach__card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bg-approach__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bg-approach__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy-800);
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 20ch;
}
.bg-approach__card p {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) { .bg-approach__grid { grid-template-columns: 1fr; } }

/* ---- Process — vertical timeline ---- */
.bg-process { padding-block: clamp(60px, 6vw, 96px); }
.bg-timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 36px;
}
.bg-timeline::before {
  content: "";
  position: absolute;
  left: 13px; top: 10px; bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--brand-navy-200) 0 6px, transparent 6px 12px);
}
.bg-timeline__step {
  position: relative;
  padding-bottom: 36px;
  padding-left: 14px;
}
.bg-timeline__step:last-child { padding-bottom: 0; }
.bg-timeline__dot {
  position: absolute;
  left: -37px; top: 2px;
  width: 28px; height: 28px;
  background: #fff;
  border: 2px solid var(--brand-navy);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--brand-navy);
  box-shadow: 0 0 0 4px var(--bg-app);
}
.bg-timeline__step.is-active .bg-timeline__dot {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}
.bg-timeline__step h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--brand-navy-800);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.bg-timeline__step h3 small {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  margin-left: 10px;
  text-transform: uppercase;
}
.bg-timeline__step p {
  font-size: 15px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0;
  max-width: 58ch;
}

/* ---- What you get ---- */
.bg-deliv {
  padding-block: clamp(60px, 6vw, 96px);
  background: var(--brand-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.bg-deliv::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(235,120,14,0.22), transparent 70%);
  z-index: -1;
}
.bg-deliv h2 { color: #fff; max-width: 22ch; margin-bottom: 16px; }
.bg-deliv .eyebrow { color: var(--brand-orange-300); }
.bg-deliv .eyebrow .dot { background: var(--brand-orange); }
.bg-deliv > .container > .row > div > p {
  color: rgba(255,255,255,0.8); max-width: 52ch; font-size: 1.0625rem;
}
.bg-deliv__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.bg-deliv__item {
  display: flex; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  align-items: flex-start;
}
.bg-deliv__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.bg-deliv__ico > svg {
  width: 18px !important; height: 18px !important;
  stroke: #fff !important; stroke-width: 2;
  display: block; margin: 0 !important;
}
.bg-deliv__item b {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.bg-deliv__item span {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ---- For whom — audience card ---- */
.bg-fit { padding-block: clamp(60px, 6vw, 96px); }
.bg-fit__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.bg-fit__card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 28px;
}
.bg-fit__card--yes { border-color: color-mix(in oklch, var(--success) 40%, transparent); }
.bg-fit__card--no  { background: var(--bg-surface-2); }
.bg-fit__head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
  margin-bottom: 16px;
  color: var(--fg-1);
}
.bg-fit__head .tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px;
}
.bg-fit__card--yes .tag { background: var(--success-bg); color: var(--success-fg); }
.bg-fit__card--no  .tag { background: var(--neutral-100); color: var(--fg-3); }
.bg-fit__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.bg-fit__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.5;
  color: var(--fg-2);
}
.bg-fit__list li svg { flex: none; margin-top: 4px; }
.bg-fit__card--yes .bg-fit__list li svg { color: var(--success); }
.bg-fit__card--no  .bg-fit__list { color: var(--fg-3); }
.bg-fit__card--no  .bg-fit__list li svg { color: var(--fg-4); }
@media (max-width: 768px) { .bg-fit__grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.bg-faq { padding-block: clamp(60px, 6vw, 96px); background: var(--bg-surface-2); }
.bg-faq__list { display: grid; gap: 12px; margin-top: 40px; max-width: 760px; }
.bg-faq__item {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.bg-faq__item[open] { border-color: var(--brand-navy-200); }
.bg-faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  font-weight: 600; font-size: 15.5px;
  color: var(--fg-1);
  cursor: pointer;
  list-style: none;
}
.bg-faq__q::-webkit-details-marker { display: none; }
.bg-faq__q::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid var(--fg-3);
  border-bottom: 2px solid var(--fg-3);
  transform: rotate(45deg);
  transition: transform var(--dur-base) var(--ease-out);
  flex: none;
}
.bg-faq__item[open] .bg-faq__q::after { transform: rotate(-135deg); margin-top: 4px; }
.bg-faq__a {
  padding: 0 22px 20px;
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- Contact form ---- */
.bg-contact {
  padding-block: clamp(60px, 6vw, 96px);
  background:
    radial-gradient(ellipse at bottom, var(--brand-orange-50), transparent 60%),
    var(--bg-app);
}
.bg-contact__card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 992px) { .bg-contact__card { grid-template-columns: 1fr; } }

.bg-contact__left h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy-800);
  margin-bottom: 14px;
  max-width: 18ch;
}
.bg-contact__left p {
  color: var(--fg-3); font-size: 15.5px; line-height: 1.6;
  max-width: 42ch; margin: 0 0 24px;
}
.bg-contact__perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.bg-contact__perks li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--fg-2);
}
.bg-contact__perks li svg { color: var(--brand-orange); flex: none; margin-top: 3px; }

.bg-contact__form { display: grid; gap: 16px; }
.bg-form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 576px) { .bg-form__row { grid-template-columns: 1fr; } }
.bg-form__field { display: flex; flex-direction: column; gap: 6px; }
.bg-form__field label {
  font-size: 13px; font-weight: 600; color: var(--fg-2);
}
.bg-form__field input,
.bg-form__field textarea,
.bg-form__field select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-1);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.bg-form__field input:focus,
.bg-form__field textarea:focus,
.bg-form__field select:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-focus);
}
.bg-form__field textarea { resize: vertical; min-height: 110px; }
.bg-form__consent {
  font-size: 12.5px; color: var(--fg-3); line-height: 1.5;
}
.bg-form__consent a { color: var(--brand-navy); font-weight: 500; }
.bg-contact__form button[type=submit] {
  margin-top: 4px;
  justify-content: center;
}

/* ---- Founder strip ---- */
.bg-founder {
  margin-top: 24px;
  padding: 18px;
  background: var(--brand-orange-50);
  border: 1px solid color-mix(in oklch, var(--brand-orange) 22%, transparent);
  border-radius: var(--r-lg);
  display: flex; gap: 14px; align-items: center;
}
.bg-founder__avatar {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 700; font-size: 16px;
  display: grid; place-items: center;
  flex: none;
  overflow: hidden;
}
.bg-founder__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}
.bg-founder p { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.bg-founder b { color: var(--fg-1); display: block; font-size: 13px; }
