/* ===========================
   RVB Coaching — Stylesheet
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:      #1e3a2f;
  --green-mid:  #2d5241;
  --green-light:#3a6b54;
  --offwhite:   #f7f4ef;
  --offwhite-2: #eeeae3;
  --gold:       #c9a84c;
  --gold-light: #dfc278;
  --dark:       #141414;
  --text:       #2a2a2a;
  --text-muted: #6b6b6b;
  --white:      #ffffff;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);

  --transition: 0.3s ease;
  --max-w:      1140px;
  --section-py: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--green);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--dark {
  background-color: var(--green);
  color: var(--offwhite);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--offwhite); }

.section--alt { background-color: var(--offwhite-2); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-intro p { font-size: 1.05rem; color: var(--text-muted); }
.section--dark .section-intro p { color: rgba(247,244,239,0.75); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background-color: var(--green);
  color: var(--offwhite);
  transform: translateY(-2px);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--offwhite);
  border-color: var(--offwhite);
}
.btn--outline-light:hover {
  background-color: var(--offwhite);
  color: var(--green);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background-color: rgba(30, 58, 47, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 38px;
  width: auto;
  display: block;
}
/* Legacy text fallback (unused but kept for reference) */
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247,244,239,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background-color: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--offwhite); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta {
  padding: 10px 22px !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background-color: var(--offwhite);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background-color: var(--green);
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(247,244,239,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(247,244,239,0.85);
  border-bottom: 1px solid rgba(247,244,239,0.08);
  transition: color var(--transition);
}
.nav__mobile a:hover,
.nav__mobile a.active { color: var(--gold); }
.nav__mobile .btn {
  margin-top: 12px;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--green);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(58,107,84,0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,239,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,239,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background-color: var(--gold);
}

.hero h1 {
  color: var(--offwhite);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(247,244,239,0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,244,239,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(247,244,239,0.4), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background-color: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card h3 { margin-bottom: 12px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Stats bar --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(247,244,239,0.1);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.9rem;
  color: rgba(247,244,239,0.7);
}
.stat__number--text {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  letter-spacing: 0.02em;
}

/* --- Process steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.2));
}

.step {
  padding: 0 24px;
  text-align: center;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.step h4 { color: var(--green); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Quote / Blockquote --- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background-color: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green);
  font-style: italic;
  line-height: 1.5;
}

/* --- Profile / About split --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__image { order: 2; }
.split--reverse .split__text  { order: 1; }

.split__image {
  position: relative;
}
.split__image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__image-placeholder {
  font-size: 5rem;
  opacity: 0.3;
}
.split__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--gold);
  color: var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 700;
  font-family: var(--font-head);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}
.split__image-badge span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}
.split__image-badge small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split__text h2 { margin-bottom: 20px; }
.split__text .section-label { margin-bottom: 12px; }

/* --- Values list --- */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-item__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.value-item h4 { margin-bottom: 4px; font-size: 1rem; }
.value-item p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* --- Tarieven --- */
.tarieven-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.tarieven-label__num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tarieven-label__text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gratis blok */
.gratis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gratis-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.gratis-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(247,244,239,0.85);
}
.gratis-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.gratis-box {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.gratis-box__price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.gratis-box__sub {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.6);
  margin-bottom: 20px;
}
.gratis-box__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(247,244,239,0.75);
}
.gratis-box__meta span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--offwhite-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}
.pricing-card__header {
  background-color: var(--green);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-card--featured .pricing-card__header {
  background: linear-gradient(135deg, var(--green-mid), var(--green));
}
.pricing-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--offwhite);
}
.pricing-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(201,168,76,0.2);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
}
.pricing-badge--featured {
  background-color: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.pricing-card__body {
  background: var(--white);
  padding: 28px;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-card__pm {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-card__divider {
  height: 1px;
  background: var(--offwhite-2);
  margin: 20px 0;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-card__features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.pricing-card__cta {
  padding: 20px 28px 28px;
  background: var(--white);
  border-top: 1px solid var(--offwhite-2);
}
.pricing-card__cta .btn { width: 100%; justify-content: center; }

/* Waarom cards */
.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.waarom-card {
  background: var(--white);
  border: 1px solid rgba(30,58,47,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: background var(--transition), border-color var(--transition);
}
.waarom-card:hover {
  border-color: rgba(201,168,76,0.5);
}
.waarom-card__icon { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(201,168,76,0.12); }
.waarom-card h4 { color: var(--green); margin-bottom: 10px; font-size: 1.05rem; }
.waarom-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(30,58,47,0.1);
  padding-top: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid rgba(30,58,47,0.1);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-item__icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(201,168,76,0.12); }
.trust-item h5 { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 2px; }
.trust-item p  { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

@media (max-width: 768px) {
  .gratis-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .waarom-grid  { grid-template-columns: 1fr; }
  .trust-bar    { grid-template-columns: 1fr 1fr; gap: 20px; border-top: none; padding-top: 0; }
  .trust-item   { border-right: none; padding-left: 0; }
}

/* --- Traject / Offering --- */
.traject-header {
  background-color: var(--green);
  padding: calc(var(--section-py) + 72px) 0 var(--section-py);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar__top {
  background-color: var(--green);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 152px;
}
.pillar__top::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
}
.pillar__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.pillar__top h3 {
  color: var(--offwhite);
  margin-bottom: 8px;
}
.pillar__top p {
  color: rgba(247,244,239,0.7);
  font-size: 0.9rem;
}
.pillar__body {
  padding: 28px 32px;
}
.pillar__body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar__body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
}
.pillar__body li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

/* --- Pricing / CTA Card --- */
.cta-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.08);
}
.cta-card h2 { color: var(--offwhite); margin-bottom: 16px; }
.cta-card p { color: rgba(247,244,239,0.75); max-width: 560px; margin: 0 auto 36px; }
.cta-card .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--offwhite-2);
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background-color: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
.contact-item p  { font-weight: 600; color: var(--text); margin: 0; }

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--offwhite-2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,58,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(30,58,47,0.08);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: var(--green);
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-author {
  margin-top: auto;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}
.testimonial-author h4 { font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-author small { font-size: 0.78rem; color: var(--text-muted); }

/* Stars */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars span { color: var(--gold); font-size: 0.9rem; }

/* --- FAQ --- */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--offwhite-2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-light); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* --- Footer --- */
.footer {
  background-color: var(--green);
  color: rgba(247,244,239,0.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer__col h4 {
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(247,244,239,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer__bottom a { transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

/* --- Page header (inner pages) --- */
.page-header {
  background-color: var(--green);
  padding: calc(72px + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { color: var(--offwhite); margin-bottom: 16px; }
.page-header p { color: rgba(247,244,239,0.75); max-width: 540px; font-size: 1.05rem; }
.page-header--cta { padding-bottom: 120px; }

/* --- Utility --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-16 { gap: 16px !important; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Hero Split --- */
.hero-split {
  background-color: var(--green);
  padding: calc(72px + 24px) 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-split::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-split__text h1 {
  color: var(--offwhite);
  line-height: 1.45;
  margin-bottom: 8px;
}
.hero-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 620px;
  aspect-ratio: 9 / 16;
}
.hero-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- Wie ik ben grid --- */
.wie-ik-ben-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "image text"
    "image cta";
  gap: 16px 64px;
  align-items: start;
}
.wie-ik-ben__image { grid-area: image; }
.wie-ik-ben__image .split__image-inner { aspect-ratio: 9 / 16; }
.wie-ik-ben__text  { grid-area: text; }
.wie-ik-ben__cta   { grid-area: cta; }

/* --- Uitkomsten grid --- */
.uitkomsten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.uitkomst-card {
  background: var(--white);
  border: 1px solid rgba(30,58,47,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.uitkomst-card__icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.uitkomst-card h4 {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 8px;
}
.uitkomst-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Investering --- */
.investering-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.investering-prijs {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-family: var(--font-head);
  color: var(--green);
  font-weight: 700;
  margin: 20px 0 12px;
  line-height: 1;
}

/* --- Small button variant --- */
.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* --- Dual CTA component --- */
.dual-cta {
  margin-top: 24px;
  max-width: 560px;
}
.dual-cta__intro {
  font-size: 0.95rem;
  color: rgba(247,244,239,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}
.dual-cta__actions {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cta-btn__label {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: normal;
}
.cta-btn__sub {
  font-size: 0.75rem;
  line-height: 1.3;
  white-space: normal;
  opacity: 0.75;
}
.cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(247,244,239,0.4);
  color: var(--offwhite);
}
.cta-btn--outline:hover {
  border-color: rgba(247,244,239,0.85);
  background: rgba(247,244,239,0.07);
  color: var(--offwhite);
}
.cta-btn--gold {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--green);
}
.cta-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  color: var(--green);
}
.cta-btn--gold .cta-btn__sub { color: var(--green); }

.hero-gids-link {
  display: block;
  margin-top: 20px;
  padding: 8px 4px;
  font-size: 0.8rem;
  color: rgba(201,168,76,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
  max-width: 360px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.hero-gids-link:hover { color: var(--gold); }

.cta-card .dual-cta {
  margin: 16px auto 0;
  text-align: center;
}
.cta-card .dual-cta__actions {
  justify-content: center;
}
.cta-card .cta-btn__text {
  text-align: left;
}

/* --- Sticky mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1000;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  text-decoration: none;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  color: var(--green);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { min-height: 100svh; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__image,
  .split--reverse .split__text { order: unset; }
  .split__image-badge { bottom: -12px; right: 12px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(247,244,239,0.1); }
  .stat:last-child { border-bottom: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-card { padding: 40px 24px; }
  .cta-card .actions { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-header { padding: calc(72px + 48px) 0 56px; }
  .page-header--cta { padding-bottom: 100px; }

  .sticky-cta { display: flex; }

  .hero-split { padding: calc(72px + 18px) 0 80px; }
  .hero-split__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-split__image { order: 1; max-height: none; aspect-ratio: 4 / 5; }
  .hero-split__image img { object-position: center 85%; }
  .hero-split__text h1 { font-size: 1.8rem; }
  .hero-split__text .hero__sub { font-size: 0.715rem; margin-bottom: 16px; }
  .hero-split__text .dual-cta { margin-top: 0; }
  .hero-split__text .cta-btn { padding: 14px 20px; }
  .hero-split__text .cta-btn__label { font-size: 0.73rem; }
  .hero-split__text .cta-btn__sub { font-size: 0.61rem; }
  .hero-split__text .hero-gids-link { font-size: 0.72rem; }

  .dual-cta { max-width: 100%; }
  .dual-cta__actions { flex-direction: column; gap: 12px; }
  .cta-btn { width: 100%; }

  .uitkomsten-grid { grid-template-columns: repeat(2, 1fr); }

  .wie-ik-ben-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image" "cta";
    gap: 24px;
  }
  .wie-ik-ben__image .split__image-inner { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .uitkomsten-grid { grid-template-columns: 1fr; }
}
