*, *::before, *::after { margin:0; padding:0; border:none; outline:none; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:none; }
a { text-decoration:none; color:inherit; }
::selection { background:#C9A84C; color:#0A1F44; }

:root {
  --navy:  #0A1F44;
  --navy2: #1A3A6E;
  --gold:  #C9A84C;
  --off:   #F7F8FA;
  --bdr:   rgba(10,31,68,.08);
  --bdr2:  rgba(10,31,68,.15);
  --muted: #6B7A99;
  --pad:   clamp(80px,10vw,120px);
  --ease:  cubic-bezier(.16,1,.3,1);
}

body {
  background:#fff; color:var(--muted);
  font-family:'Inter',system-ui,sans-serif;
  font-size:17px; line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.wrap { max-width:1100px; margin:0 auto; padding:0 2rem; }
h2 {
  font-family:Georgia,serif;
  font-size:clamp(28px,4vw,44px);
  font-weight:700; color:var(--navy);
  line-height:1.12; letter-spacing:-.025em;
}
h3 { font-size:18px; font-weight:600; color:var(--navy); line-height:1.3; }
p { line-height:1.75; }

.tag {
  display:inline-block;
  font-size:11px; font-weight:600; letter-spacing:.13em; text-transform:uppercase;
  color:var(--gold); padding:5px 14px;
  border:1px solid rgba(201,168,76,.3); border-radius:100px;
}
.sec-hd { text-align:center; margin-bottom:3.5rem; }
.sec-hd-tag { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:1.25rem; }
.sec-hd-line { width:28px; height:1px; background:rgba(201,168,76,.4); flex-shrink:0; }
.sec-hd p { color:var(--muted); max-width:480px; margin:.75rem auto 0; }

.btn {
  display:inline-flex; align-items:center; gap:8px;
  height:48px; padding:0 26px; border-radius:8px;
  font-size:15px; font-weight:600; cursor:pointer;
  position:relative; overflow:hidden;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space:nowrap;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,.16) 50%,transparent 62%);
  transform:translateX(-120%); transition:transform .55s var(--ease);
  pointer-events:none;
}
.btn:hover { transform:translateY(-2px); }
.btn:hover::after { transform:translateX(120%); }
.btn:active { transform:translateY(0); }
.btn-navy  { background:var(--navy); color:#fff; }
.btn-navy:hover  { background:var(--navy2); box-shadow:0 8px 24px rgba(10,31,68,.22); }
.btn-ghost { background:transparent; color:var(--navy); border:1.5px solid var(--bdr2); }
.btn-ghost:hover { border-color:var(--navy); box-shadow:0 4px 16px rgba(10,31,68,.07); }
.btn-light { background:#fff; color:var(--gold); }
.btn-light:hover { box-shadow:0 8px 28px rgba(255,255,255,.22); }
.btn-gold { background:var(--gold); color:var(--navy); }
.btn-gold:hover { box-shadow:0 8px 24px rgba(201,168,76,.3); }
.btn-ghost-light { background:transparent; color:rgba(255,255,255,.7); border:1.5px solid rgba(255,255,255,.25); }
.btn-ghost-light:hover { color:#fff; border-color:rgba(255,255,255,.5); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s var(--ease),transform .65s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.d1{transition-delay:.08s}.d2{transition-delay:.17s}.d3{transition-delay:.26s}.d4{transition-delay:.35s}

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation:none!important; transition:none!important; }
}

@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.6)} }
@keyframes ringPulse{ 0%,100%{opacity:.35;transform:scale(1)} 50%{opacity:.9;transform:scale(1.02)} }
@keyframes chipFloat{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes gridMove { from{background-position:0 0} to{background-position:24px 24px} }

/* NAV */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:64px; display:flex; align-items:center;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--bdr);
  transition:box-shadow .3s;
}
#nav.scrolled { box-shadow:0 2px 20px rgba(10,31,68,.07); }
.nav-inner {
  max-width:1100px; width:100%; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; gap:1.5rem;
}
.logo { display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.logo-icon {
  width:32px; height:32px; border-radius:7px;
  background:var(--off); border:1px solid var(--bdr2);
  display:flex; align-items:center; justify-content:center;
}
.logo-name {
  font-family:Georgia,serif; font-size:.9rem; font-weight:700;
  letter-spacing:.2em; color:var(--navy); text-transform:uppercase; display:block;
}
.logo-sub { font-size:.58rem; letter-spacing:.18em; color:var(--gold); text-transform:uppercase; display:block; margin-top:2px; }
.nav-links { display:flex; gap:.125rem; flex:1; }
.nav-links a {
  font-size:14px; font-weight:500; color:var(--muted);
  padding:6px 13px; border-radius:6px; position:relative;
  transition:color .2s,background .2s;
}
.nav-links a:hover { color:var(--navy); background:var(--off); }
.nav-links a.current { color:var(--navy); }
.nav-links a.current::after {
  content:''; position:absolute; bottom:-1px; left:13px; right:13px;
  height:2px; border-radius:1px; background:var(--gold);
}
.nav-right { display:flex; align-items:center; gap:.75rem; margin-left:auto; }
.lang-toggle { display:flex; align-items:center; gap:2px; }
.lang-btn {
  font-family:inherit; font-size:13px; font-weight:500; color:var(--muted);
  padding:4px 8px; border-radius:5px; cursor:pointer; background:none;
  transition:color .2s,background .2s;
}
.lang-btn.active { color:var(--navy); background:var(--off); }
.lang-sep { color:var(--bdr2); font-size:11px; user-select:none; }
.nav-cta { height:38px; padding:0 18px; font-size:14px; border-radius:7px; }

/* HERO */
#hero {
  min-height:100vh; display:flex; align-items:center;
  padding:112px 0 80px; position:relative; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 40%,rgba(201,168,76,.055) 0%,transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 90%,rgba(10,31,68,.04) 0%,transparent 65%);
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(10,31,68,.055) 1px,transparent 1px);
  background-size:30px 30px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 20%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 20%,transparent 100%);
}
.hero-wrap {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 380px;
  gap:4rem; align-items:center; width:100%;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); padding:6px 14px;
  border:1px solid rgba(201,168,76,.3); border-radius:100px;
  margin-bottom:2rem;
  animation:fadeIn .8s ease both;
}
.hero-badge .dot {
  width:6px; height:6px; border-radius:50%; background:var(--gold);
  animation:dotPulse 2.4s ease infinite;
}
.hero-h1 {
  font-family:Georgia,serif;
  font-size:clamp(40px,5.5vw,70px);
  font-weight:700; line-height:1.08; letter-spacing:-.03em;
  margin-bottom:1.5rem;
  animation:fadeUp .9s .15s var(--ease) both;
}
.hero-h1 span { color:var(--navy); display:block; }
.hero-h1 em   { color:var(--gold); font-style:italic; display:block; }
.hero-sub {
  font-size:clamp(16px,1.7vw,18px); color:var(--muted);
  max-width:520px; line-height:1.75; margin-bottom:2.25rem;
  animation:fadeUp .9s .3s var(--ease) both;
}
.hero-actions {
  display:flex; align-items:center; flex-wrap:wrap; gap:1rem;
  animation:fadeUp .9s .45s var(--ease) both;
}
.hero-tags {
  display:flex; gap:.5rem; flex-wrap:wrap; margin-top:1.75rem;
  animation:fadeUp .9s .6s var(--ease) both;
}
.htag {
  font-size:13px; font-weight:500; color:var(--muted);
  padding:5px 13px; border:1px solid var(--bdr);
  border-radius:100px; background:rgba(255,255,255,.85);
}
.hv {
  position:relative; width:380px; height:380px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  animation:fadeIn 1s .5s ease both;
}
.hv-rings { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.hv-r {
  position:absolute; border-radius:50%;
  border:1px solid rgba(201,168,76,.18);
  animation:ringPulse 7s ease-in-out infinite;
}
.hv-r1 { width:160px; height:160px; }
.hv-r2 { width:258px; height:258px; animation-delay:2.3s; border-color:rgba(201,168,76,.12); }
.hv-r3 { width:356px; height:356px; animation-delay:4.6s; border-color:rgba(201,168,76,.07); }
.hv-core {
  position:relative; z-index:5;
  width:120px; height:120px; border-radius:22px;
  background:var(--navy);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  box-shadow:0 24px 60px rgba(10,31,68,.28),0 0 0 1px rgba(201,168,76,.15);
}
.hv-core-lbl {
  font-family:Georgia,serif; font-size:9px; letter-spacing:.22em;
  color:rgba(255,255,255,.5); text-transform:uppercase;
}
.hv-chip {
  position:absolute; background:#fff;
  border:1px solid var(--bdr); border-radius:100px;
  padding:8px 14px; font-size:13px; font-weight:500; color:var(--navy);
  box-shadow:0 4px 18px rgba(10,31,68,.08);
  white-space:nowrap; z-index:6;
  display:flex; align-items:center; gap:6px;
}
.chip-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.hv-c1 { top:7%;   left:-10px;  animation:chipFloat 5.5s ease-in-out infinite; }
.hv-c2 { bottom:8%; right:-10px; animation:chipFloat 5.5s 2s ease-in-out infinite; }
.hv-c3 { bottom:30%; left:-10px;  animation:chipFloat 5.5s 4s ease-in-out infinite; }
.hero-scroll {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:10px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--muted); opacity:.45;
  animation:fadeIn 1s 1.1s ease both;
}
.hero-scroll-line { width:1px; height:28px; background:linear-gradient(to bottom,var(--muted),transparent); }

