/* =========================================================
   Onlinerz Groei Systeem — landing page styles
   Brand source: ONLINERZ BRAND STYLESHEET
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Mulish";
  src: url("fonts/Mulish-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("fonts/Mulish-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("fonts/Mulish-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("fonts/Mulish-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("fonts/Mulish-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap");

/* ---------- Tokens ---------- */
:root {
  --orange:        #FE5900;
  --donkerblauw:   #100643;
  --lichtblauw:    #60B1DC;
  --softblauw:     #E2EFF7;
  --donkergrijs:   #2D2D2D;

  --grey-500: #85849F;
  --grey-700: #615F83;

  --site-accent:        var(--orange);
  --site-accent-hover:  #E64F00;
  --site-accent-shadow: 0 12px 28px rgba(254,89,0,0.30);
  --site-accent-tint:   rgba(254,89,0,0.08);

  --font-display: "Poppins", "Mulish", system-ui, sans-serif;
  --font-body:    "Mulish", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--donkergrijs);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); box-shadow: 0 6px 24px rgba(16,6,67,0.06); }
.site-header.scrolled .nav a { color: var(--donkerblauw); }
.site-header.scrolled .nav a:hover { color: var(--site-accent); }
.site-header.scrolled .logo-color { display: block; }
.site-header.scrolled .logo-white { display: none; }
.site-header .inner { display: flex; align-items: center; justify-content: space-between; max-width: 1320px; margin: 0 auto; padding: 0 32px; gap: 32px; }
.site-header img.logo { height: 36px; }
.site-header .logo-color { display: none; }
.nav { display: flex; gap: 36px; align-items: center; }
.nav a { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: #fff; transition: color .2s var(--ease); }
.nav a:hover { color: var(--site-accent); }
.nav .pill-cta { background: var(--site-accent); color: #fff; padding: 11px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; box-shadow: var(--site-accent-shadow); transition: transform .2s var(--ease), background .2s var(--ease); }
.nav .pill-cta:hover { background: var(--site-accent-hover); transform: translateY(-2px); color: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 15px; padding: 16px 32px; border-radius: 999px; border: none; cursor: pointer; transition: all .2s var(--ease); text-decoration: none; }
.btn-primary { background: var(--site-accent); color: #fff; box-shadow: var(--site-accent-shadow); }
.btn-primary:hover { background: var(--site-accent-hover); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); padding: 14.5px 28px; }
.btn-outline-white:hover { background: #fff; color: var(--donkerblauw); border-color: #fff; }
.btn-arrow { width: 20px; height: 20px; }

/* ---------- Section helpers ---------- */
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--site-accent); margin: 0 0 16px; display: block;
}
.section-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--donkerblauw); margin: 0 0 18px; letter-spacing: -0.015em; line-height: 1.15; text-wrap: balance; }
.section-head p { color: var(--grey-700); font-size: 17px; line-height: 1.7; margin: 0; text-wrap: pretty; }
.section { padding: 110px 0; position: relative; }
.section.soft { background: var(--softblauw); }
.section.grey { background: #f7f7fa; }
.section.navy { background: var(--donkerblauw); color: #fff; overflow: hidden; }
.section.navy .section-head h2 { color: #fff; }
.section.navy .section-head p { color: rgba(255,255,255,0.78); }
.section.navy .eyebrow { color: var(--lichtblauw); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 180px 0 240px;
  background: var(--donkerblauw);
  color: #fff;
  overflow: hidden;
}
.hero .bg-photo { position: absolute; inset: 0; background: url("assets/photos/team-1.jpg") no-repeat center/cover; opacity: 0.18; mix-blend-mode: luminosity; }
.hero .bg-clouds { position: absolute; inset: 0; background: url("assets/wolken-wit-12p.png") no-repeat right -200px top -100px / 900px auto; opacity: 0.7; pointer-events: none; }
.hero .navy-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,6,67,0.78) 0%, rgba(16,6,67,0.95) 100%); }
.hero .clouds-bottom { position: absolute; left: 0; right: 0; bottom: -1px; height: 110px; background: url("assets/wolken-wit.png") no-repeat center bottom/100% 100%; pointer-events: none; }
.hero .inner { position: relative; z-index: 2; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--site-accent); box-shadow: 0 0 0 4px rgba(254,89,0,0.18); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.2);opacity:0.7} }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: 76px; line-height: 1.0; letter-spacing: -0.025em; color: #fff; margin: 0 0 24px; max-width: 920px; }
.hero h1 .accent { color: var(--site-accent); }
.hero h1 .underlined { display: inline-block; position: relative; }
.hero h1 .underlined::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px; background: var(--site-accent); opacity: 0.30; border-radius: 999px; z-index: -1; }
.hero p.lede { font-size: 19px; line-height: 1.65; color: rgba(255,255,255,0.85); margin: 0 0 36px; max-width: 640px; font-weight: 500; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero .trust-row { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); max-width: 700px; }
.hero .trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero .trust-item .stars { color: var(--site-accent); letter-spacing: 2px; font-size: 16px; }
.hero .trust-item strong { color: #fff; font-weight: 700; }

.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.hero-form-card {
  background: #fff; color: var(--donkergrijs);
  border-radius: 28px; padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
}
.hero-form-card .head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.hero-form-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--donkerblauw); margin: 0; letter-spacing: -0.01em; }
.hero-form-card .free { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--site-accent); padding: 5px 10px; background: var(--site-accent-tint); border-radius: 999px; }
.hero-form-card .sub { font-size: 14px; color: var(--grey-700); margin: 0 0 22px; line-height: 1.5; }
.hero-form-card .field { margin-bottom: 12px; }
.hero-form-card label { display: block; font-size: 12px; font-weight: 700; color: var(--donkerblauw); margin-bottom: 6px; letter-spacing: 0.04em; }
.hero-form-card input, .hero-form-card select { width: 100%; background: #fff; border: 1.5px solid rgba(16,6,67,0.10); border-radius: 12px; padding: 13px 16px; font-family: inherit; font-size: 15px; color: var(--donkergrijs); transition: border .2s var(--ease); }
.hero-form-card input:focus, .hero-form-card select:focus { outline: none; border-color: var(--site-accent); box-shadow: 0 0 0 3px var(--site-accent-tint); }
.hero-form-card .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form-card .submit { width: 100%; margin-top: 16px; justify-content: center; padding: 16px 28px; }
.hero-form-card .legal { font-size: 12px; color: var(--grey-700); margin: 14px 0 0; line-height: 1.5; }
.hero-form-card .checks { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(16,6,67,0.08); display: flex; flex-direction: column; gap: 8px; }
.hero-form-card .checks .item { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--donkerblauw); font-weight: 600; }
.hero-form-card .checks .check { width: 18px; height: 18px; border-radius: 999px; background: var(--site-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ---------- Partners strip ---------- */
.partners-strip { background: #fff; padding: 56px 0; border-top: 1px solid rgba(16,6,67,0.06); border-bottom: 1px solid rgba(16,6,67,0.06); }
.partners-strip .row { display: flex; justify-content: space-around; align-items: center; gap: 32px; max-width: 1080px; margin: 0 auto; padding: 0 32px; flex-wrap: wrap; }
.partners-strip img { max-height: 44px; max-width: 150px; object-fit: contain; opacity: 0.65; transition: opacity .2s var(--ease); }
.partners-strip img:hover { opacity: 1; }

/* ---------- Problem ---------- */
.problem-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: #fff; border-radius: 22px; padding: 36px 32px; border: 1px solid rgba(16,6,67,0.06); box-shadow: 0 6px 24px rgba(16,6,67,0.04); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(16,6,67,0.10); }
.problem-card .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--site-accent); letter-spacing: -0.02em; margin-bottom: 12px; }
.problem-card.featured { background: var(--donkerblauw); color: #fff; box-shadow: 0 24px 50px rgba(16,6,67,0.30); border: none; position: relative; overflow: hidden; }
.problem-card.featured::after { content: ""; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; background: url("assets/beeldmerk-white.svg") no-repeat center/contain; opacity: 0.06; }
.problem-card.featured .num { color: var(--site-accent); }
.problem-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--donkerblauw); margin: 0 0 10px; letter-spacing: -0.01em; }
.problem-card.featured h3 { color: #fff; }
.problem-card p { color: var(--grey-700); font-size: 15px; line-height: 1.6; margin: 0; }
.problem-card.featured p { color: rgba(255,255,255,0.85); }

/* ---------- Stat block ---------- */
.stat-bg { background: var(--donkerblauw); position: relative; overflow: hidden; padding: 120px 0; color: #fff; }
.stat-bg .clouds { position: absolute; inset: 0; background: url("assets/wolken-wit-12p.png") no-repeat center/120% auto; opacity: 0.3; pointer-events: none; }
.stat-bg .beeldmerk-bg { position: absolute; left: -120px; top: -80px; width: 460px; height: 460px; background: url("assets/beeldmerk-white.svg") no-repeat center/contain; opacity: 0.05; }
.stat-bg .inner { position: relative; z-index: 2; text-align: center; }
.stat-bg .big { font-family: var(--font-display); font-weight: 900; font-size: 200px; color: var(--site-accent); letter-spacing: -0.04em; line-height: 0.95; margin: 0 0 8px; }
.stat-bg h2 { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: #fff; margin: 0 auto 18px; max-width: 800px; line-height: 1.15; letter-spacing: -0.01em; }
.stat-bg p.sub { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 700px; margin: 0 auto 64px; line-height: 1.6; }
.stat-bg .stat-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 920px; margin: 0 auto; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-bg .stat-trio .stat { text-align: left; }
.stat-bg .stat-trio .stat .v { font-family: var(--font-display); font-weight: 800; font-size: 56px; color: var(--site-accent); letter-spacing: -0.025em; line-height: 1; }
.stat-bg .stat-trio .stat .l { color: rgba(255,255,255,0.76); font-size: 14px; margin-top: 8px; line-height: 1.5; }

/* ---------- Pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.pillar-card {
  background: #fff; border-radius: 24px; padding: 44px;
  border: 1px solid rgba(16,6,67,0.06);
  box-shadow: 0 8px 28px rgba(16,6,67,0.06);
  display: flex; gap: 28px; align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(16,6,67,0.12); }
.pillar-card .num-bubble {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--site-accent); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em; flex-shrink: 0;
  box-shadow: var(--site-accent-shadow);
}
.pillar-card .body { flex: 1; }
.pillar-card .top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.pillar-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--donkerblauw); margin: 0; letter-spacing: -0.01em; }
.pillar-card .icon { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.pillar-card p { color: var(--grey-700); font-size: 15.5px; line-height: 1.65; margin: 0 0 18px; }
.pillar-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pillar-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--donkergrijs); font-weight: 500; }
.pillar-card ul li::before { content: ""; width: 18px; height: 18px; border-radius: 999px; background: var(--site-accent-tint); border: 1.5px solid var(--site-accent); flex-shrink: 0; margin-top: 3px; background-image: linear-gradient(45deg, transparent 45%, var(--site-accent) 45% 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, var(--site-accent) 45% 55%, transparent 55%); background-size: 10px 2px, 10px 2px; background-position: 4px 7px, 4px 7px; background-repeat: no-repeat; }

/* ---------- Flow diagram ---------- */
.flow {
  background: #fff;
  border-radius: 32px;
  padding: 56px 40px;
  box-shadow: 0 14px 40px rgba(16,6,67,0.08);
  border: 1px solid rgba(16,6,67,0.05);
}
.flow-row { display: flex; align-items: stretch; gap: 8px; flex-wrap: nowrap; }
.flow-node {
  flex: 1; min-width: 0;
  background: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  border: 1px solid rgba(16,6,67,0.08);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border-top: 6px solid var(--lichtblauw);
}
.flow-node.accent { border-top-color: var(--site-accent); }
.flow-node.navy { border-top-color: var(--donkerblauw); background: var(--donkerblauw); color: #fff; }
.flow-node h4 { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--donkerblauw); margin: 0; letter-spacing: -0.005em; }
.flow-node.navy h4 { color: #fff; }
.flow-node p { font-size: 12.5px; color: var(--grey-700); margin: 0; line-height: 1.45; }
.flow-node.navy p { color: rgba(255,255,255,0.78); }
.flow-arrow { display: flex; align-items: center; flex-shrink: 0; padding: 0 4px; color: var(--site-accent); }
.flow-strip {
  margin-top: 32px;
  background: var(--softblauw);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex; align-items: center; gap: 24px;
}
.flow-strip .v { font-family: var(--font-display); font-weight: 900; font-size: 36px; color: var(--site-accent); letter-spacing: -0.02em; flex-shrink: 0; }
.flow-strip p { margin: 0; color: var(--donkerblauw); font-size: 15px; font-weight: 600; line-height: 1.5; }

/* ---------- Cases ---------- */
.cases-hero {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
  box-shadow: 0 14px 40px rgba(16,6,67,0.08);
  border: 1px solid rgba(16,6,67,0.05);
  margin-bottom: 24px;
}
.cases-hero .body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.cases-hero .tags { display: flex; gap: 8px; margin-bottom: 18px; }
.cases-hero .tag { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.cases-hero .tag.orange { background: var(--site-accent); color: #fff; }
.cases-hero .tag.outline { background: transparent; border: 1.5px solid rgba(16,6,67,0.15); color: var(--donkerblauw); }
.cases-hero h3 { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--donkerblauw); margin: 0 0 14px; letter-spacing: -0.015em; line-height: 1.2; }
.cases-hero p { color: var(--grey-700); font-size: 15.5px; line-height: 1.65; margin: 0 0 24px; }
.cases-hero .kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cases-hero .kpi { background: var(--softblauw); border-radius: 14px; padding: 16px; }
.cases-hero .kpi .v { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--donkerblauw); letter-spacing: -0.01em; }
.cases-hero .kpi .l { font-size: 12px; color: var(--grey-700); margin-top: 2px; }
.cases-hero .stat-side {
  background: var(--site-accent);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 32px; text-align: center; position: relative; overflow: hidden;
}
.cases-hero .stat-side::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 240px; height: 240px; background: url("assets/beeldmerk-white.svg") no-repeat center/contain; opacity: 0.10; }
.cases-hero .stat-side .v { font-family: var(--font-display); font-weight: 900; font-size: 120px; color: #fff; letter-spacing: -0.04em; line-height: 0.95; position: relative; z-index: 1; }
.cases-hero .stat-side .l { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 8px; letter-spacing: -0.005em; position: relative; z-index: 1; }

.cases-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-mini {
  background: #fff; border-radius: 22px; padding: 32px;
  border: 1px solid rgba(16,6,67,0.06);
  box-shadow: 0 6px 22px rgba(16,6,67,0.05);
  display: flex; gap: 24px; align-items: center;
}
.case-mini .v { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: var(--site-accent); letter-spacing: -0.03em; line-height: 0.95; flex-shrink: 0; }
.case-mini h4 { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--donkerblauw); margin: 0 0 6px; letter-spacing: -0.005em; }
.case-mini p { font-size: 14px; color: var(--grey-700); margin: 0 0 8px; line-height: 1.5; }
.case-mini .tag { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--site-accent); }

/* ---------- Quote ---------- */
.quote-block {
  background: #fff;
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 14px 40px rgba(16,6,67,0.08);
  position: relative;
  border: 1px solid rgba(16,6,67,0.05);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.quote-block .mark { position: absolute; top: 32px; left: 56px; font-family: var(--font-display); font-weight: 900; font-size: 100px; color: var(--site-accent); opacity: 0.15; line-height: 0.8; }
.quote-block blockquote { margin: 0; padding: 0; font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--donkerblauw); line-height: 1.35; letter-spacing: -0.005em; max-width: 760px; }
.quote-block .by { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.quote-block .by img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; }
.quote-block .by .name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--donkerblauw); }
.quote-block .by .role { font-size: 13px; color: var(--grey-700); }
.quote-block .stat-aside { text-align: center; flex-shrink: 0; }
.quote-block .stat-aside .v { font-family: var(--font-display); font-weight: 900; font-size: 80px; color: var(--site-accent); letter-spacing: -0.03em; line-height: 0.9; }
.quote-block .stat-aside .l { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--donkerblauw); margin-top: 8px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.pricing-card {
  background: #fff; border-radius: 22px; padding: 32px 28px;
  border: 1px solid rgba(16,6,67,0.08);
  display: flex; flex-direction: column; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16,6,67,0.10); }
