/* ── Sections ────────────────────────────────────────────────────── */
.band       { padding: 84px 0; }
.band.tight { padding: 60px 0; }
.band--paper { background: var(--paper); }

/* ── Section header ─────────────────────────────────────────────── */
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ── Grids ──────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Feature cards ──────────────────────────────────────────────── */
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.ficon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(184,92,56,.12);
  color: var(--terra);
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: #4b553f; font-size: .97rem; }

/* ── Service grid ───────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-img {
  height: 160px;
  background: linear-gradient(135deg,#3E7063,#26340f);
  position: relative;
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-num {
  position: absolute; top: 12px; left: 12px;
  background: rgba(45,61,24,.9);
  color: #fff;
  font-family: var(--font-brand); font-weight: 700; font-size: .78rem;
  padding: 4px 10px; border-radius: 8px;
}
.svc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: 8px; }
.svc-body p { font-size: .93rem; color: #4b553f; flex: 1; }
.svc-link {
  margin-top: 14px;
  font-family: var(--font-brand); font-weight: 600;
  color: var(--terra); font-size: .92rem;
  display: inline-flex; gap: .4rem; align-items: center;
}
.svc--highlight {
  background: var(--green); color: #fff;
  align-items: center; justify-content: center; text-align: center;
}
.svc--highlight .svc-body { justify-content: center; }
.svc--highlight h3 { color: #fff; }
.svc--highlight .svc-link { color: rgba(255,255,255,.85); }

/* ── Trust bar ──────────────────────────────────────────────────── */
.trust { background: var(--green-900); color: #cfd6c4; padding: 18px 0; }
.trust .wrap {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 40px; align-items: center; text-align: center;
}
.trust span {
  font-family: var(--font-brand); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.trust .chk { color: var(--gold); }

/* ── Steps ──────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: s; }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
}
.step::before {
  counter-increment: s;
  content: "0" counter(s);
  font-family: var(--font-brand); font-weight: 800; font-size: 2.3rem;
  color: rgba(184,92,56,.25);
  display: block; margin-bottom: 8px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: .92rem; color: #4b553f; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.qa {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.qa summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-brand); font-weight: 600;
  color: var(--green);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm {
  flex: none; width: 24px; height: 24px;
  border-radius: 50%; background: rgba(184,92,56,.12);
  color: var(--terra); display: grid; place-items: center;
  font-size: 1.2rem; transition: transform .2s;
}
.qa[open] summary .pm { transform: rotate(45deg); }
.qa .ans { padding: 0 24px 22px; color: #4b553f; font-size: .96rem; }

/* ── CTA band ───────────────────────────────────────────────────── */
.ctaband {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--terra) 0%, #8f432a 100%);
  color: #fff; border-radius: 26px; padding: 54px;
  text-align: center; box-shadow: var(--shadow);
}
.ctaband .bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .14;
}
.ctaband h2 { color: #fff; position: relative; }
.ctaband p  { color: #ffe9df; max-width: 560px; margin: 14px auto 26px; position: relative; }
.ctaband .cta-row { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Stat line ──────────────────────────────────────────────────── */
.statline { display: flex; gap: 36px; margin: 26px 0; flex-wrap: wrap; }
.stat b    { font-family: var(--font-brand); font-size: 1.9rem; color: var(--terra); display: block; }
.stat span { font-size: .85rem; color: var(--muted); }

/* ── Audience grid ──────────────────────────────────────────────── */
.aud-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.aud {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px; text-align: center;
}
.aud .ai {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(45,61,24,.08); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 12px;
  font-size: 1.3rem;
}
.aud h4 { font-family: var(--font-brand); color: var(--green); font-size: 1rem; margin-bottom: 6px; }
.aud p  { font-size: .86rem; color: var(--muted); }

/* ── Other services links ───────────────────────────────────────── */
.other-svc { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 18px; }
.other-svc a {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; font-family: var(--font-brand); font-weight: 600;
  color: var(--green); font-size: .9rem; transition: background .2s, color .2s;
}
.other-svc a:hover { background: var(--green); color: #fff; }

/* ── Under construction ─────────────────────────────────────────── */
.uc { text-align: center; max-width: 620px; margin: 0 auto; padding: 40px 0; }
.uc .ucicon {
  width: 84px; height: 84px; border-radius: 22px;
  background: rgba(184,92,56,.12); color: var(--terra);
  display: grid; place-items: center;
  margin: 0 auto 24px; font-size: 2rem;
}
.uc p { color: var(--muted); font-size: 1.08rem; margin-bottom: 26px; }
.uc .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Waardebepaling specifiek ───────────────────────────────────── */
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 10px 0 6px; }
.type-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px;
}
.type-card .badge {
  display: inline-block; font-family: var(--font-brand); font-weight: 700;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  padding: .32rem .7rem; border-radius: 999px; margin-bottom: 14px;
}
.type-card.basis .badge  { background: rgba(184,92,56,.12); color: var(--terra); }
.type-card.vlabel .badge { background: rgba(52,96,85,.14);  color: var(--green); }
.type-card h3 { margin-bottom: 8px; }
.type-card > p { font-size: .94rem; color: #4b553f; margin-bottom: 10px; }
.type-card ul  { margin: 6px 0 0 18px; padding: 0; list-style: disc; }
.type-card li  { margin-bottom: 6px; font-size: .9rem; color: #4b553f; }
.callout {
  background: rgba(52,96,85,.06);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 12px; padding: 18px 20px; margin: 22px 0;
  font-size: .94rem; color: #3b4534;
}
.callout b { font-family: var(--font-brand); color: var(--green); }

/* ── Socials ────────────────────────────────────────────────────── */
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--green); color: #fff;
  display: grid; place-items: center; transition: background .2s, transform .2s;
  font-weight: 700; font-size: .95rem;
}
.socials a:hover { background: var(--terra); transform: translateY(-2px); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-3, .svc-grid, .steps { grid-template-columns: 1fr 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .other-svc { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-3, .svc-grid, .steps, .aud-grid, .other-svc, .type-grid { grid-template-columns: 1fr; }
  .band { padding: 58px 0; }
  .ctaband { padding: 36px 22px; }
  .statline { gap: 24px; }
}