/* DIENSTEN */
#diensten { padding:var(--pad) 0; background:var(--off); }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; counter-reset:card; }
.card {
  background:#fff; border-radius:16px; border:1px solid var(--bdr);
  padding:2rem 1.75rem;
  position:relative; overflow:hidden;
  counter-increment:card;
  transition:box-shadow .25s var(--ease),transform .25s var(--ease);
}
.card::before {
  content:counter(card,decimal-leading-zero);
  position:absolute; top:1.25rem; right:1.5rem;
  font-family:Georgia,serif; font-size:52px; font-weight:700;
  color:rgba(10,31,68,.04); line-height:1;
  pointer-events:none; user-select:none;
}
.card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.card:hover { box-shadow:0 12px 44px rgba(10,31,68,.09); transform:translateY(-5px); }
.card:hover::after { transform:scaleX(1); }
.card-icon {
  width:48px; height:48px; border-radius:12px;
  background:rgba(201,168,76,.1);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.25rem;
  transition:background .25s;
}
.card:hover .card-icon { background:rgba(201,168,76,.18); }
.card h3 { margin-bottom:.5rem; }
.card > p { font-size:15px; }
.card-more {
  display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:600; color:var(--gold);
  margin-top:1.25rem; transition:gap .2s;
}
.card:hover .card-more { gap:10px; }