.pricing-card .name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--donkerblauw); letter-spacing: -0.005em; margin-bottom: 4px; }
.pricing-card .price { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: var(--donkerblauw); letter-spacing: -0.025em; line-height: 1; margin: 8px 0 6px; }
.pricing-card .price .per { font-size: 14px; font-weight: 600; color: var(--grey-700); margin-left: 4px; }
.pricing-card .sub { font-size: 13px; color: var(--grey-700); margin-bottom: 4px; line-height: 1.45; }
.pricing-card .setup { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.06em; color: var(--grey-500); margin-bottom: 4px; }
.pricing-card .addon { font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--site-accent); }
.pricing-card .divider { height: 1px; background: rgba(16,6,67,0.10); margin: 18px 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pricing-card ul li { display: flex; gap: 9px; font-size: 13.5px; color: var(--donkergrijs); line-height: 1.4; align-items: flex-start; }
.pricing-card ul li::before { content: "✓"; color: var(--site-accent); font-weight: 800; flex-shrink: 0; }
.pricing-card .pick { margin-top: 22px; justify-content: center; }
.pricing-card.featured { background: var(--site-accent); color: #fff; border: none; box-shadow: 0 24px 50px rgba(254,89,0,0.30); }
.pricing-card.featured .name, .pricing-card.featured .price, .pricing-card.featured .sub, .pricing-card.featured ul li { color: #fff; }
.pricing-card.featured .price .per, .pricing-card.featured .sub { color: rgba(255,255,255,0.85); }
.pricing-card.featured .setup, .pricing-card.featured .addon { color: rgba(255,255,255,0.92); }
.pricing-card.featured .divider { background: rgba(255,255,255,0.25); }
.pricing-card.featured ul li::before { color: #fff; }
.pricing-card.featured .pick { background: #fff; color: var(--site-accent); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.pricing-card.featured .pick:hover { background: #fff; color: var(--donkerblauw); }
.pricing-card .badge-most { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--donkerblauw); color: #fff; padding: 7px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }

.care-strip {
  margin-top: 28px;
  background: #fff; border: 1px solid rgba(16,6,67,0.10);
  border-radius: 22px; padding: 28px 32px;
  display: grid; grid-template-columns: 220px 1fr auto; gap: 36px; align-items: center;
}
.care-strip .name-block .name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--donkerblauw); }
.care-strip .name-block .price { font-family: var(--font-display); font-weight: 900; font-size: 32px; color: var(--donkerblauw); letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }
.care-strip .name-block .price .per { font-size: 13px; font-weight: 600; color: var(--grey-700); margin-left: 4px; }
.care-strip .name-block .setup { font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.06em; color: var(--grey-500); margin-top: 4px; }
.care-strip .desc .lbl { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--site-accent); margin-bottom: 6px; }
.care-strip .desc p { font-size: 14px; color: var(--donkergrijs); line-height: 1.55; margin: 0; max-width: 580px; }
.care-strip ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--grey-700); }
.care-strip ul li { display: flex; gap: 8px; align-items: flex-start; }
.care-strip ul li::before { content: "✓"; color: var(--site-accent); font-weight: 800; }
.care-strip ul li.muted::before { content: "+"; color: var(--grey-500); }

