/* ============================================================
   Burgerzaken 360 - site styles
   Brand palette afgeleid uit het logo:
   - Navy   #14365C
   - Navy 2 #1E4A7A
   - Oranje #F39200
   - Oranje-licht #FFB04A
   - Lichtblauw #C9DEF1
   ============================================================ */

:root{
  --navy:        #14365C;
  --navy-2:      #1E4A7A;
  --navy-3:      #0E2742;
  --orange:      #F39200;
  --orange-2:    #FFB04A;
  --sky:         #C9DEF1;
  --sky-2:       #E6F0FA;
  --ink:         #1A2235;
  --muted:       #5A6678;
  --line:        #E3E9F1;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-cta:      #0E2742;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(20,54,92,.06);
  --shadow:      0 12px 30px -10px rgba(20,54,92,.18);
  --shadow-lg:   0 30px 60px -20px rgba(20,54,92,.30);
  --maxw:        1180px;
  --header-h:    108px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:var(--navy-2); text-decoration:none; }
a:hover{ color:var(--orange); }

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

.skip-link{
  position:absolute; left:-9999px; top:8px;
  background:var(--navy); color:#fff; padding:8px 12px; border-radius:6px; z-index:100;
}
.skip-link:focus{ left:8px; }

/* ---------------- Header ---------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(150%) blur(10px);
  -webkit-backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.is-scrolled{
  border-bottom-color:var(--line);
  box-shadow:var(--shadow-sm);
  background:rgba(255,255,255,.94);
}
.header-inner{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
/* Logo is een vierkante JPG met witruimte; we snijden de leegte weg
   zodat de daadwerkelijke logo-afbeelding groot in beeld komt. */