/* AANPAK */
#aanpak { padding:var(--pad) 0; background:#fff; }
.aanpak-grid { display:grid; grid-template-columns:5fr 7fr; gap:5rem; align-items:start; }
.aanpak-left { position:sticky; top:96px; }
.aanpak-left .tag { display:inline-block; margin-bottom:1rem; }
.aanpak-left h2 { margin-bottom:1rem; }
.aanpak-left > p { line-height:1.8; }
.steps { display:flex; flex-direction:column; }
.step {
  display:flex; gap:1.5rem;
  padding:1.5rem 0; border-bottom:1px solid var(--bdr);
}
.step:first-child { padding-top:0; }
.step:last-child  { border-bottom:none; }
.step-n {
  font-family:Georgia,serif; font-size:28px; font-weight:700;
  color:rgba(201,168,76,.2); line-height:1; flex-shrink:0;
  width:44px; padding-top:2px;
  transition:color .3s var(--ease);
}
.step:hover .step-n { color:var(--gold); }
.step-body h3 { margin-bottom:.375rem; }
.step-body p { font-size:15px; }

/* OVER ONS */
#over { padding:var(--pad) 0; background:var(--off); }
.over-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.over-visual {
  background:var(--navy); border-radius:20px;
  aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.over-visual::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 60% at 30% 40%,rgba(201,168,76,.14) 0%,transparent 65%);
}
.over-visual::after {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:22px 22px;
  animation:gridMove 18s linear infinite;
}
.over-quote {
  position:relative; z-index:2;
  font-family:Georgia,serif; font-style:italic;
  font-size:clamp(17px,1.9vw,22px); color:rgba(255,255,255,.85);
  text-align:center; padding:0 2.5rem; max-width:320px; line-height:1.55;
}
.over-quote::before {
  content:'\201C'; display:block;
  font-size:64px; color:var(--gold); opacity:.4;
  font-style:normal; line-height:1; margin-bottom:-.25em;
}
.over-text .tag  { display:inline-block; margin-bottom:1rem; }
.over-text h2    { margin-bottom:1.25rem; }
.over-text p     { line-height:1.8; }
.over-text p+p   { margin-top:.875rem; }
.values { display:grid; grid-template-columns:1fr 1fr; gap:.875rem; margin-top:2rem; }
.value {
  padding:.875rem 1rem; background:#fff;
  border-radius:10px; border:1px solid var(--bdr);
  transition:border-color .2s,box-shadow .2s;
}
.value:hover { border-color:rgba(201,168,76,.35); box-shadow:0 2px 12px rgba(10,31,68,.05); }
.value strong { display:block; color:var(--navy); font-size:14px; margin-bottom:3px; }
.value span   { font-size:13px; }