.pricing-foot { text-align: center; margin-top: 36px; color: var(--grey-700); font-size: 14.5px; }

/* ---------- Inclusions ---------- */
.inclusions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 48px; }
.inclusion { display: flex; gap: 18px; align-items: flex-start; }
.inclusion .ico { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.inclusion h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #fff; margin: 0 0 6px; letter-spacing: -0.005em; }
.inclusion p { color: rgba(255,255,255,0.76); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.team-grid h2 { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--donkerblauw); margin: 0 0 24px; letter-spacing: -0.02em; line-height: 1.1; max-width: 540px; }
.team-grid p { color: var(--grey-700); font-size: 17px; line-height: 1.7; margin: 0 0 18px; max-width: 520px; }
.team-grid p strong { color: var(--donkerblauw); }
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; max-width: 480px; }
.team-stats .v { font-family: var(--font-display); font-weight: 900; font-size: 44px; color: var(--site-accent); letter-spacing: -0.025em; line-height: 1; }
.team-stats .l { color: var(--donkerblauw); font-weight: 700; font-size: 15px; margin-top: 6px; }
.team-photos { position: relative; height: 540px; }
.team-photos img { position: absolute; border-radius: 24px; box-shadow: 0 24px 50px rgba(16,6,67,0.18); object-fit: cover; }
.team-photos img.a { top: 0; right: 40px; width: 320px; height: 400px; }
.team-photos img.b { bottom: 0; left: 0; width: 280px; height: 340px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid rgba(16,6,67,0.08); border-radius: 18px; padding: 24px 28px; cursor: pointer; transition: border .2s var(--ease), box-shadow .2s var(--ease); }
.faq-item:hover { border-color: var(--site-accent); box-shadow: 0 6px 22px rgba(16,6,67,0.05); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--donkerblauw); letter-spacing: -0.005em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--site-accent); flex-shrink: 0; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { margin-top: 14px; color: var(--grey-700); font-size: 15px; line-height: 1.7; }