.brand{ display:inline-flex; align-items:center; height:84px; overflow:hidden; }
.brand img{
  height:200px;          /* groter dan zichtbaar - zodat we kunnen croppen */
  width:auto;
  object-fit:cover;
  object-position:center;
  transform:scale(1.05);
  display:block;
}
@media (max-width: 1000px){
  .brand{ height:72px; }
  .brand img{ height:170px; }
}
@media (max-width: 600px){
  .brand{ height:56px; }
  .brand img{ height:130px; }
}
.nav{ display:flex; align-items:center; gap:8px; }
.nav > a:not(.btn){
  color:var(--ink); font-weight:500; font-size:15px;
  padding:10px 14px; border-radius:8px;
  transition:color .15s var(--ease), background .15s var(--ease);
}
.nav > a:not(.btn):hover{ color:var(--navy); background:var(--sky-2); }
.nav > a.btn{ margin-left:6px; }
/* Plan-een-demo knop in nav: behoud witte tekst op hover */
.nav > a.btn-primary,
.nav > a.btn-primary:hover,
.nav > a.btn-primary:focus,
.nav > a.btn-primary:visited{ color:#fff !important; }

.nav-toggle{
  display:none; background:none; border:0; padding:8px; cursor:pointer;
  width:42px; height:42px; border-radius:8px;
}
.nav-toggle span{
  display:block; width:22px; height:2px; background:var(--navy); border-radius:2px;
  margin:5px auto;
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
  padding:12px 24px 20px;
}
.mobile-nav a:not(.btn){
  display:block; padding:12px 4px; color:var(--ink); font-weight:500;
  border-bottom:1px solid var(--line);
}
.mobile-nav a.btn{ margin-top:12px; }
/* Plan-een-demo knop in mobiel menu: witte tekst, geen overrides */
.mobile-nav a.btn-primary,
.mobile-nav a.btn-primary:hover,
.mobile-nav a.btn-primary:focus,
.mobile-nav a.btn-primary:active,
.mobile-nav a.btn-primary:visited{ color:#fff !important; border-bottom:0; }

@media (max-width: 900px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
  .mobile-nav:not([hidden]){ display:block; }
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 22px; border-radius:999px; font-weight:600; font-size:15px;
  border:1px solid transparent; cursor:pointer;
  transition:transform .15s var(--ease), background .2s var(--ease),
             color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space:nowrap;
}
.btn-sm{ padding:10px 16px; font-size:14px; }
.btn-primary{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff;
  box-shadow:0 10px 24px -10px rgba(20,54,92,.5);
}
.btn-primary:hover{ transform:translateY(-1px); color:#fff; box-shadow:0 14px 28px -10px rgba(20,54,92,.55); }
.btn-accent{
  background:linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color:#fff;
  box-shadow:0 10px 24px -10px rgba(243,146,0,.55);
}
.btn-accent:hover{ transform:translateY(-1px); color:#fff; }
.btn-ghost{
  background:transparent; color:var(--navy); border-color:var(--line);
}
.btn-ghost:hover{ background:var(--sky-2); color:var(--navy); border-color:var(--sky); }
.btn-ghost-light{ color:#fff; border-color:rgba(255,255,255,.25); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.45); }

/* ---------------- Typography ---------------- */
h1,h2,h3,h4{ color:var(--navy-3); font-weight:700; line-height:1.18; margin:0 0 .5em; letter-spacing:-.01em; }
h1{ font-size:clamp(2rem, 4.2vw, 3.4rem); font-weight:800; letter-spacing:-.02em; }
h2{ font-size:clamp(1.6rem, 2.8vw, 2.25rem); }
h3{ font-size:1.2rem; }
h4{ font-size:1rem; }
.accent{ color:var(--orange); }
.lead{ color:var(--muted); font-size:clamp(1.02rem, 1.1vw, 1.15rem); max-width:60ch; }
.eyebrow{
  display:inline-block;
  font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--orange);
  padding:6px 12px; border-radius:999px;
  background:rgba(243,146,0,.10);
  margin-bottom:18px;
}
.eyebrow-dark{ color:var(--navy-2); background:var(--sky-2); }
.eyebrow-light{ color:#fff; background:rgba(255,255,255,.12); }

/* ---------------- Hero ---------------- */
.hero{ position:relative; overflow:hidden; padding:72px 0 96px; }
.hero-bg{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.blob{
  position:absolute; border-radius:50%; filter:blur(60px); opacity:.55;
}
.blob-1{ width:520px; height:520px; left:-160px; top:-120px;
  background:radial-gradient(circle at 30% 30%, var(--sky), transparent 70%); }
.blob-2{
  /* Zachte navy ambient rechts - geen vorm, alleen warmte */
  width:520px; height:520px;
  right:-180px; top:-60px;
  background:radial-gradient(circle at 50% 50%, rgba(30,74,122,.18), transparent 70%);
}
.grid-overlay{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(20,54,92,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,54,92,.045) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center;
}
.hero-copy h1{ margin:.2em 0 .35em; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 22px; }
.hero-bullets{ list-style:none; padding:0; margin:8px 0 0; display:grid; gap:10px; }
.hero-bullets li{
  display:flex; align-items:center; gap:10px; color:var(--ink); font-weight:500;
}
.ico{ width:20px; height:20px; color:var(--orange); flex-shrink:0; }

/* hero visual mockup */
.hero-visual{ position:relative; min-height:380px; }
.visual-card{
  position:absolute; border-radius:var(--radius-lg);
  background:#fff; box-shadow:var(--shadow-lg);
  border:1px solid var(--line);
}
.card-back{
  inset:30px -20px 30px 40px;
  background:linear-gradient(135deg, var(--sky-2), #fff);
  transform:rotate(-3deg);
  opacity:.85;
}
.card-front{
  inset:0;
  padding:18px;
  display:flex; flex-direction:column; gap:14px;
}
.vc-row{ display:flex; gap:6px; padding-bottom:10px; border-bottom:1px solid var(--line); }
.dot{ width:10px; height:10px; border-radius:50%; }
.dot-r{ background:#ff6058; } .dot-y{ background:#ffbd2e; } .dot-g{ background:#28c941; }
.vc-body{ display:grid; grid-template-columns:120px 1fr; gap:16px; flex:1; }
.vc-side{ background:var(--sky-2); border-radius:12px; padding:12px; display:flex; flex-direction:column; gap:8px; }
.vc-label{ font-size:11px; font-weight:700; color:var(--navy-2); letter-spacing:.06em; text-transform:uppercase; }
.vc-label-2{ margin-top:8px; color:var(--orange); }
.vc-line{ height:8px; background:#fff; border-radius:4px; }
.vc-line.w70{ width:70%; } .vc-line.w55{ width:55%; } .vc-line.w80{ width:80%; }
.vc-line.w50{ width:50%; } .vc-line.w65{ width:65%; } .vc-line.w45{ width:45%; }
.vc-main{ display:flex; flex-direction:column; gap:14px; }
.vc-tiles{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.tile{
  background:linear-gradient(180deg, #fff, var(--sky-2));
  border:1px solid var(--line); border-radius:10px;
  height:64px; padding:8px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
}
.tile-ic{ width:22px; height:22px; border-radius:6px; background:var(--sky); position:relative; }
.tile-ic.ic-doc{ background:#fff; border:2px solid var(--navy-2); }
.tile-ic.ic-shield{ background:var(--orange); border-radius:6px 6px 50% 50%; }
.tile-ic.ic-chart{ background:linear-gradient(180deg, var(--orange-2), var(--orange)); }
.tile-ic.ic-folder{ background:var(--navy-2); border-radius:4px 8px 4px 4px; }
.tile-t{ width:60%; height:5px; background:var(--line); border-radius:3px; }
.vc-chart{
  flex:1; display:flex; align-items:flex-end; gap:10px;
  padding:10px; background:var(--sky-2); border-radius:12px;
}
.vc-chart .bar{
  flex:1; border-radius:6px 6px 0 0;
  background:linear-gradient(180deg, var(--navy-2), var(--navy));
}
.vc-chart .bar.b1{ height:40%; } .vc-chart .bar.b2{ height:62%; }
.vc-chart .bar.b3{ height:78%; background:linear-gradient(180deg, var(--orange-2), var(--orange)); }
.vc-chart .bar.b4{ height:55%; } .vc-chart .bar.b5{ height:88%; }
.vc-chart .bar.b6{ height:70%; background:linear-gradient(180deg, var(--orange-2), var(--orange)); }

/* Animatie: bars groeien op vanaf de bodem */
@keyframes bar-grow {
  from { transform: scaleY(.4); opacity:.6; }
  to   { transform: scaleY(1);  opacity:1; }
}
.vc-chart .bar{
  transform-origin:bottom;
  animation: bar-grow 1.6s cubic-bezier(.2,.7,.2,1) both;
}
.vc-chart .bar.b1{ animation-delay:.10s; }
.vc-chart .bar.b2{ animation-delay:.22s; }
.vc-chart .bar.b3{ animation-delay:.34s; }
.vc-chart .bar.b4{ animation-delay:.46s; }
.vc-chart .bar.b5{ animation-delay:.58s; }
.vc-chart .bar.b6{ animation-delay:.70s; }

/* Subtiele pulserende glow rond de hero-mockup */
@keyframes hero-glow {
  0%,100% { box-shadow: 0 30px 60px -20px rgba(20,54,92,.30), 0 0 0 0 rgba(243,146,0,0); }
  50%     { box-shadow: 0 30px 60px -20px rgba(20,54,92,.40), 0 0 0 6px rgba(243,146,0,.10); }
}
.card-front{ animation: hero-glow 5s ease-in-out infinite; }

/* Lichte "shimmer" over de zijbalk-tegels - alsof het laadt/leeft */
@keyframes tile-shimmer {
  0%, 100% { opacity:.85; }
  50%      { opacity:1;  }
}
.tile{ animation: tile-shimmer 3.4s ease-in-out infinite; }
.tile:nth-child(2){ animation-delay:.4s; }
.tile:nth-child(3){ animation-delay:.8s; }
.tile:nth-child(4){ animation-delay:1.2s; }

/* "Taken" worden afgevinkt: lichte progress-balk animatie */
@keyframes line-fill {
  0%   { width: var(--w-min, 30%); }
  50%  { width: var(--w-max, 80%); }
  100% { width: var(--w-min, 30%); }
}
.vc-line{ animation: line-fill 6s ease-in-out infinite; transform-origin:left; }
.vc-line.w70{ --w-min:55%; --w-max:78%; }
.vc-line.w55{ --w-min:40%; --w-max:62%; }
.vc-line.w80{ --w-min:65%; --w-max:85%; }
.vc-line.w50{ --w-min:35%; --w-max:55%; }
.vc-line.w65{ --w-min:50%; --w-max:72%; }
.vc-line.w45{ --w-min:30%; --w-max:50%; }
.vc-line:nth-child(odd){ animation-delay:.4s; }
.vc-line:nth-child(even){ animation-delay:1.2s; }

.badge-float{
  position:absolute; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:8px 14px; font-size:13px; font-weight:600;
  color:var(--navy); box-shadow:var(--shadow);
  display:inline-flex; align-items:center; gap:8px;
}
.badge-float svg{ width:16px; height:16px; color:var(--orange); }
.badge-1{ top:-12px; right:20px; animation:float 6s ease-in-out infinite; }
.badge-2{ bottom:-12px; left:-10px; animation:float 7s ease-in-out infinite reverse; }
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

@media (max-width: 900px){
  .hero{ padding:48px 0 64px; }
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-visual{ min-height:340px; max-width:520px; margin:0 auto; width:100%; }
}

/* ---------------- Trust strip ---------------- */
.trust{
  background:linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:28px 0;
}
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
  text-align:center;
}
.trust-item{ display:flex; flex-direction:column; align-items:center; gap:2px; }
.trust-item .num{
  font-size:clamp(1.6rem, 2.4vw, 2rem); font-weight:800; color:var(--navy);
  font-variant-numeric:tabular-nums;
}
.trust-item .label{ font-size:14px; color:var(--muted); }
@media (max-width:700px){ .trust-grid{ grid-template-columns:repeat(2,1fr); row-gap:24px; } }

/* ---------------- Sections ---------------- */
.section{ padding:96px 0; }
.section-alt{ background:var(--bg-soft); }
.section-tight{ padding:40px 0 72px; }

/* Contactpagina: hero + formulier in één sectie */
.contact-hero{
  padding:56px 0 72px;
  border-bottom:0;
}
.contact-hero .contact-grid{ align-items:start; gap:48px; }
.contact-hero h1{ margin-top:.2em; }
@media (max-width:900px){
  .contact-hero{ padding:32px 0 48px; }
  .contact-hero .contact-grid{ gap:32px; }
}
.section-head{ max-width:780px; margin:0 auto 56px; text-align:center; }
.section-head .lead{ margin-left:auto; margin-right:auto; }

.two-col{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.two-col-reverse > :first-child{ order:2; }
@media (max-width:900px){
  .section{ padding:64px 0; }
  .two-col{ grid-template-columns:1fr; gap:40px; }
  .two-col-reverse > :first-child{ order:0; }
}

.check-list{ list-style:none; padding:0; margin:24px 0 28px; display:grid; gap:14px; }
.check-list li{
  position:relative; padding-left:34px; color:var(--ink);
}
.check-list li::before{
  content:""; position:absolute; left:0; top:2px;
  width:22px; height:22px; border-radius:50%;
  background:rgba(243,146,0,.12);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 6' fill='none' stroke='%23F39200' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}

/* Oplossing - orbit visual */
.oplossing-art{
  position:relative; aspect-ratio:1/1; width:100%; max-width:480px; margin:0 auto;
}
.ring{ position:absolute; border-radius:50%; border:1.5px dashed var(--sky); inset:0; }
.ring-1{ inset:14%; border-style:solid; border-color:var(--sky-2); }
.ring-2{ inset:6%; }
.ring-3{ inset:-2%; border-color:rgba(243,146,0,.35); }
.ring-center{
  position:absolute; inset:24%;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color:#fff;
  border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  box-shadow:var(--shadow-lg);
  font-weight:700; letter-spacing:.04em;
}
.ring-center svg{ width:46px; height:46px; color:var(--orange-2); }
.orbit{
  position:absolute; background:#fff; border:1px solid var(--line);
  padding:8px 14px; border-radius:999px; font-size:13px; font-weight:600;
  color:var(--navy); box-shadow:var(--shadow-sm);
}
.orbit-a{ top:4%;  left:50%; transform:translateX(-50%); }
.orbit-b{ top:50%; right:-2%; transform:translateY(-50%); }
.orbit-c{ bottom:4%; left:50%; transform:translateX(-50%); }
.orbit-d{ top:50%; left:-2%; transform:translateY(-50%); }

/* ---------------- Features grid ---------------- */
.features{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.feature{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 26px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position:relative; overflow:hidden;
}
.feature::after{
  content:""; position:absolute; inset:auto -40px -40px auto;
  width:120px; height:120px; border-radius:50%;
  background:radial-gradient(circle, rgba(243,146,0,.10), transparent 70%);
  opacity:0; transition:opacity .25s var(--ease);
}
.feature:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--sky); }
.feature:hover::after{ opacity:1; }
.feature-ic{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--sky-2), #fff);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy-2);
  margin-bottom:16px;
  border:1px solid var(--line);
}
.feature-ic svg{ width:24px; height:24px; }
.feature h3{ margin-bottom:6px; }
.feature p{ margin:0; color:var(--muted); }
.feature-wide{ grid-column:span 3; }
.feature-wide .feature-ic{ background:linear-gradient(135deg, rgba(243,146,0,.15), #fff); color:var(--orange); }
.feature-wide{ background:linear-gradient(135deg, #fff 50%, var(--sky-2)); }

@media (max-width:900px){
  .features{ grid-template-columns:repeat(2,1fr); }
  .feature-wide{ grid-column:span 2; }
}
@media (max-width:600px){
  .features{ grid-template-columns:1fr; }
  .feature-wide{ grid-column:span 1; }
}

/* ---------------- Ondersteuning ---------------- */
.support-card{
  background:linear-gradient(160deg, #fff, var(--sky-2));
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow);
  position:relative; overflow:hidden;
}
.support-card::before{
  content:""; position:absolute; right:-60px; top:-60px;
  width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle, rgba(243,146,0,.18), transparent 70%);
}
.support-head{ display:flex; align-items:center; gap:14px; margin-bottom:18px; position:relative; }
.support-head svg{ width:36px; height:36px; padding:8px; background:var(--navy); color:var(--orange-2); border-radius:10px; box-sizing:content-box; }
.support-head h3{ margin:0; font-size:1.35rem; }
.check-list-on-card{ position:relative; }
.check-list-on-card li{ padding-left:34px; }
.check-list-on-card strong{ color:var(--navy); display:inline-block; margin-bottom:2px; }

/* ---------------- CTA / Nieuws ---------------- */
.section-cta{
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(243,146,0,.25), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(30,74,122,.55), transparent 60%),
    linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
  color:#fff;
  padding:88px 0;
}
.section-cta h2, .section-cta h4{ color:#fff; }
.section-cta p{ color:rgba(255,255,255,.85); max-width:55ch; }
.cta-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:64px; align-items:center;
}
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:24px; }
.timeline{ list-style:none; padding:0; margin:0; display:grid; gap:22px; }
.timeline li{
  position:relative; padding:18px 22px 18px 56px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  backdrop-filter:blur(4px);
}
.timeline li h4{ margin:0 0 4px; }
.timeline li p{ margin:0; }
.t-dot{
  position:absolute; left:20px; top:22px;
  width:14px; height:14px; border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 4px rgba(243,146,0,.25);
}
@media (max-width:900px){
  .cta-grid{ grid-template-columns:1fr; gap:40px; }
}

/* ---------------- Contact ---------------- */
.contact-grid{
  display:grid; grid-template-columns:1fr 1.05fr; gap:64px; align-items:start;
}
.contact-list{ list-style:none; padding:0; margin:24px 0 0; display:grid; gap:14px; }
.contact-list li{ display:flex; align-items:center; gap:12px; color:var(--ink); font-weight:500; }
.ci{
  width:40px; height:40px; border-radius:10px;
  background:var(--sky-2); color:var(--navy);
  display:inline-flex; align-items:center; justify-content:center;
}
.ci svg{ width:20px; height:20px; }

.contact-form{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px; box-shadow:var(--shadow);
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.field{ display:flex; flex-direction:column; gap:6px; }
.field-full{ grid-column:span 2; }
.field label{ font-size:13px; font-weight:600; color:var(--navy-2); }
.field input, .field textarea, .field select{
  font:inherit; color:var(--ink);
  padding:12px 14px; border:1px solid var(--line); border-radius:10px;
  background:#fff;
  width:100%;
  transition:border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color:var(--navy-2);
  box-shadow:0 0 0 4px rgba(30,74,122,.12);
}

/* Custom select - native styling weg, eigen pijltje in brand-kleur */
.field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:42px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%2314365C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
  cursor:pointer;
}
.field select::-ms-expand{ display:none; }
.field.has-error select{ border-color:#dc3545; box-shadow:0 0 0 3px rgba(220,53,69,.10); }
.form-actions{ display:flex; align-items:center; gap:16px; }
.hint{ color:var(--muted); font-size:14px; }
.form-success{
  grid-column:span 2; margin:0;
  background:rgba(40,201,65,.10); color:#1d6b32;
  border:1px solid rgba(40,201,65,.30);
  border-radius:10px; padding:12px 14px; font-weight:500;
}
.form-error{
  grid-column:span 2; margin:0 0 4px;
  background:rgba(220,53,69,.08); color:#a02430;
  border:1px solid rgba(220,53,69,.25);
  border-radius:10px; padding:12px 14px; font-weight:500;
}
.field-err{
  display:block; margin-top:4px;
  color:#a02430; font-size:.85rem; font-weight:500;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select{
  border-color:#dc3545;
  box-shadow:0 0 0 3px rgba(220,53,69,.10);
}
.honeypot{
  position:absolute !important;
  left:-9999px !important; top:-9999px !important;
  width:1px !important; height:1px !important;
  opacity:0 !important; pointer-events:none !important;
}
/* Banner boven het formulier - succes na demo-aanvraag */
.form-banner{
  background:linear-gradient(135deg, rgba(40,201,65,.10), rgba(40,201,65,.04));
  border:1px solid rgba(40,201,65,.35);
  border-radius:14px;
  padding:18px 22px;
  margin:0 0 24px;
  display:flex; gap:14px; align-items:flex-start;
  color:#1d6b32;
}
.form-banner svg{ width:24px; height:24px; flex-shrink:0; color:#28c941; }
.form-banner strong{ display:block; margin-bottom:2px; color:#1d6b32; }
.form-banner p{ margin:0; color:#34603f; }
@media (max-width:900px){
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
  .contact-form{ grid-template-columns:1fr; }
  .field-full, .form-success{ grid-column:span 1; }
}

/* ---------------- Footer ---------------- */
.site-footer{
  background:var(--bg-cta);
  color:rgba(255,255,255,.82);
  padding:64px 0 24px;
  margin-top:0;
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.10);
}
/* Tekstversie van het merk in de footer (donkere achtergrond) */
.footer-logo{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; font-size:1.6rem;
  letter-spacing:.02em;
  color:#fff;
  margin-bottom:16px;
  line-height:1;
}
.footer-logo .accent-360{ color:var(--orange-2); }
.footer-logo svg{ width:32px; height:32px; color:var(--orange-2); flex-shrink:0; }
@media (max-width:600px){ .footer-logo{ font-size:1.4rem; } .footer-logo svg{ width:28px; height:28px; } }
.footer-brand p{ margin:0; max-width:38ch; color:rgba(255,255,255,.72); }
.site-footer h4{ color:#fff; margin:0 0 14px; font-size:14px; letter-spacing:.06em; text-transform:uppercase; }
.site-footer ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.site-footer a{ color:rgba(255,255,255,.78); }
.site-footer a:hover{ color:var(--orange-2); }
.footer-bottom{
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  padding-top:22px; font-size:13px; color:rgba(255,255,255,.55);
}
@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .footer-grid{ grid-template-columns:1fr; }
}

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

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:0ms !important; transition-duration:0ms !important; }
  .reveal{ opacity:1; transform:none; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   Mobiel-specifieke afronding
   ============================================================ */

/* iOS safe-area insets (notch) */
@supports (padding: env(safe-area-inset-left)) {
  .container{
    padding-left:max(24px, env(safe-area-inset-left));
    padding-right:max(24px, env(safe-area-inset-right));
  }
}

/* Voorkomt horizontaal scrollen op mobiel */
html, body{ overflow-x:hidden; }

@media (max-width: 600px){
  :root{ --header-h: 76px; }

  .hero{ padding:32px 0 48px; }
  .hero h1{ font-size:clamp(1.8rem, 7vw, 2.2rem); line-height:1.2; }
  .hero .lead{ font-size:1rem; }

  /* CTA's full-width op klein scherm */
  .hero-cta .btn,
  .cta-actions .btn,
  .contact-teaser-actions .btn{ flex:1 1 100%; }

  /* Section padding wat strakker */
  .section{ padding:48px 0; }
  .section-head{ margin-bottom:32px; }

  /* h2/h3 wat strakker zodat ze niet onnodig groot worden */
  h2{ font-size:clamp(1.4rem, 6vw, 1.8rem); }

  /* Trust-strip onder elkaar */
  .trust-grid{ row-gap:18px; }

  /* Hero-visueel iets compacter */
  .hero-visual{ min-height:280px; }
  .visual-card{ border-radius:16px; }
  .badge-float{ font-size:12px; padding:6px 10px; }
  .badge-1{ top:-8px; right:8px; }
  .badge-2{ bottom:-8px; left:-4px; }

  /* Knoppen iets compacter maar toch 44px+ tap target */
  .btn{ padding:14px 20px; font-size:15px; min-height:48px; }
  .btn-sm{ padding:11px 16px; min-height:42px; }

  /* Formulier: ruimte op kleine schermen */
  .contact-form{ padding:20px; }
  .field input, .field textarea, .field select{ font-size:16px; /* voorkomt zoom op iOS */ min-height:48px; }

  /* Footer-bottom op één lijn voorkomen */
  .footer-bottom{ flex-direction:column; gap:6px; }
}

/* Tap-target minimum op mobiel-nav */
@media (max-width: 900px){
  .mobile-nav a{ min-height:48px; display:flex; align-items:center; }
}

/* ============================================================
   Subpagina-componenten
   ============================================================ */

/* huidige pagina in nav (geldt NIET voor knop-links, anders verdwijnt de witte tekst) */
.nav > a:not(.btn)[aria-current="page"]{
  color:var(--navy); background:var(--sky-2);
}
.nav > a.btn[aria-current="page"]{
  box-shadow:0 0 0 3px rgba(243,146,0,.25);
}
.mobile-nav a:not(.btn)[aria-current="page"]{ color:var(--navy); }

/* page hero - kleinere variant voor subpagina's */
.page-hero{
  position:relative; overflow:hidden;
  padding:60px 0 48px;
  background:
    radial-gradient(900px 460px at 0% 100%, rgba(201,222,241,.55), transparent 60%),
    #fff;
  border-bottom:1px solid var(--line);
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); margin-top:.2em; }
.page-hero p{ color:var(--muted); max-width:62ch; }
.crumbs{
  display:flex; gap:8px; align-items:center; font-size:13px; color:var(--muted);
  margin-bottom:6px;
}
.crumbs a{ color:var(--muted); }
.crumbs a:hover{ color:var(--navy); }
.crumbs span{ opacity:.6; }

/* 4 pijlers (home) */
.pillars{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.pillar{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:26px 22px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.pillar:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--sky); }
.pillar-ic{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.pillar-ic svg{ width:24px; height:24px; }
.pillar h3{ margin-bottom:6px; font-size:1.1rem; }
.pillar p{ margin:0; color:var(--muted); font-size:.95rem; }
@media (max-width:1000px){ .pillars{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .pillars{ grid-template-columns:1fr; } }

/* PDCA */
.pdca{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
  counter-reset:pdca;
}
.pdca-step{
  position:relative;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px 22px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pdca-step:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.pdca-letter{
  position:absolute; top:-22px; left:22px;
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1.4rem; color:#fff;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow:0 10px 24px -10px rgba(20,54,92,.5);
}
.pdca-check .pdca-letter,
.pdca-act .pdca-letter{
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow:0 10px 24px -10px rgba(243,146,0,.55);
}
.pdca-step h3{ margin:14px 0 6px; }
.pdca-step p{ margin:0; color:var(--muted); }
.pdca-step::after{
  content:""; position:absolute; right:-14px; top:50%; transform:translateY(-50%);
  width:24px; height:24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='%23B0BFD2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:center;
}
.pdca-step:last-child::after{ display:none; }
@media (max-width:1000px){
  .pdca{ grid-template-columns:repeat(2,1fr); }
  .pdca-step:nth-child(2)::after{ display:none; }
}
@media (max-width:560px){
  .pdca{ grid-template-columns:1fr; }
  .pdca-step::after{ display:none; }
}

/* benefit-grid (home zelfevaluaties) */
.benefit-grid{
  display:grid; grid-template-columns:1fr; gap:14px;
  margin-top:24px;
}
.benefit{
  display:grid; grid-template-columns:48px 1fr; gap:14px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:18px;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.benefit:hover{ border-color:var(--sky); box-shadow:var(--shadow-sm); }
.benefit-ic{
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, rgba(243,146,0,.15), rgba(243,146,0,.05));
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.benefit-ic svg{ width:22px; height:22px; }
.benefit h4{ margin:0 0 4px; font-size:1.05rem; color:var(--navy); }
.benefit p{ margin:0; color:var(--muted); }

/* contact-teaser strip */
.contact-teaser{
  display:flex; justify-content:space-between; align-items:center; gap:32px;
  background:linear-gradient(135deg, var(--sky-2), #fff);
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:36px 40px;
}
.contact-teaser h2{ margin:0 0 6px; font-size:1.6rem; }
.contact-teaser p{ margin:0; max-width:50ch; }
.contact-teaser-actions{ display:flex; gap:12px; flex-wrap:wrap; }
@media (max-width:800px){
  .contact-teaser{ flex-direction:column; align-items:flex-start; padding:28px; }
}

/* ---------------- Prijzen ---------------- */
.pricing{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  align-items:stretch;
}
.price-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:32px 28px;
  display:flex; flex-direction:column; gap:18px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
  position:relative;
}
.price-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.price-card.featured{
  border-color:transparent;
  background:linear-gradient(180deg, #fff, var(--sky-2));
  box-shadow:var(--shadow);
  outline:2px solid var(--orange);
  outline-offset:-2px;
}
.price-badge{
  position:absolute; top:-12px; right:24px;
  background:linear-gradient(135deg, var(--orange), var(--orange-2)); color:#fff;
  padding:6px 12px; border-radius:999px; font-size:12px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  box-shadow:0 8px 20px -8px rgba(243,146,0,.6);
}
.price-card h3{ margin:0; font-size:1.2rem; color:var(--navy-2); }
.price-card .price-sub{ color:var(--muted); margin:0; font-size:.95rem; }
.price-amount{
  display:flex; align-items:baseline; gap:8px;
  margin:6px 0 6px;
}
.price-amount .num{
  font-size:2.6rem; font-weight:800; color:var(--navy); letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
}
.price-amount .per{ color:var(--muted); font-size:.95rem; }
.price-amount .prefix{ color:var(--muted); font-size:1rem; font-weight:600; }
.price-features{ list-style:none; padding:0; margin:6px 0 0; display:grid; gap:10px; }
.price-features li{
  position:relative; padding-left:28px; color:var(--ink); font-size:.95rem;
}
.price-features li::before{
  content:""; position:absolute; left:0; top:4px;
  width:18px; height:18px; border-radius:50%; background:rgba(243,146,0,.12);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 6' fill='none' stroke='%23F39200' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:center; background-size:12px;
}
.price-card .btn{ margin-top:auto; align-self:stretch; }
.price-disclaimer{
  margin-top:30px; text-align:center;
  color:var(--muted); font-size:.92rem;
}
@media (max-width:1000px){ .pricing{ grid-template-columns:1fr; max-width:520px; margin:0 auto; } }

/* ---------------- FAQ ---------------- */
.faq-list{ max-width:820px; margin:0 auto; display:grid; gap:12px; }
.faq-list details{
  background:#fff; border:1px solid var(--line); border-radius:14px;
  overflow:hidden;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-list details[open]{ border-color:var(--sky); box-shadow:var(--shadow-sm); }
.faq-list summary{
  list-style:none; cursor:pointer;
  padding:18px 24px;
  font-weight:600; color:var(--navy);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{
  content:""; flex-shrink:0;
  width:22px; height:22px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%2314365C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:center;
  transition:transform .2s var(--ease);
}
.faq-list details[open] summary::after{ transform:rotate(180deg); }
.faq-list .faq-body{
  padding:0 24px 20px; color:var(--muted);
}
.faq-list .faq-body p{ margin:0 0 8px; }
.faq-list .faq-body p:last-child{ margin:0; }

.faq-cat{ margin-top:32px; scroll-margin-top:calc(var(--header-h) + 16px); }
.faq-cat:first-child{ margin-top:0; }

/* Alle section-anchors landen netjes onder de sticky header bij #-links */
section[id], [id^="cat-"]{
  scroll-margin-top:calc(var(--header-h) + 16px);
}
.faq-cat h3{
  font-size:1rem; letter-spacing:.08em; text-transform:uppercase; color:var(--orange);
  margin:0 0 12px; padding-left:4px;
}

/* ---------------- About / Contact details ---------------- */
.info-cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
  margin-top:24px;
}
.info-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:22px;
}
.info-card .ci{ margin-bottom:12px; }
.info-card h4{ margin:0 0 4px; }
.info-card p, .info-card a{ margin:0; color:var(--ink); }
.info-card a{ color:var(--navy-2); }
.info-card .small{ color:var(--muted); font-size:.92rem; }
@media (max-width:800px){ .info-cards{ grid-template-columns:1fr; } }

.about-block{
  background:linear-gradient(160deg, #fff, var(--sky-2));
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:36px;
}
.about-stats{
  display:flex; flex-wrap:wrap; gap:18px 32px;
  margin-top:24px;
}
.about-stat{
  flex:1 1 120px; text-align:center;
  min-width:0;
}
.about-stat .num{ font-size:1.8rem; font-weight:800; color:var(--navy); line-height:1.1; }
.about-stat .label{ color:var(--muted); font-size:.92rem; }
@media (max-width:700px){ .about-stat{ flex-basis:100%; } }

/* ---------------- Voor wie (home) ---------------- */
.audience-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
  margin-top:44px;
}
.audience-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:26px 22px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display:flex; flex-direction:column; gap:10px;
}
.audience-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--sky); }
.audience-ic{
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg, rgba(243,146,0,.18), rgba(243,146,0,.05));
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:6px;
}
.audience-ic svg{ width:22px; height:22px; }
.audience-card .role{ font-size:.85rem; font-weight:700; color:var(--orange); letter-spacing:.04em; text-transform:uppercase; }
.audience-card h3{ font-size:1.05rem; margin:0; color:var(--navy); }
.audience-card p{ margin:0; color:var(--muted); font-size:.95rem; }
@media (max-width:1000px){ .audience-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .audience-grid{ grid-template-columns:1fr; } }

/* ---------------- Veiligheid & compliance ---------------- */
.compliance{
  display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center;
}
.compliance-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.compliance-item{
  display:grid; grid-template-columns:40px 1fr; gap:14px; align-items:start;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:16px;
}
.compliance-ic{
  width:40px; height:40px; border-radius:10px;
  background:var(--navy);
  color:var(--orange-2);
  display:flex; align-items:center; justify-content:center;
}
.compliance-ic svg{ width:20px; height:20px; }
.compliance-item h4{ margin:0 0 2px; font-size:.98rem; color:var(--navy); }
.compliance-item p{ margin:0; color:var(--muted); font-size:.88rem; line-height:1.5; }
@media (max-width:900px){
  .compliance{ grid-template-columns:1fr; gap:32px; }
}
@media (max-width:520px){
  .compliance-grid{ grid-template-columns:1fr; }
}

/* ---------------- Referenties / testimonials ---------------- */
.refs-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top:32px;
}
.ref-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px;
  display:flex; flex-direction:column; gap:14px;
  box-shadow:var(--shadow-sm);
  position:relative;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.ref-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.ref-quote-mark{
  font-family:Georgia, serif; font-size:3.6rem; line-height:.7; color:var(--orange);
  margin:0;
}
.ref-quote{ margin:0; color:var(--ink); font-size:1.02rem; line-height:1.55; }
.ref-meta{
  display:flex; align-items:center; gap:12px;
  padding-top:14px; margin-top:auto;
  border-top:1px solid var(--line);
}
.ref-avatar{
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; flex-shrink:0;
}
.ref-meta-text strong{ display:block; color:var(--navy); }
.ref-meta-text span{ color:var(--muted); font-size:.88rem; }
.refs-placeholder{
  text-align:center; margin-top:20px;
  color:var(--muted); font-size:.9rem; font-style:italic;
}
@media (max-width:900px){ .refs-grid{ grid-template-columns:1fr; } }

/* ---------------- Resources / lead magnets ---------------- */
.resources{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top:32px;
}
.resource{
  background:linear-gradient(160deg, #fff, var(--sky-2));
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px;
  display:flex; flex-direction:column; gap:12px;
  text-decoration:none; color:var(--ink);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.resource:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--sky); color:var(--ink); }
.resource-type{
  display:inline-block;
  font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--orange); background:rgba(243,146,0,.10);
  padding:5px 10px; border-radius:999px;
  align-self:flex-start;
}
.resource h3{ font-size:1.12rem; margin:0; color:var(--navy); }
.resource p{ margin:0; color:var(--muted); font-size:.95rem; }
.resource-cta{
  margin-top:auto; padding-top:10px;
  display:inline-flex; align-items:center; gap:6px;
  color:var(--navy-2); font-weight:600; font-size:.9rem;
}
.resource-cta svg{ width:16px; height:16px; transition:transform .2s var(--ease); }
.resource:hover .resource-cta svg{ transform:translateX(3px); }
@media (max-width:900px){ .resources{ grid-template-columns:1fr; } }

/* ---------------- Events / agenda ---------------- */
.events{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px;
  margin-top:32px;
}
.event{
  display:grid; grid-template-columns:90px 1fr; gap:20px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:20px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.event:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.event-date{
  text-align:center;
  background:linear-gradient(160deg, var(--navy), var(--navy-2));
  color:#fff; border-radius:10px;
  padding:10px 6px;
  flex-shrink:0;
}
.event-date .day{ display:block; font-size:1.8rem; font-weight:800; line-height:1; }
.event-date .month{ display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; margin-top:4px; color:var(--orange-2); }
.event h3{ margin:0 0 4px; font-size:1.05rem; }
.event p{ margin:0; color:var(--muted); font-size:.92rem; }
.event-meta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; font-size:.85rem; color:var(--muted); }
.event-meta span{ display:inline-flex; align-items:center; gap:5px; }
.event-meta svg{ width:14px; height:14px; opacity:.7; }
@media (max-width:700px){ .events{ grid-template-columns:1fr; } }

/* ---------------- Cookie banner ---------------- */
.cookie-banner{
  position:fixed; left:16px; right:16px; bottom:16px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow:var(--shadow-lg);
  padding:18px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  z-index:60;
  max-width:880px; margin-left:auto; margin-right:auto;
  font-size:.95rem;
  /* safe area voor iPhone notch */
  padding-bottom:max(18px, env(safe-area-inset-bottom, 0));
}
.cookie-banner[hidden]{ display:none; }
.cookie-banner p{ margin:0; color:var(--ink); }
.cookie-banner a{ color:var(--navy-2); text-decoration:underline; }
.cookie-banner-actions{ display:flex; gap:10px; flex-shrink:0; }
@media (max-width:680px){
  .cookie-banner{ flex-direction:column; align-items:stretch; left:8px; right:8px; bottom:8px; }
  .cookie-banner-actions{ width:100%; }
  .cookie-banner-actions .btn{ flex:1; }
}

/* ---------------- Zelfevaluaties (home) ---------------- */
.zelfeval-section{
  position:relative; overflow:hidden;
}
.zelfeval-section .section-head{ max-width:780px; }
.zelfeval-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
  margin-top:44px;
}
.zelfeval-card{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; gap:14px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.zelfeval-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--sky); }
.zelfeval-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:54px; height:54px; border-radius:14px;
  background:linear-gradient(135deg, rgba(243,146,0,.16), rgba(243,146,0,.04));
  color:var(--orange);
  font-weight:800; font-size:1.25rem; letter-spacing:.02em;
  font-variant-numeric:tabular-nums;
}
.zelfeval-card h3{ font-size:1.35rem; margin:0; color:var(--navy); }
.zelfeval-card p{ margin:0; color:var(--muted); font-size:1rem; line-height:1.6; }
.zelfeval-card .zelfeval-meta{
  margin-top:auto; padding-top:14px; border-top:1px solid var(--line);
  display:flex; align-items:center; gap:8px;
  color:var(--orange); font-weight:600; font-size:.92rem;
}
.zelfeval-card .zelfeval-meta svg{ width:18px; height:18px; }

/* middelste kaart in donkere accentstijl */
.zelfeval-card.featured{
  background:
    radial-gradient(800px 360px at 110% -20%, rgba(243,146,0,.30), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  border-color:transparent;
  color:#fff;
}
.zelfeval-card.featured .zelfeval-num{
  background:rgba(255,255,255,.12); color:var(--orange-2);
}
.zelfeval-card.featured h3{ color:#fff; }
.zelfeval-card.featured p{ color:rgba(255,255,255,.78); }
.zelfeval-card.featured .zelfeval-meta{
  border-top-color:rgba(255,255,255,.14); color:var(--orange-2);
}
@media (max-width:1000px){
  .zelfeval-grid{ grid-template-columns:1fr; max-width:560px; margin-left:auto; margin-right:auto; }
}

/* FAQ-hero met orbit-visual ernaast */
.faq-hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;
}
.faq-hero-grid .oplossing-art{ max-width:380px; }
.faq-hero-grid .ring-center{ font-size:1.1rem; }
.faq-hero-grid .ring-center svg{ width:34px; height:34px; }
@media (max-width:900px){
  .faq-hero-grid{ grid-template-columns:1fr; gap:32px; }
  .faq-hero-grid .oplossing-art{ max-width:320px; margin:0 auto; }
}
@media (max-width:520px){
  .faq-hero-grid .oplossing-art{ max-width:260px; }
}

/* Topic-cards bovenaan FAQ */
.faq-topics{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;
  margin-bottom:40px;
}
.faq-topic{
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:18px 20px;
  text-decoration:none; color:var(--ink);
  display:flex; flex-direction:column; gap:6px;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.faq-topic:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm); border-color:var(--sky); color:var(--ink); }
.faq-topic-ic{
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, rgba(243,146,0,.15), rgba(243,146,0,.04));
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.faq-topic-ic svg{ width:18px; height:18px; }
.faq-topic strong{ color:var(--navy); font-size:1rem; }
.faq-topic span{ color:var(--muted); font-size:.85rem; }
@media (max-width:900px){ .faq-topics{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .faq-topics{ grid-template-columns:1fr; } }

/* Demo-tijdlijn: 4 stappen onder het formulier, in een volle-breedte sectie */
.demo-steps{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:18px;
  margin:24px 0 0;
  list-style:none; padding:0;
}
.demo-step{
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:22px 22px;
  position:relative;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.demo-step:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.demo-step .step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff; font-weight:800; font-size:1rem;
  margin-bottom:12px;
}
.demo-step .step-time{
  display:inline-block;
  margin-left:10px; padding:4px 10px;
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--orange); background:rgba(243,146,0,.10);
  border-radius:999px;
  vertical-align:middle;
}
.demo-step h3{ font-size:1.05rem; margin:0 0 6px; color:var(--navy); }
.demo-step p{ margin:0; color:var(--muted); font-size:.92rem; line-height:1.55; }
@media (max-width: 900px){
  .demo-steps{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 520px){
  .demo-steps{ grid-template-columns:1fr; }
}

/* Korte fact-strip onder de timeline */
.demo-facts{
  display:flex; gap:12px 22px; flex-wrap:wrap;
  margin:20px 0 0;
  padding:16px 20px;
  background:linear-gradient(135deg, var(--sky-2), #fff);
  border:1px solid var(--line); border-radius:12px;
}
.demo-facts span{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:500; color:var(--ink); font-size:.93rem;
}
.demo-facts svg{ width:18px; height:18px; color:var(--orange); flex-shrink:0; }