/* CTA */
#cta { padding:var(--pad) 0; background:#fff; }
.cta-card {
  background:var(--navy); border-radius:24px;
  padding:clamp(3rem,7vw,5.5rem) clamp(2rem,7vw,5rem);
  text-align:center; position:relative; overflow:hidden;
}
.cta-card::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 55% 75% at 20% 50%,rgba(201,168,76,.14) 0%,transparent 65%);
}
.cta-card::after {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size:24px 24px;
}
.cta-card > * { position:relative; z-index:1; }
.cta-card .tag { border-color:rgba(201,168,76,.4); }
.cta-card h2   { color:#fff; font-size:clamp(26px,4vw,44px); margin-bottom:1rem; }
.cta-card > p  { color:rgba(255,255,255,.6); max-width:440px; margin:0 auto 2.5rem; }
.cta-actions   { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }

/* FOOTER */
footer { background:var(--navy); border-top:1px solid rgba(255,255,255,.05); padding:2.5rem 0; }
.footer-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:2rem; flex-wrap:wrap;
}
.footer-logo .logo-name { color:#fff; }
.footer-logo .logo-sub  { color:var(--gold); }
.footer-logo .logo-icon { background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.1); }
.footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a { font-size:14px; color:rgba(255,255,255,.38); transition:color .2s; }
.footer-links a:hover { color:rgba(255,255,255,.8); }
.footer-copy { font-size:13px; color:rgba(255,255,255,.27); }

/* =====================
   INNER PAGES
   ===================== */

.page-hero {
  padding:120px 0 72px;
  background:var(--off);
  border-bottom:1px solid var(--bdr);
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 50% 80% at 80% 20%,rgba(201,168,76,.055) 0%,transparent 65%);
}
.page-hero .back-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:500; color:var(--muted);
  margin-bottom:2.25rem; transition:color .2s;
}
.page-hero .back-link:hover { color:var(--navy); }
.page-hero .tag { display:inline-block; margin-bottom:1.25rem; }
.page-hero-icon {
  width:60px; height:60px; border-radius:14px;
  background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.5rem;
}
.page-hero h1 {
  font-family:Georgia,serif;
  font-size:clamp(32px,4.5vw,54px);
  font-weight:700; color:var(--navy);
  line-height:1.1; letter-spacing:-.03em;
  margin-bottom:1rem;
}
.page-hero-lead {
  font-size:clamp(16px,1.8vw,18px); max-width:620px; line-height:1.8;
}

.content-section { padding:var(--pad) 0; }
.content-section.bg-off { background:var(--off); }