/* ---------- CTA close block ---------- */
.cta-block {
  background: var(--donkerblauw);
  color: #fff;
  padding: 120px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-block .clouds-top { position: absolute; left: 0; right: 0; top: -1px; height: 100px; background: url("assets/wolken-wit.png") no-repeat center top/100% 100%; transform: scaleY(-1); pointer-events: none; }
.cta-block .clouds-bottom { position: absolute; left: 0; right: 0; bottom: -1px; height: 100px; background: url("assets/wolken-wit.png") no-repeat center bottom/100% 100%; pointer-events: none; opacity: 0.6; }
.cta-block .beeldmerk-bg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: url("assets/beeldmerk-white.svg") no-repeat center/contain; opacity: 0.04; }
.cta-block .inner { position: relative; z-index: 2; }
.cta-block h2 { font-family: var(--font-display); font-weight: 900; font-size: 80px; color: #fff; margin: 18px 0 24px; letter-spacing: -0.03em; line-height: 1.0; }
.cta-block h2 .accent { color: var(--site-accent); }
.cta-block p { color: rgba(255,255,255,0.84); font-size: 19px; max-width: 640px; margin: 0 auto 40px; line-height: 1.65; }
.cta-block .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-block .meta { margin-top: 56px; display: flex; gap: 36px; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--donkerblauw); color: rgba(255,255,255,0.72); padding: 56px 0 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.site-footer h5 { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; margin: 0 0 16px; letter-spacing: 0.02em; }
.site-footer a { display: block; padding: 4px 0; font-size: 14px; color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: #fff; }
.site-footer .footer-intro { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 320px; line-height: 1.65; margin: 0; }
.site-footer .legal { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); font-size: 13px; flex-wrap: wrap; gap: 12px; }
.site-footer .legal a { display: inline; }
.site-footer img.logo { height: 32px; margin-bottom: 16px; }

/* ---------- Animations ---------- */
@keyframes floatCloud {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}
.float-anim { animation: floatCloud 24s ease-in-out infinite; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 200px; }
  .hero h1 { font-size: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-photos { height: 480px; }
  .stat-bg .big { font-size: 140px; }
  .cta-block h2 { font-size: 56px; }
  .cases-hero { grid-template-columns: 1fr; }
  .cases-secondary { grid-template-columns: 1fr; }
  .quote-block { grid-template-columns: 1fr; padding: 40px; }
  .flow-row { flex-wrap: wrap; }
  .care-strip { grid-template-columns: 1fr; gap: 18px; }
  .site-footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav .pill-cta { display: inline-flex; }
  .site-header .nav { display: flex; gap: 0; }
  .site-header .nav a:not(.pill-cta) { display: none; }
  .section { padding: 80px 0; }
  .section-head h2, .stat-bg h2, .team-grid h2 { font-size: 32px; }
  .hero h1 { font-size: 42px; }
  .stat-bg .big { font-size: 100px; }
  .stat-bg .stat-trio { grid-template-columns: 1fr; }
  .problem-trio { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .cases-hero .stat-side .v { font-size: 80px; }
  .cases-hero .body { padding: 32px 24px; }
  .cta-block h2 { font-size: 40px; }
  .quote-block blockquote { font-size: 20px; }
  .team-photos img.a { width: 240px; height: 300px; right: 0; }
  .team-photos img.b { width: 200px; height: 240px; }
  .team-photos { height: 420px; }
  .site-footer .top { grid-template-columns: 1fr; gap: 32px; }
}
