/* Poppins: het huisstijllettertype van AVK (zie avk.nl). Zelf gehost in plaats
   van via de Google-CDN: de site doet verder geen enkele externe request, en
   dat houdt het ook AVG-technisch schoon. Poppins staat onder de SIL Open Font
   License 1.1, die zelf hosten toestaat. Gewichten 400 (tekst) en 600 (koppen)
   volgen avk.nl; 700 en 800 zijn voor accenten en cijfers. */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/poppins-800.woff2') format('woff2'); }

/* digitaalvitaal.eu, huisstijl AVK.
   Basis: de stylesheet van copilotagents.nl en digitaleetiquette.nl (zelfde
   tokens, componenten en breakpoints). De vier kleuren van de logo-ring
   (blauw, rood, groen, geel) dragen de vier thema's; oranje is de actie. */
:root {
  --blauw: #004C86;
  --blauw-donker: #003862;
  --blauw-nacht: #002444;
  --oranje: #ED7F0A;
  --oranje-donker: #c96407;
  --rood: #C61D1D;
  --geel: #F8BE0B;
  --groen: #4F9433;
  --inkt: #16232f;
  --grijs: #5a6b7a;
  --grijs-licht: #f4f7fa;
  --rand: #dde5ec;
  --wit: #ffffff;
  --schaduw: 0 12px 30px -12px rgba(0, 40, 80, 0.25);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: var(--inkt);
  background: var(--wit);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--blauw-donker); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--grijs); }
.kicker {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--oranje); margin-bottom: 12px;
}
.kicker.center { display: block; }
.lead { font-size: 1.15rem; max-width: 680px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
sup.r { font-size: .5em; vertical-align: super; line-height: 0; }

/* Knoppen: oranje is de actie, blauw de identiteit */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px;
  border-radius: 999px; font-weight: 700; text-decoration: none; border: none;
  cursor: pointer; font-size: 1rem; font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--oranje); color: #fff; box-shadow: 0 8px 20px -6px rgba(237,127,10,.55); }
.btn-primary:hover { background: var(--oranje-donker); box-shadow: 0 12px 26px -6px rgba(237,127,10,.65); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-blauw { background: var(--blauw); color: #fff; }
.btn-blauw:hover { background: var(--blauw-donker); }
.btn-wit { background: #fff; color: var(--blauw-donker); }
.btn-outline { background: transparent; color: var(--blauw); border: 1.5px solid var(--blauw); }
.btn-outline:hover { background: var(--blauw); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-svg { width: 20px; height: 20px; flex: none; }
.btn:focus-visible, .nav-toggle:focus-visible, .dvc-btn:focus-visible, .chip:focus-visible { outline: 3px solid var(--geel); outline-offset: 2px; }

/* Skip-link, zichtbaar bij toetsenbordfocus */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 16px; top: 12px; z-index: 100; background: var(--blauw-donker);
  color: #fff; padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 700;
}

/* Header / nav */
.topbar {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--rand);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; max-width: 1240px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--blauw); white-space: nowrap; }
.brand img { height: 52px; width: 52px; border-radius: 50%; }
.brand-tekst { display: flex; flex-direction: column; line-height: 1.05; }
.brand-tekst b { font-size: 1.25rem; font-weight: 800; color: var(--blauw); letter-spacing: -.01em; }
.brand-tekst small { font-size: .68rem; font-weight: 600; color: var(--grijs); letter-spacing: .04em; text-transform: uppercase; }
.mainnav { display: flex; align-items: center; gap: 18px; }
.mainnav a { white-space: nowrap; }
.mainnav a:not(.btn) { text-decoration: none; color: var(--inkt); font-weight: 600; font-size: .9rem; }
.mainnav .btn { padding: 11px 20px; font-size: .92rem; }
.mainnav a:not(.btn):hover, .mainnav a.actief:not(.btn) { color: var(--oranje); }
.mainnav a.nav-solo { color: var(--blauw); border: 1.5px solid var(--rand); padding: 7px 14px; border-radius: 999px; }
.mainnav a.nav-solo:hover { border-color: var(--blauw); }
.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(150deg, var(--blauw) 0%, var(--blauw-donker) 60%, var(--blauw-nacht) 100%);
  color: #fff; padding: 80px 0 96px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; }
.hero .kicker { color: var(--geel); }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.2vw, 3.3rem); margin-bottom: .3em; }
.hero h1 sup { color: var(--geel); }
.hero .lead { color: rgba(255,255,255,.88); font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-ctas.gecentreerd { justify-content: center; }
.hero-punten { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hero-punten li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.92); font-size: .98rem; }
.hero-punten li::before { content: "✓"; color: var(--geel); font-weight: 900; flex: none; }
.hero-badge {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 999px; font-size: .85rem; color: rgba(255,255,255,.85);
  text-decoration: none; transition: background .15s ease;
}
.hero-badge:hover { background: rgba(255,255,255,.16); }
.hero-badge img { height: 22px; width: 22px; border-radius: 50%; background: #fff; }
.hero-cijfers { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 30px; }
.hero-cijfer b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--geel); line-height: 1.1; }
.hero-cijfer span { font-size: .82rem; color: rgba(255,255,255,.8); }