.two-col { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.two-col-sticky { position:sticky; top:96px; }
.two-col-left h2 { margin-bottom:1.25rem; }
.two-col-left p  { line-height:1.8; }

.feature-list { list-style:none; display:flex; flex-direction:column; gap:.75rem; margin-top:1.5rem; }
.feature-list li {
  display:flex; align-items:flex-start; gap:.875rem;
  font-size:15px; line-height:1.65;
}
.feat-check {
  width:22px; height:22px; border-radius:50%;
  background:rgba(201,168,76,.12);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}

.who-box {
  background:var(--navy); border-radius:16px;
  padding:2rem; margin-top:2rem;
  position:relative; overflow:hidden;
}
.who-box::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 70% at 20% 30%,rgba(201,168,76,.12) 0%,transparent 65%);
}
.who-box > * { position:relative; }
.who-box .tag { border-color:rgba(201,168,76,.35); }
.who-box h3 { color:#fff; margin:.75rem 0 .5rem; font-size:17px; }
.who-box p  { color:rgba(255,255,255,.65); font-size:15px; line-height:1.7; }

.mini-steps { display:flex; flex-direction:column; }
.mini-step {
  display:flex; gap:1.25rem;
  padding:1.25rem 0; border-bottom:1px solid var(--bdr);
}
.mini-step:first-child { padding-top:0; }
.mini-step:last-child  { border-bottom:none; }
.mini-step-n {
  font-family:Georgia,serif; font-size:24px; font-weight:700;
  color:rgba(201,168,76,.25); line-height:1; flex-shrink:0;
  width:36px; padding-top:2px; transition:color .3s;
}
.mini-step:hover .mini-step-n { color:var(--gold); }
.mini-step-body h3 { font-size:16px; margin-bottom:.25rem; }
.mini-step-body p  { font-size:14px; }

/* PAGE CTA STRIP */
.page-cta {
  background:var(--navy); padding:var(--pad) 0;
  text-align:center; position:relative; overflow:hidden;
}
.page-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 55% 75% at 20% 50%,rgba(201,168,76,.14) 0%,transparent 65%);
}
.page-cta > .wrap { position:relative; }
.page-cta .tag { border-color:rgba(201,168,76,.4); margin-bottom:1.25rem; }
.page-cta h2 { color:#fff; margin-bottom:1rem; }
.page-cta p  { color:rgba(255,255,255,.6); max-width:480px; margin:0 auto 2.5rem; }
.page-cta-btns { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }

/* FAQ */
.faq-list {
  display:flex; flex-direction:column; gap:.625rem;
  max-width:800px; margin:0 auto;
}
.faq-item {
  background:#fff; border:1px solid var(--bdr);
  border-radius:12px; overflow:hidden;
}
.faq-q {
  width:100%; padding:1.25rem 1.5rem;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  font-size:15px; font-weight:600; color:var(--navy);
  cursor:pointer; background:none; text-align:left; font-family:inherit;
  transition:background .2s;
}
.faq-q:hover { background:var(--off); }
.faq-icon { flex-shrink:0; color:var(--gold); transition:transform .3s var(--ease); }
.faq-item.open .faq-icon { transform:rotate(180deg); }
.faq-a { overflow:hidden; max-height:0; transition:max-height .45s var(--ease); }
.faq-a-inner { padding:0 1.5rem 1.375rem; font-size:15px; line-height:1.75; }
.faq-item.open .faq-a { max-height:500px; }

/* CONTACT */
.contact-grid {
  display:grid; grid-template-columns:5fr 7fr; gap:5rem; align-items:start;
}
.contact-left { position:sticky; top:96px; }
.contact-left h2 { margin-bottom:1.25rem; }
.contact-left > p { line-height:1.8; margin-bottom:2rem; }
.contact-points { list-style:none; display:flex; flex-direction:column; gap:.875rem; }
.contact-point {
  display:flex; align-items:flex-start; gap:.875rem;
  font-size:15px; line-height:1.6;
}
.contact-point-icon {
  width:36px; height:36px; border-radius:9px;
  background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.calendly-box {
  background:var(--off); border:1px solid var(--bdr);
  border-radius:20px; overflow:hidden;
}
.calendly-placeholder {
  padding:3.5rem 2.5rem; text-align:center;
}
.calendly-placeholder-inner {
  padding:2.5rem 2rem;
  background:rgba(201,168,76,.06);
  border:1.5px dashed rgba(201,168,76,.35);
  border-radius:12px;
}
.calendly-placeholder h3 { color:var(--navy); margin-bottom:.5rem; }
.calendly-placeholder p  { font-size:14px; margin-bottom:1.25rem; }
.calendly-placeholder code {
  display:inline-block;
  background:var(--navy); color:var(--gold);
  padding:.4rem 1rem; border-radius:5px;
  font-size:12px; font-family:monospace; letter-spacing:.04em;
}
.contact-alt { text-align:center; padding:1.5rem; font-size:14px; color:var(--muted); border-top:1px solid var(--bdr); }
.contact-alt a { color:var(--navy); font-weight:600; }

/* RESPONSIVE */
@media (max-width:960px) {
  .hero-wrap { grid-template-columns:1fr; }
  .hv { display:none; }
  .cards { grid-template-columns:1fr; }
  .aanpak-grid { grid-template-columns:1fr; gap:3rem; }
  .aanpak-left { position:static; }
  .over-grid { grid-template-columns:1fr; gap:2.5rem; }
  .over-visual { display:none; }
  .two-col { grid-template-columns:1fr; gap:3rem; }
  .two-col-sticky { position:static; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .contact-left { position:static; }
}
/* ── Hamburger menu ── */
.hamburger {
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:36px; height:36px; cursor:pointer; background:none; padding:4px;
  border-radius:6px; transition:background .2s; margin-left:.5rem;
}
.hamburger:hover { background:var(--off); }
.hamburger span {
  display:block; width:22px; height:2px;
  background:var(--navy); border-radius:2px;
  transition:transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display:none; position:fixed; top:60px; left:0; right:0; z-index:98;
  background:#fff; border-top:1px solid var(--bdr);
  padding:1rem 2rem 1.5rem;
  box-shadow:0 8px 24px rgba(10,31,68,.1);
}
.mobile-menu.open { display:block; }
.mobile-menu a {
  display:block; padding:.75rem 0;
  font-size:16px; font-weight:500; color:var(--muted);
  border-bottom:1px solid var(--bdr);
  transition:color .15s;
}
.mobile-menu a:hover { color:var(--navy); }
.mobile-menu .btn {
  display:flex; margin-top:1.25rem; width:100%; justify-content:center;
}

@media (max-width:640px) {
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-links { justify-content:center; }
  .page-hero { padding:96px 0 56px; }
}