/* Het stippenveld in de hero (assets/js/agentveld.js, overgenomen van
   copilotagents.nl). Alles is voorwaardelijk op html.veld-actief: die klasse
   zet het script pas als het kan draaien. Zonder die klasse is de pagina
   exact de pagina zonder deze laag. */
#agentveld { display: none; }
html.veld-actief #agentveld { display: block; position: fixed; inset: 0; z-index: -1; pointer-events: none; }
#agentveld canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
html.veld-actief .hero { background: transparent; }

/* Secties algemeen */
.sectie-alt { background: var(--grijs-licht); }
.sectie-donker {
  background: linear-gradient(150deg, var(--blauw) 0%, var(--blauw-donker) 60%, var(--blauw-nacht) 100%);
  color: #fff;
}
.sectie-donker h2, .sectie-donker h3 { color: #fff; }
.sectie-donker .kicker { color: var(--geel); }
.sectie-donker .lead, .sectie-donker p { color: rgba(255, 255, 255, .88); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mt-36 { margin-top: 36px; }
.mt-28 { margin-top: 28px; }

/* Kaarten */
.card {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 28px; height: 100%;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }
.card ul { margin: 12px 0 0; padding: 0 0 0 18px; color: var(--grijs); font-size: .93rem; }
.card li { margin-bottom: 4px; }

/* Iconen: lijniconen in een gekleurde badge (kleuren volgen de logo-ring) */
.icoon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 14px; flex: none;
}
.icoon-badge svg { width: 26px; height: 26px; }
.icoon-badge.kleur-1 { background: rgba(0, 76, 134, .1);  color: var(--blauw); }
.icoon-badge.kleur-2 { background: rgba(237, 127, 10, .12); color: var(--oranje); }
.icoon-badge.kleur-3 { background: rgba(79, 148, 51, .12);  color: var(--groen); }
.icoon-badge.kleur-4 { background: rgba(198, 29, 29, .1);   color: var(--rood); }
.icoon-badge.kleur-5 { background: rgba(248, 190, 11, .18); color: #9a7200; }
.icoon-wit { display: inline-flex; margin-bottom: 10px; color: #fff; }
.icoon-wit svg { width: 30px; height: 30px; }

/* Herken je dit: pijnpunten */
.pijn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.pijn {
  background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 24px 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.pijn .icoon-badge { margin: 0; width: 46px; height: 46px; }
.pijn .icoon-badge svg { width: 22px; height: 22px; }
.pijn h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pijn p { margin: 0; font-size: .95rem; }
.pijn-slot { margin-top: 32px; text-align: center; font-size: 1.05rem; color: var(--blauw-donker); font-weight: 600; }

/* Vier kleurblokken (wat is Digitaal Vitaal) */
.thema-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.thema {
  border-radius: var(--radius); padding: 22px; color: #fff; min-height: 170px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.thema h3 { color: #fff; margin: 0 0 4px; font-size: 1.02rem; }
.thema p { color: rgba(255,255,255,.9); font-size: .88rem; margin: 0; }
.thema-1 { background: linear-gradient(160deg, var(--blauw), #0068b3); }
.thema-2 { background: linear-gradient(160deg, var(--rood), #9a1616); }
.thema-3 { background: linear-gradient(160deg, var(--groen), #3a7326); }
.thema-4 { background: linear-gradient(160deg, #d9a400, var(--geel)); }
.thema-4 h3, .thema-4 p { color: var(--blauw-nacht); }

/* Aanpak: de kwartaalcyclus */
.cyclus { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; counter-reset: stap; }
.stap { position: relative; background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 24px 22px 22px; }
.stap-nr {
  counter-increment: stap; width: 42px; height: 42px; border-radius: 50%;
  background: var(--blauw); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; margin-bottom: 14px;
}
.stap-nr::before { content: counter(stap); }
.stap h3 { font-size: 1.02rem; margin-bottom: 6px; }
.stap p { font-size: .9rem; margin: 0; }
.stap::after {
  content: ""; position: absolute; right: -14px; top: 40px; width: 12px; height: 12px;
  border-right: 2px solid var(--rand); border-top: 2px solid var(--rand); transform: rotate(45deg);
}
.stap:last-child::after { display: none; }
.cyclus-noot { text-align: center; margin: 32px auto 0; max-width: 720px; font-size: 1rem; }
.cyclus-noot b { color: var(--blauw-donker); }
.persona-rij { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--rand);
  border-radius: 999px; padding: 8px 14px; font-size: .86rem; font-weight: 600; color: var(--blauw-donker);
}
.chip i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.chip .n1 { background: var(--rood); } .chip .n2 { background: var(--geel); } .chip .n3 { background: var(--groen); }

/* Vier thema's met onderwerpen */
.themas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.thema-kaart { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 28px; border-top: 6px solid var(--blauw); }
.thema-kaart.k2 { border-top-color: var(--rood); }
.thema-kaart.k3 { border-top-color: var(--groen); }
.thema-kaart.k4 { border-top-color: var(--geel); }
.thema-kaart h3 { margin-bottom: 6px; }
.thema-kaart .thema-intro { font-size: .95rem; margin-bottom: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.tags li { background: var(--grijs-licht); border: 1px solid var(--rand); border-radius: 999px; padding: 5px 12px; font-size: .8rem; color: var(--inkt); }

/* Ik, Wij, Ons */
.ikwijons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.iwo { background: var(--grijs-licht); border-radius: var(--radius); padding: 26px; border: 1px solid var(--rand); }
.iwo b.letter { display: inline-block; font-size: 1.8rem; font-weight: 800; color: var(--blauw); line-height: 1; margin-bottom: 8px; }
.iwo h3 { font-size: 1.05rem; margin-bottom: 8px; }
.iwo p { font-size: .93rem; margin: 0; }

/* Voor jouw rol */
.rol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.rol-kaart {
  background: #fff; border-radius: var(--radius); padding: 24px; color: var(--inkt);
  box-shadow: var(--schaduw); display: flex; flex-direction: column; text-decoration: none;
  transition: transform .15s ease;
}
.rol-kaart:hover { transform: translateY(-3px); }
.rol-kaart .icoon-badge { width: 44px; height: 44px; margin-bottom: 12px; }
.rol-kaart .icoon-badge svg { width: 22px; height: 22px; }
.rol-kaart h3 { color: var(--blauw-donker); font-size: 1.05rem; margin-bottom: 6px; }
.rol-kaart p { font-size: .9rem; color: var(--grijs); margin: 0 0 14px; }
.rol-link { margin-top: auto; color: var(--blauw); font-weight: 700; font-size: .9rem; display: inline-flex; gap: 8px; align-items: baseline; }
.rol-link::before { content: "→"; color: var(--oranje); font-weight: 900; }
.rol-kaart:hover .rol-link { text-decoration: underline; }
.branche-noot { text-align: center; margin: 32px 0 0; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.branche-noot a { color: #fff; font-weight: 700; }

/* Bewijs: testimonials en klantlogo's */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.quote { margin: 0; background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.quote p { color: var(--inkt); font-size: .95rem; margin: 0 0 14px; flex: 1; }
.quote p::before { content: "“"; color: var(--oranje); font-weight: 800; font-size: 1.4em; line-height: 0; margin-right: 2px; }
.quote footer { font-size: .85rem; color: var(--grijs); }
.quote footer b { color: var(--blauw-donker); display: block; }
.klanten { margin-top: 56px; }
.klanten-kop {
  text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--grijs); margin: 0 0 22px;
}
.klanten-band {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.klanten-spoor { display: flex; width: max-content; animation: klanten-schuif 60s linear infinite; }
.klanten-band:hover .klanten-spoor { animation-play-state: paused; }
.klanten-rij { list-style: none; margin: 0; padding: 0 56px 0 0; display: flex; align-items: center; gap: 56px; }
.klanten-rij img { height: 46px; width: auto; max-width: 150px; object-fit: contain; opacity: .8; transition: opacity .2s ease; }
.klanten-rij img.hoog { height: 62px; }
.klanten-rij img:hover { opacity: 1; }
@keyframes klanten-schuif { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.klanten-noot { text-align: center; color: var(--grijs); font-size: .95rem; margin: 22px auto 0; max-width: 620px; }
.award-rij { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.award { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--rand); border-radius: 999px; padding: 8px 18px 8px 8px; font-size: .88rem; font-weight: 600; color: var(--blauw-donker); }
/* De keurmerklogo's van avk.nl zijn witte varianten (voor een donkere voet),
   dus ze staan hier op een blauw rondje. */
.award img { width: 44px; height: 44px; object-fit: contain; background: var(--blauw-donker); border-radius: 50%; padding: 5px; }

/* Investering */
.prijs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.prijs-kaart {
  background: #fff; border: 1px solid var(--rand); border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; box-shadow: var(--schaduw); position: relative;
}
.prijs-kaart.uitgelicht { border: 2px solid var(--oranje); }
.prijs-badge {
  position: absolute; top: -14px; right: 28px; background: var(--oranje); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 6px 14px; border-radius: 999px;
}
.prijs-titel { font-size: 1.1rem; font-weight: 700; color: var(--blauw-donker); margin-bottom: 4px; }
.prijs-sub { color: var(--grijs); font-size: .9rem; margin-bottom: 18px; }
.prijs-bedrag { font-size: 2.1rem; font-weight: 800; color: var(--blauw-donker); line-height: 1.1; }
.prijs-bedrag span { font-size: .95rem; font-weight: 500; color: var(--grijs); white-space: nowrap; }
.prijs-maand { font-size: .9rem; color: var(--grijs); margin-top: 6px; }
.prijs-maand b { color: var(--blauw); }
.prijs-kaart ul { list-style: none; margin: 20px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.prijs-kaart li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--inkt); }
.prijs-kaart li::before { content: "✓"; color: var(--groen); font-weight: 900; flex: none; }
.prijs-kaart .btn { margin-top: auto; align-self: flex-start; }
.prijs-noot { text-align: center; color: var(--grijs); font-size: .85rem; margin-top: 24px; }
.solo-cta {
  margin-top: 44px; background: var(--grijs-licht); border: 1px solid var(--rand);
  border-left: 4px solid var(--oranje); border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.solo-cta h3 { margin-bottom: 6px; }
.solo-cta p { margin: 0; max-width: 640px; font-size: .95rem; }
.solo-cta .btn { flex: none; }

/* Bouwstenen (producten die al bestaan) */
.bouwstenen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.bouwsteen { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.bouwsteen h3 { font-size: 1.02rem; margin-bottom: 6px; }
.bouwsteen p { font-size: .9rem; margin: 0 0 12px; flex: 1; }
.bouwsteen a { color: var(--blauw); font-weight: 700; font-size: .88rem; text-decoration: none; }
.bouwsteen a:hover { text-decoration: underline; }
.bouwsteen a::after { content: " ↗"; color: var(--oranje); }

/* Team: alle collega's */
.team-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px 14px; margin-top: 40px; }
.collega { text-align: center; }
.collega img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; background: var(--grijs-licht); border: 3px solid #fff; box-shadow: var(--schaduw); }
.collega b { display: block; font-size: .86rem; color: var(--blauw-donker); line-height: 1.25; }
.collega span { display: block; font-size: .74rem; color: var(--grijs); line-height: 1.3; margin-top: 2px; }
.collega a { text-decoration: none; }
.collega a:hover b { text-decoration: underline; }
.team-noot { text-align: center; color: var(--grijs); font-size: .95rem; margin: 30px auto 0; max-width: 620px; }

/* FAQ */
.faq-lijst { max-width: 760px; margin: 32px auto 0; display: grid; gap: 12px; }
.faq-lijst details { background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); box-shadow: var(--schaduw); padding: 4px 22px; }
.faq-lijst summary { cursor: pointer; font-weight: 600; color: var(--blauw-donker); padding: 14px 28px 14px 0; list-style: none; position: relative; }
.faq-lijst summary::-webkit-details-marker { display: none; }
.faq-lijst summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--oranje); font-size: 1.35rem; font-weight: 600; line-height: 1; }
.faq-lijst details[open] summary::after { content: "\2212"; }
.faq-lijst details p { margin: 0 0 18px; }

/* Slot-CTA balk */
.cta-balk { background: linear-gradient(120deg, var(--oranje), var(--oranje-donker)); color: #fff; text-align: center; padding: 64px 0; }
.cta-balk h2 { color: #fff; }
.cta-balk p { color: rgba(255,255,255,.92); }
.cta-balk .btn-ghost { border-color: #fff; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { margin-top: 28px; }
.contact-info div { margin-bottom: 20px; }
.contact-info .label { font-weight: 700; color: var(--blauw-donker); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-info a { color: var(--blauw); text-decoration: none; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }
form.contactform { display: flex; flex-direction: column; gap: 14px; }
.contactform label { font-weight: 600; font-size: .9rem; color: var(--inkt); display: block; margin-bottom: 4px; }
.contactform input[type=text], .contactform input[type=email], .contactform input[type=tel], .contactform textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--rand); border-radius: 10px;
  font: inherit; color: var(--inkt); background: #fff;
}
.contactform textarea { min-height: 120px; resize: vertical; }
.contactform input:focus, .contactform textarea:focus { outline: 2px solid var(--blauw); outline-offset: 1px; }
.contactform .btn { align-self: flex-start; }
.verborgen-veld { position: absolute; left: -9999px; }
.form-melding { padding: 12px 16px; border-radius: 10px; font-weight: 600; margin-bottom: 4px; }
.form-melding.ok { background: #e8f3e2; color: #2c5a1a; border: 1px solid var(--groen); }
.form-melding.fout { background: #fbe7e7; color: #8a1414; border: 1px solid var(--rood); }
.form-noot { font-size: .82rem; color: var(--grijs); margin: 2px 0 0; }

/* Footer */
footer.site-footer { background: var(--blauw-donker); color: rgba(255,255,255,.85); padding: 48px 0 28px; font-size: .9rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 28px; align-items: center; }
.footer-brand img { height: 64px; width: auto; border-radius: 12px; background: #fff; padding: 6px 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-keurmerken { display: flex; gap: 14px; align-items: center; }
.footer-keurmerken img { height: 56px; width: 56px; object-fit: contain; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-bottom a { color: #fff; text-decoration: underline; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   De Digitaal Vitaal Check: 7 vragen, direct in de hero. Overgenomen van de
   check op avk.nl/digitaal-vitaal-checklist (de B-variant die het beter doet),
   in de kleuren van deze site. Alle dynamische kleuren zet app.js via
   element.style, wat binnen de CSP zonder 'unsafe-inline' is toegestaan.
   ===================================================================== */
.dvc { position: relative; color: var(--inkt); max-width: 560px; margin-left: auto; }
.dvc-badge {
  position: absolute; top: -14px; right: 18px; background: var(--groen); color: #fff; font-weight: 800;
  font-size: 12px; letter-spacing: .06em; padding: 7px 16px; border-radius: 999px; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.dvc-card { background: #fff; border-radius: 18px; box-shadow: var(--schaduw); overflow: hidden; }
.dvc-header { display: flex; align-items: center; gap: 12px; padding: 18px 22px 14px; }
.dvc-header img { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.dvc-header h2 { margin: 0; font-size: 1.05rem; font-weight: 700; color: var(--blauw-donker); }
.dvc-sub { margin: 2px 0 0; font-size: .78rem; color: var(--grijs); }
.dvc-stepcount { margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--grijs); white-space: nowrap; }
.dvc-progress { height: 5px; background: #E8EEF6; }
.dvc-progress-bar { height: 100%; width: 0; background: var(--blauw); transition: width .35s ease; }
.dvc-body { padding: 22px 24px 24px; }
.dvc-theme-label { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blauw); margin: 0 0 8px; }
.dvc-question { font-size: 1.15rem; font-weight: 700; color: var(--blauw-donker); margin: 0 0 6px; line-height: 1.3; }
.dvc-hint { font-size: .86rem; color: var(--grijs); margin: 0 0 18px; }
.dvc-scorebox { text-align: center; margin: 0 0 4px; }
.dvc-scoreval { font-size: 2.6rem; font-weight: 800; color: var(--blauw-donker); line-height: 1; }
.dvc-scoreword { font-size: .8rem; font-weight: 700; color: var(--blauw); margin-top: 2px; min-height: 20px; }
input.dvc-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--rood) 0%, var(--geel) 44.4%, var(--groen) 100%);
  outline: none; margin: 14px 0 6px; cursor: pointer; --dvc-thumb: var(--geel);
}
input.dvc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 4px solid var(--dvc-thumb); box-shadow: 0 2px 6px rgba(0,0,0,.25); cursor: pointer; }
input.dvc-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--dvc-thumb); box-shadow: 0 2px 6px rgba(0,0,0,.25); cursor: pointer; }
input.dvc-slider:focus-visible { outline: 3px solid var(--geel); outline-offset: 4px; }
.dvc-slider-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--grijs); margin-bottom: 18px; }
.dvc-nav { display: flex; align-items: center; gap: 14px; }
.dvc-btn {
  flex: 1; background: var(--oranje); color: #fff; border: none; border-radius: 999px; font-family: inherit;
  font-size: .98rem; font-weight: 700; padding: 13px 20px; cursor: pointer; transition: background .15s ease;
}
.dvc-btn:hover { background: var(--oranje-donker); }
.dvc-btn[disabled] { opacity: .55; cursor: wait; }
.dvc-back { background: none; border: none; font-family: inherit; font-size: .86rem; font-weight: 700; color: var(--grijs); cursor: pointer; padding: 10px 4px; }
.dvc-back:hover { color: var(--blauw-donker); }
.dvc-result-hero { display: flex; gap: 18px; align-items: center; background: var(--grijs-licht); border: 1px solid var(--rand); border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; }
.dvc-ring { flex: 0 0 auto; position: relative; width: 96px; height: 96px; }
.dvc-ring svg { transform: rotate(-90deg); width: 96px; height: 96px; }
.dvc-ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dvc-ring-num b { font-size: 1.7rem; color: var(--blauw-donker); line-height: 1; }
.dvc-ring-num span { font-size: .55rem; letter-spacing: .15em; color: var(--grijs); font-weight: 700; }
.dvc-result-hero h3 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: var(--blauw-donker); }
.dvc-result-hero p { margin: 0; font-size: .86rem; }
.dvc-themes { margin: 0 0 20px; }
.dvc-theme-row { margin-bottom: 10px; }
.dvc-theme-top { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 700; color: var(--blauw-donker); margin-bottom: 4px; }
.dvc-theme-track { height: 8px; border-radius: 999px; background: #E8EEF6; overflow: hidden; }
.dvc-theme-fill { height: 100%; border-radius: 999px; width: 0; transition: width .8s ease; }
.dvc-form-title { font-size: 1.05rem; font-weight: 700; color: var(--blauw-donker); margin: 0 0 4px; }
.dvc-form-sub { font-size: .84rem; color: var(--grijs); margin: 0 0 14px; }
.dvc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.dvc-form-grid .dvc-full { grid-column: 1 / -1; }
.dvc-input { width: 100%; border: 1px solid var(--rand); border-radius: 10px; padding: 12px 14px; font-family: inherit; font-size: .95rem; color: var(--inkt); background: #fff; }
.dvc-input:focus { outline: none; border-color: var(--blauw); box-shadow: 0 0 0 3px rgba(0,76,134,.12); }
.dvc-input.dvc-invalid { border-color: var(--rood); }
.dvc-optin { display: flex; gap: 9px; align-items: flex-start; font-size: .8rem; color: var(--grijs); margin: 2px 0 14px; cursor: pointer; }
.dvc-optin input { margin-top: 3px; accent-color: var(--blauw); }
.dvc-error { display: none; background: #fbe7e7; border: 1px solid var(--rood); color: #8a1414; font-size: .85rem; border-radius: 10px; padding: 10px 14px; margin-bottom: 12px; }
.dvc-error.zichtbaar { display: block; }
.dvc-error a { color: inherit; }
.dvc-footer { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; font-size: .74rem; color: var(--grijs); padding: 12px 20px 16px; }
.dvc-success { text-align: center; padding: 14px 4px 6px; }
.dvc-success .dvc-check { width: 64px; height: 64px; border-radius: 50%; background: #E7F5EC; color: var(--groen); font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.dvc-success h3 { font-size: 1.2rem; font-weight: 700; color: var(--blauw-donker); margin: 0 0 8px; }
.dvc-success p { font-size: .95rem; margin: 0 0 6px; }
.dvc-success .btn { margin-top: 12px; }

/* Rolpagina's en Solo: kop met terugverwijzing */
.hero-klein { padding: 64px 0 72px; }
.hero-klein .hero-grid { grid-template-columns: 1fr; max-width: 820px; }
.terug { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); text-decoration: none; font-size: .88rem; margin-bottom: 18px; }
.terug:hover { color: #fff; }
.herken-lijst { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 12px; }
.herken-lijst li { background: #fff; border: 1px solid var(--rand); border-left: 4px solid var(--oranje); border-radius: 12px; padding: 16px 20px; font-size: .98rem; color: var(--inkt); }
.solo-punten { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.solo-punten li { display: flex; gap: 10px; align-items: flex-start; background: #fff; border: 1px solid var(--rand); border-radius: 12px; padding: 14px 16px; font-size: .95rem; color: var(--inkt); }
.solo-punten li::before { content: "✓"; color: var(--groen); font-weight: 900; flex: none; }
.kalender { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kalender li { background: var(--grijs-licht); border: 1px solid var(--rand); border-radius: var(--radius); padding: 20px; font-size: .92rem; color: var(--inkt); }
.kalender li b { display: block; color: var(--blauw); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.prijs-tabel { width: 100%; border-collapse: collapse; margin-top: 28px; background: #fff; border: 1px solid var(--rand); border-radius: var(--radius); overflow: hidden; }
.prijs-tabel th, .prijs-tabel td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--rand); font-size: .95rem; }
.prijs-tabel th { background: var(--grijs-licht); color: var(--blauw-donker); font-weight: 700; }
.prijs-tabel td:last-child, .prijs-tabel th:last-child { text-align: right; white-space: nowrap; font-weight: 700; color: var(--blauw-donker); }
.prijs-tabel tr:last-child td { border-bottom: none; }
.tabel-scroll { overflow-x: auto; }

/* Verminderde beweging */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .btn:hover, .rol-kaart, .rol-kaart:hover { transform: none; transition: none; }
  .klanten-band { -webkit-mask-image: none; mask-image: none; }
  .klanten-spoor { animation: none; width: 100%; justify-content: center; }
  .klanten-rij { flex-wrap: wrap; justify-content: center; gap: 36px; padding-right: 0; }
  .klanten-rij[aria-hidden="true"] { display: none; }
  .dvc-progress-bar, .dvc-theme-fill { transition: none; }
}

/* Responsief */
/* Het menu heeft negen items; onder 1180px passen die niet meer op één regel
   en klapt het in tot een hamburger. */
@media (max-width: 1180px) {
  .mainnav { position: fixed; inset: 77px 0 0 0; background: #fff; flex-direction: column;
    align-items: flex-start; padding: 24px; gap: 18px; transform: translateX(100%);
    transition: transform .25s ease; overflow-y: auto; z-index: 60; }
  .mainnav.open { transform: translateX(0); }
  .mainnav a:not(.btn) { font-size: 1.05rem; }
  .mainnav a.btn { align-self: flex-start; }
  .nav-toggle { display: inline-flex; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--blauw-donker); }
}
@media (max-width: 1120px) {
  .team-grid { grid-template-columns: repeat(5, 1fr); }
  .cyclus { grid-template-columns: repeat(3, 1fr); }
  .stap::after { display: none; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dvc { margin: 0 auto; max-width: 560px; }
  .grid-2, .grid-3, .prijs-grid, .contact-grid, .themas-grid, .pijn-grid, .quotes, .bouwstenen { grid-template-columns: 1fr; }
  .thema-grid, .ikwijons, .rol-grid, .grid-4 { grid-template-columns: 1fr 1fr; }
  .kalender { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .thema-grid, .ikwijons, .rol-grid, .grid-4, .cyclus, .kalender, .solo-punten { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .collega img { width: 80px; height: 80px; }
  .klanten-rij { gap: 36px; padding-right: 36px; }
  .klanten-rij img { height: 38px; max-width: 120px; }
  .dvc-form-grid { grid-template-columns: 1fr; }
  .dvc-result-hero { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-tekst small { display: none; }
}

@media print { .topbar, .cta-balk, footer, .dvc, #agentveld { display: none !important; } }
