:root{
  --bg-dark:#000;
  --bg-light:#F6F3E5;
  --ink-light:#fff;
  --ink-dark:#000;
  --accent:#E33E0F;

  --container:1240px;
  --gutter:50px;
  --radius:25px;

  --h1:116px;
  --h2:48px;
  --h3:32px;
  --body:18px;

  --line:3px;

  /* Menu (vereist) */
  --menu-fz: 20px;        /* vaste 20px */
  --menu-fw: 500;         /* halfvet */
  --menu-gap: 16px;       /* ruimte boven/onder lijn */

  /* Secties */
--section-pad: 80px;   /* consistente sectie-padding boven/onder */

}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg-dark); color:var(--ink-light);
  font:400 var(--body)/1.6 'IBM Plex Mono', monospace;
  overflow-x:hidden;
}
h1,h2,h3,button{font-family:'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif}
h1{font-size:var(--h1); letter-spacing:-0.2px; line-height:1.05; margin:0 0 25px}
h2{font-size:var(--h2); line-height:1.15; margin:0 0 25px}
h3{font-size:var(--h3); line-height:1.2;  margin:0 0 25px}
p{margin:0 0 25px}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--gutter);   /* zelfde zij-ruimte als de rest (50px) */
}

.grid-12{
  display:grid; grid-template-columns:repeat(12,1fr);
  column-gap:var(--gutter); row-gap:var(--gutter);
}
[class*="col-"]{min-width:0}
.col-12{grid-column:span 12}
.col-9{grid-column:span 9}

/* ================== Header ================== */
header{
  position:fixed; inset:0 0 auto 0; height:72px;
  background:transparent;
  z-index:3000;
  pointer-events:none; /* laat header zelf niet vangen */
}
.brand-wrap,
.menu-btn {
  pointer-events:auto; /* ✅ klikbaar maken van brand en menu-knop */
}

/* Merknaam + bol EXACT 25px van boven/links */
.brand-wrap{
  position:absolute; top:25px; left:25px;
  z-index:3001;          /* boven .menu-overlay (2000) */
  pointer-events:none;   /* blokkeert geen clicks op het menu */
}
.brand{
  position:relative; 
  font:700 22px/1.05 'Space Grotesk',sans-serif; 
  letter-spacing:.2px;
  text-align:center;
  -webkit-text-stroke:0.75px #000;   /* zwarte outline */
  color:#fff;                         /* witte vulling zodat outline zichtbaar blijft */
}

.brand span{ position:relative; z-index:1; display:inline-block; }
.brand::before{
  content:""; position:absolute; left:50%; top:50%;
  width:75px; height:75px; background:var(--accent); border-radius:50%;
  transform:translate(-50%,-50%) scale(1); z-index:0; pointer-events:none;
  animation:pulse 3.2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.08)}}

/* ====== Nieuwe MENU-knop (parallellogram) ====== */
.menu-btn{
  position:absolute; top:25px; right:25px;
  background:var(--bg-light); color:#000;
  border:3px solid #000;
  padding:10px 18px;
  cursor:pointer; 
  z-index:3002;
  pointer-events:auto;
  transform:skewX(-18deg);
  text-transform:uppercase; font-weight:700; letter-spacing:.5px;
  transition: transform .18s ease, box-shadow .18s ease; /* ← toegevoegd */
}
/* Subtiel vergrotend hover-effect (alleen devices met hover) */
@media (hover:hover) and (pointer:fine){
  .menu-btn:hover{
    transform: skewX(-18deg) scale(1.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
  }
  .menu-btn:active{
    transform: skewX(-18deg) scale(1.02);
  }
}

.menu-btn span{ display:inline-block; transform:skewX(18deg); } /* tekst weer recht */
.menu-btn:focus{ outline:2px solid #000; outline-offset:2px; }

/* ===== CTA-badge ===== */
/* badge wordt kolom zodat subline erboven komt */
.cta-badge{
  position:absolute; top:25px; left:50%; transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;                      /* afstand subline ↔ hoofdregel */
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.25);
  color:#F6F3E5;
  border-radius:12px; padding:20px;
  font-family:'Space Grotesk', sans-serif;
  font-weight:400;
  letter-spacing:-0.4px;
  text-transform:lowercase;
  backdrop-filter: blur(20px) saturate(300%);
  -webkit-backdrop-filter: blur(20px) saturate(300%);
  box-shadow: inset 1px 1px 8px rgba(255,255,255,0.2),
              0 4px 30px rgba(0,0,0,0.4);
}

/* bestaande regel op één rij houden */
.cta-row{
  display:inline-flex;
  align-items:center;
  gap:20px;
  white-space:nowrap;            /* 1 regel */
}

/* nieuwe subregel bovenaan */
.cta-subline{
  background:#fff;
  color:#000;
  padding:8px 12px;
  border-radius:6px;
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  text-transform:lowercase;
  white-space:nowrap;            /* 1 regel blijven */
  font-size:14px;                /* ≈ 25% kleiner dan 18px basis */
  line-height:1;
  text-align:center;
}

.cta-prefix{
  font-family:'Poppins', sans-serif;
  font-weight:900;              /* Black */
  font-size:24px;               /* vaste grootte */
  letter-spacing:-0.4px;
  margin-right:6px;
  text-transform:none;          /* toont precies Book/W en Book/S */
}

.cta-static{
  margin-right:6px;
  font-family:'Poppins', sans-serif;
  font-weight:300;              /* Light */
  font-size:18px;               /* balans */
  text-transform:none;          /* normale case */
}

.cta-dynamic{
  display:inline-block; 
  border-right:2px solid #000;
  padding-right:2px;            /* cursor-ruimte */
  min-width:8ch;                /* stabiliteit bij korte woorden */
  font-family:'Poppins', sans-serif;
  font-weight:300;              /* Light */
  font-size:18px;               /* balans */
  text-transform:uppercase;     /* altijd hoofdletters */
}

.cta-icon{ width:24px; height:24px; flex:0 0 24px; color:#000; }

/* ================== Overlay Menu ================== */
.menu-overlay{
  position:fixed; top:0; left:0; width:50vw; height:75vh;
  background:var(--bg-light); color:#000; border-bottom-right-radius:var(--radius);
  transform-origin:0 0; transform:scale(0);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
  z-index:2000; /* ↑ boven header (1002) zodat clicks niet geblokkeerd worden */

  display:grid; place-items:center;
  padding:20px;
  overflow:hidden;

  box-shadow:0 10px 40px rgba(0,0,0,0.6);
}
.menu-overlay.open{ transform:scale(1) }

.menu-close{
  position:absolute; top:18px; right:22px;
  background:none; border:0; cursor:pointer;
  padding:8px; /* grotere klikzone */
  z-index:1004;
}
.menu-close svg{ display:block; width:32px; height:32px; }
/* animatievoorbereiding */
.menu-close svg{
  transition: transform .18s ease;   /* nieuw */
  transform-origin: 50% 50%;         /* nieuw */
}

/* subtiel hover/active effect alleen op devices met hover */
@media (hover:hover) and (pointer:fine){
  .menu-close:hover svg{
    transform: scale(1.08);
  }
  .menu-close:active svg{
    transform: scale(1.03);
  }
}


/* === CTA rechtsonder in het menu === */
.menu-cta {
  position: absolute;
  right: 22px;          /* uitlijnen met sluitknop (right:22px) */
  bottom: 22px;         /* nette ondermarge */
  background: #ffffff;
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 8px 12px;
  
  text-decoration: none;
  color: #000;
  border-radius: 10px;
  display: inline-block;
  z-index: 3001;               /* boven menu-content */
  cursor: pointer;
}
.menu-cta__inner { display: block; font-family: 'Poppins', sans-serif; line-height: 1.2; }
/* Regels (typografie) */
.menu-cta__r1 { font-weight: 600; font-size: 14px; letter-spacing: -0.4px; margin-bottom: 4px; }
.menu-cta__r2, .menu-cta__r3 { font-weight: 400; font-size: 12px; margin: 0; }

/* (optioneel) iets kleiner op mobiele schermen) */
@media (max-width: 768px) {
  .menu-cta { padding: 10px 14px; bottom: 18px; right: 18px; }
  .menu-cta__r1 { font-size: 15px; }
  .menu-cta__r2, .menu-cta__r3 { font-size: 11px; }
}

.menu-content{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center; /* centreren */
}
.menu-list{
  list-style:none; margin:0; padding:0;
  width:min(88%,560px);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-family:'Space Grotesk', monospace;
}
.menu-list li{
  position:relative;
  font-size:24px;        /* vaste grootte */
  font-weight:var(--menu-fw);
  line-height:1.25;
  text-align:center;
}

/* 2px lijn, max 40% van menubreedte, gecentreerd */
.menu-list li::after{
  content:"";
  display:block;
  width:40%;
  height:0;
  border-bottom:2px solid #000;
  margin:var(--menu-gap) auto 0; /* 16px boven de lijn */
}
.menu-list li:last-child{ margin-bottom:0; }
.menu-list li:last-child::after{ display:none; } /* geen lijn na laatste */

/* ================== Cursor dot ================== */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #69ff00; /* of var(--accent) als je via variabele wilt */
  pointer-events: none;
  mix-blend-mode: normal; /* vaste kleur, geen kleurmenging */
  transform: translate(-50%, -50%);
  z-index: 1100;
}

/* 🔇 volledig uitschakelen op mobiele/touch-apparaten */
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}

/* ================== Sections ================== */
section{ width:100vw; }
/* Consistente verticale ruimte voor deze secties */
/* ================== Sections ================== */
section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Consistente verticale ruimte voor secties */
#services {
  padding: var(--section-pad) 0;
  scroll-margin-top: 90px;
}

/* Alleen mobiel: kortere sectie + minder zijkant-padding + 50px tussen kolommen */
@media (max-width: 768px) {
  .vh-100 {
    min-height: auto !important;
    display: block !important;
    align-items: unset !important;
  }

  .widget-box {
    max-width: 100% !important;
  }
}



.vh-100{ min-height:100vh; display:flex; align-items:center }
.bg-dark{ background:#000; color:#fff }
.bg-light{ background:var(--bg-light); color:#000 }


/* ================== Hero met video (overlay 80%) ================== */
.hero-wrap{
  position: relative;
  padding-top: 72px;           /* vaste header */
  overflow: hidden;

  /* NIEUW: hero als kolom-container */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;       /* vult de hele hero */
  z-index:0;              /* achter overlay en content */
}

.hero-wrap {
  position: relative;
  padding-top: 72px;
  overflow-x: hidden;   /* laat horizontale overflow verbergen */
  overflow-y: visible;  /* ✅ voorkomt afgesneden letters */
  min-height: 100vh;
  background: #000;
}

.hero-content {
  padding-bottom: 10px; /* ✅ voorkomt clipping van descenders */
}


.hero-overlay{ position:absolute; inset:0; background:rgba(0,0,0,0.5); z-index:1; }

/* Tweede overlay (reeds aanwezig) */
.hero-overlay2{
  position:absolute; inset:0;
  background:linear-gradient(270deg,#ff0000,#ff7300,#ffde00,#87ff00,#00ffe8,#0030ff,#db00ff,#ff0000);
  background-size:1600% 1600%;
  opacity:.4;
  animation:rainbowShift 18s linear infinite;
  z-index:2;
  mix-blend-mode:overlay;
}
@keyframes rainbowShift{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.hero-content{
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;   /* expliciet 2 rijen */
  align-items: center;             /* verticaal centreren */
  justify-items: start;            /* items links in hun kolom */
  row-gap: 40px;                   /* ← ruimte tussen H1 en panel */
}


/* 2 kolommen, 2 rijen:
   rij 1 = H1 links, rij 2 = knop links + activiteiten rechts */
/* VERVANG je huidige .hero-grid--2rows + plaatsingen door dit */


/* H1 exact midden in de sectie */
.hero-title {
  grid-column: 1 / 2;
  align-self: center;
  justify-self: start;
  margin: 0;
}

.hero-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--gutter);

  /* zelfde breedte en padding als .container */
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
  box-sizing: content-box;
}


/* Vierkant + rechthoek links */
.hero-actions {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

/* Activiteiten rechts */
.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-title{
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: center;        /* midden in de hoogte */
  justify-self: start;       /* links tegen de kolomrand */
  margin: 0;
  text-align: left;
  -webkit-text-stroke: 1.5px #191919;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,.55);
  animation: none;
}


/* Knop links onder H1 (rij 2, kolom 1) */
/* Container op de plek van de oude CTA */
.hero-actions{
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: end;
  justify-content: flex-start;   /* expliciet links */
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

/* 1) Vierkant 100x100 met foto */
.avatar-square{
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 3px solid #F6F3E5;
background: url('../img/foto-campagne-partners-home.webp') center/cover no-repeat #000;
  flex: 0 0 100px;           /* vaste maat */
}

/* 2) Rechthoek 400x100; knoppen 5px boven onderkant */
/* Rechthoek = 2 rijen */
.cta-panel{
  width: 400px;
  height: 100px;
  border-radius: 12px;
  border: 3px solid #F6F3E5;
  background: #F6F3E5;

  display: flex;
  flex-direction: column;     /* 2 rijen: naam + knoppen */
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

/* Rij 1: naam (1 regel), 100px uit linkerrand, Poppins semi-bold 16px */
.cta-name{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: #000;

  margin-left: 15px;         /* begin op 100px van links */
  margin-bottom: 5px;        /* 15px boven knop ≈ deze marge */
  white-space: nowrap;        /* op 1 regel */
}

/* Rij 2: knoppen naast elkaar, beginnen ook op 100px */
.cta-buttons{
  display: flex;
  gap: 20px;                  /* behoud onderlinge afstand */
  margin-left: 15px;         /* begin op 100px van links */
  align-items: flex-end;
}

/* mini-correctie kan blijven indien gewenst */
.hero-actions .cta-panel{ margin-bottom: 5px; }


/* Knoppen binnen de rechthoek */
.mini-btn {
  height: 40px;
  padding: 5px;               /* correcte syntax */
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #191919;
  color: #F6F3E5;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 500;   /* ✅ toegevoegd */
}
.mini-btn:focus-visible{
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Rechterkolom (rij 2, kolom 2) start exact gelijk met de knop */
.hero-right{
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: end;                   /* onderzijde van rij 2 */
}

/* Activiteiten in 2 kolommen */
.activities{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px var(--gutter); /* geldige 2D-gap: rij-gap 12px, kolom-gap var(--gutter) */
}


.act-col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}



/* Oude lijn/constructie blijft geneutraliseerd */
.hero-line, .hero-line::before, .hero-title-wrap { all: unset; }

/* Responsive */
@media (max-width: 992px){
  .hero-grid--2rows{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-right{ grid-column: 1 / 2; }
}

.type-col{
  display:flex; flex-direction:column; gap:10px;
  width:max-content;                     /* kolom krimpt tot content */
  opacity:0; transform:translateY(20px);
  animation:fadeUp .7s .55s ease forwards;
}
@keyframes fadeUp{ to{opacity:1; transform:none} }
.type-line{
  font-size:clamp(16px,1.5vw,18px);
  color:#fff; border-right:2px solid rgba(255,255,255,.8);
  white-space:normal; overflow:visible; word-break:break-word;
  padding-right:6px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 22px; border-radius:999px;
  color:#000; background:#fff; text-decoration:none; font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease, background .6s;
}
.btn:hover{ background:linear-gradient(90deg,#fff 0%,#ffd7cc 100%); transform:translateY(-2px); box-shadow:0 8px 30px rgba(227,62,15,.25); }

/* Hero-knop (staat al in code) */
/* CTA-knop — lichter glas + subtiele “opliggen” */
/* Primary CTA – solid + “opliggen” */
.btn-hero{
  --btn-bg: #F6F3E5;        /* je lichttint */
  --btn-ink: #111;
  --btn-ring: #E33E0F;      /* brand accent voor focusring */

  display:inline-flex; align-items:center; gap:10px;
  padding:18px 28px;
  border-radius:12px;                 /* pill */
  background: var(--btn-bg);
  color: var(--btn-ink);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);  /* “opliggen” */
  font-family:'Space Grotesk', sans-serif;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing:.3px;

  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

@media (hover:hover) and (pointer:fine){
  .btn-hero:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
  }
  .btn-hero:active{
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,.20);
  }
}

/* Toegankelijk focus (WCAG) */
.btn-hero:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 2px #fff,          /* inner contrast ring */
    0 0 0 5px var(--btn-ring);
}

/* Services */

/* Logos */
.logos{ display:grid; grid-template-columns:repeat(5,1fr); gap:var(--gutter); align-items:center; }
.logo-box{ height:90px; border-radius:14px; background:#111; display:flex; align-items:center; justify-content:center; color:#666; border:1px dashed #222; }


/* ==== FOOTER ==== */
footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
  border-top-left-radius: var(--radius);
  font-family: 'IBM Plex Mono', monospace;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gutter);
  align-items: start; /* alles start gelijk bovenaan */
}

.footer-cta,
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

footer h3,
footer h4,
footer p,
footer ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* CTA titel */
.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.2px;
}
/* FOOTER: Boost afwisselend WIT ↔ ROOD, zonder fade */
footer .boost {
  animation: footerBlink 2s steps(1, end) infinite;
}

/* Keyframes: schakelen tussen wit en rood */
@keyframes footerBlink {
  0%, 49%   { color: #fff; }     /* eerste helft wit */
  50%, 100% { color: #E33E0F; }  /* tweede helft rood */
}

/* CTA tekst */
.footer-cta p {
  color: #ccc;
  font-size: 16px;
  max-width: 340px;
}

/* CTA knop */
footer .btn-hero {
  font-size: 16px;
  padding: 16px 22px;
  margin-bottom: 30px; /* ruimte boven brandnaam */
}

/* Footer brandnaam + bol */
.footer-brand {
  position: relative;
  font: 700 18px/1.3 'Space Grotesk', sans-serif;
  letter-spacing: .2px;
  text-align: center;           /* tekst centreren */
  -webkit-text-stroke: 0.6px #000;
  color: #fff;
  display: inline-block;
  padding: 12px 20px;
}

.footer-brand span {
  position: relative;
  z-index: 1;
  display: block;               /* elke regel apart onder elkaar */
}

.footer-brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 3.2s ease-in-out infinite;
}

/* Links & contact titels */
.footer-links h4,
.footer-contact h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Lijsten */
.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Tekstconsistentie */
.footer-links a,
.footer-links li,
.footer-contact p {
  font-size: 15px;
  line-height: 1.5;
  color: #ccc;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

/* Onderaan privacy/cookies in contactkolom */
.footer-contact p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-cta,
  .footer-links,
  .footer-contact {
    align-items: flex-start;
  }
}



/* Lange titels netjes afbreken in cards */
.cards .card h3{
  overflow-wrap: anywhere;   /* breek waar nodig */
  word-break: break-word;    /* fallback */
  hyphens: auto;             /* voeg evt. koppeltekens toe (lang="nl" staat al) */
  margin-top: 0;
}

.cta-box{
  display:inline-flex;
  flex-direction:column;
  gap:8px;
  font-family:'Poppins',sans-serif;
  letter-spacing:-0.4px;
  margin-top:20px;
}

.cta-line{
  background:#70ff00;
  padding:5px 10px;
  font-weight:500;            /* Poppins Medium */
  font-size:18px;
  color:#000;
  display:inline-flex;        /* <-- nodig voor perfecte centrering */
  align-items:center;         /* verticaal centreren tekst + icon */
  line-height:1.3;
}

.cta-line .highlight{ font-weight:900; }  /* Poppins Black */

/* ---- Icon rechts met puls ---- */
.cta-icon-wrap{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:16px;           /* 16px afstand van tekst */
  width:32px;                 /* hit area */
  height:32px;
  animation:pulseIcon 1.4s ease-in-out infinite;
  will-change:transform,opacity;
}

.cta-icon-wrap svg{
  width:28px;                 /* groter zichtbaar icoon */
  height:28px;
  display:block;              /* geen baseline-shift */
  transform-origin:50% 50%;
  fill:#000;                  /* kleur forceren */
}

/* Puls-animatie */
@keyframes pulseIcon{
  0%,100%{ transform:scale(1);   opacity:1;   }
  50%    { transform:scale(1.25);opacity:.8;  }
}

/* Respecteer ‘reduced motion’ */
@media (prefers-reduced-motion:reduce){
  .cta-icon-wrap{ animation:none; }
}

/* === BOOST color shift (zwart ↔ #E53D12) === */
.boost{
  display:inline-block;                 /* zorg dat animatie netjes rendert */
  animation:boostColor 1s ease-in-out infinite alternate;
  color:#000;                           /* startkleur */
}

@keyframes boostColor{
  from { color:#000; }
  to   { color:#E53D12; }
}

/* Ranchers-tekst: zwart, elke regel wit blokje met padding */
.ranchers{
  font-family: 'IBM Plex Mono', cursive;
  color:#F6F3E5;
  font-size: clamp(15.8px, 1.44vw, 23px);
  line-height:1.25;
  display:inline-block;
  transform: rotate(33deg);   /* laat gerust staan of verwijder als je geen kanteling wil */
  text-align:left;
}
.ranchers span{
  display:inline-block;
  background:#E33E0F;
  color:#F6F3E5;
  padding:5px 8px;           /* jouw 5px padding (extra horizontaal wat netter) */
  margin-bottom:6px;
  border-radius:4px;         /* optioneel, mag weg */
}

/* Fade-in effect voor paragraaf */
#intro-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2.4s ease, transform 2.4s ease; /* trager en scrollend */
}
#intro-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtitel: eerst fade/slide-in bij scroll */
#intro-typewriter-sub{
  overflow:hidden;
  white-space:nowrap;
  width:0;                    /* nodig voor typing-animatie */
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}

/* 1) In view → toon (nog niet typen) */
#intro-typewriter-sub.start{
  opacity:1;
  transform:none;
}

/* 2) Na delay → begin typen */
#intro-typewriter-sub.typing{
  animation:typing 2s steps(30, end) forwards;
}




@keyframes typing {
  from { width: 0; }
  to   { width: 100%; }
}

/* Highlight kleur voor "STERKE MERKEN" */
.highlight-merken {
  color: #E33E0F;
  font-weight: 700;
}

/* icoon link stijl */
.intro-icon-link {
  display: inline-block;
    margin-left: 70px;    /* ← duwt het icoon dichter naar rechts */
  transition: transform .2s ease;
}

.intro-icon-link svg {
  width: 80px;     /* formaat dat je wilt */
  height: 100px;
  transform: rotate(200deg);   /* 90° draaien zodat hij naar beneden wijst */
  transition: transform .4s ease, fill .4s ease;
  fill: #000;
}


@keyframes caretBlink { 
  50% { border-color: transparent; } 
}

/* Services: sterkere reveal + 3D-pop */
#services .card {
  opacity: 0;
  transform: translateY(40px) scale(.98) rotateX(4deg);
  transform-origin: center bottom;
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2,.7,.2,1),
    box-shadow .3s ease;
}

#services .card.visible {
  opacity: 1;
  transform: none; /* valt terug naar normale positie */
}

.cta-subline{
  display:inline-block;       /* alleen zo breed als de tekst */
  width:auto !important;      /* overschrijft evt. oude rules */
  background:#F6F3E5;
  color:#000;
  padding:8px 12px;           /* exact 8px padding */
  border-radius:6px;
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  font-size:14px;             /* ~25% kleiner dan 18px */
  text-transform:lowercase;
  white-space:nowrap;         /* 1 regel blijven */
  line-height:1;
  margin:0 auto 10px;         /* gecentreerd, ruimte eronder */
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #191919;
  color: #F6F3E5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  z-index: 5000;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-inner h2 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  color: #F6F3E5;
}

.cookie-inner p {
  margin: 10px 0 15px;
}

.cookie-details summary {
  cursor: pointer;
  margin-bottom: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.cookie-actions button {
  background: #000000;
  border: 2px solid #F6F3E5;
  color: #F6F3E5;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.cookie-actions button:hover {
  background: #F6F3E5;
  color: #000;
}

.cookie-banner a {
  color: #F6F3E5;         /* zelfde wit als je tekst */
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #fff;            /* optioneel: feller wit bij hover */
}

/* ==== Cookie-checkboxen restyle ==== */
.cookie-toggle input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #F6F3E5;   /* randkleur */
  border-radius: 4px;
  background: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;                   /* netjes uitlijnen met label */
}

/* aangevinkt: vakje vullen */
.cookie-toggle input[type="checkbox"]:checked{
  background-color: #F6F3E5;   /* witachtig vakje */
  border-color: #F6F3E5;
}

/* zwart vinkje tekenen */
.cookie-toggle input[type="checkbox"]:checked::after{
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #000;          /* zwart */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* focus-toegankelijkheid */
.cookie-toggle input[type="checkbox"]:focus-visible{
  outline: 2px dashed #F6F3E5;
  outline-offset: 2px;
}

.footer-legal {
  display: flex;
  gap: 8px;                  /* ruimte tussen link en | */
  align-items: center;
  font-size: 14px;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--accent);      /* rood bij hover */
}

.footer-legal span {
  color: #fff;               /* kleur van de | */
}

.menu-list a {
  color: #000;              /* gewoon zwart */
  text-decoration: none;    /* geen underline */
  font: inherit;            /* neemt font en gewicht van li over */
}

.menu-list a:hover,
.menu-list a:focus,
.menu-list a:active {
  color: #000;              /* blijft zwart */
  text-decoration: none;    /* blijft zonder underline */
}

.brand,
.footer-brand {
  position: relative;
}

.brand-link {
  position: absolute;
  inset: 0;               /* bedekt alles (tekst + bol) */
  z-index: 5;             /* boven de tekst */
  text-indent: -9999px;   /* tekst visueel verbergen */
}


/* Hero-kolommen als links, geen hover-kleur, geen caret */
.hero-columns .type-line {
  border-right: 0;           /* geen cursor-lijn */
  padding-right: 0;
}

.hero-columns .type-line a {
  color: transparent;        /* basis-tekst onzichtbaar, behoudt breedte */
  text-decoration: none;
  display: inline;           /* geen blokbreuken */
  position: relative;
  white-space: nowrap;       /* 1 regel binnen de kolom */
  overflow: hidden;          /* niets buiten de kolom tonen */
}

/* R-type effect via masker (geen cursor, geen layout shift) */
.hero-columns .type-line.rtype a::after {
  content: attr(data-rtxt);
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  white-space: inherit;
  color: #fff;               /* expliciet wit → zichtbaar, ook als basis transparant is */
  pointer-events: none;      /* clicks blijven op de <a> zelf */

  -webkit-mask-image: linear-gradient(90deg,#000 0 0);
  mask-image: linear-gradient(90deg,#000 0 0);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  animation: rtypeReveal var(--rtype-duration,1.8s) steps(var(--rtype-steps,20), end) forwards;
}

@keyframes rtypeReveal {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}



/* Intro: twee-koloms layout op desktop, 1 kolom op mobiel */
.intro .grid-12 { grid-template-columns: repeat(12, 1fr); }

/* Mobiel: tekst over volledige breedte, prettige leesregel */
.intro-copy{
  grid-column: 1 / -1;
  max-width: 78ch;      /* ± prettige leesbreedte */
}

/* Mobiel: aside onder de tekst */
.intro-aside{
  grid-column: 1 / -1;
  margin-top: 24px;
  align-self: start;
  justify-self: start;
}

@media (min-width: 992px){
  .intro-copy  { grid-column: 1 / span 9; }

  /* Verticaal (en horizontaal) centreren in de rechterkolom */
  .intro-aside{
    grid-column: 10 / -1;
    display: flex;
    align-items: center;    /* verticaal centreren */
    justify-content: center;/* horizontaal centreren */
  }

  .intro-portrait { max-width: 100%; }
  .intro-portrait .portrait{
    /* Staande foto met transparante achtergrond (geen cirkel) */
    width: clamp(220px, 18vw, 320px);
    height: auto;
    max-height: clamp(420px, 58vh, 640px); /* iets royaler dan voorheen */
    object-fit: contain;
    border-radius: 0;              /* expliciet: niet rond */
    background: transparent;       /* behoud transparantie PNG/WebP */
    filter: drop-shadow(0 22px 50px rgba(0,0,0,.22));
    /* geen translateY meer */
  }
}

/* Intro-sectie op volledige hoogte en foto verticaal centreren */
.intro .container { height: 100%; }
.intro .grid-12 { height: 100%; }

@media (min-width: 992px){
  .intro .grid-12 { align-items: center; }  /* centreer kolommen in de hoogte */

  .intro-copy  { align-self: start; }       /* tekst bovenaan */
  .intro-aside { align-self: center; }      /* foto kolom in het midden */
}


/* Optioneel: als je er een leuke bol in wilt */
.accent-bol{
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}


/* De intro/hero-sectie zelf */
.intro { 
  padding-bottom: 0;                /* geen extra ruimte onderaan */
}



/* Titel altijd precies 2 regels */
.intro-title{ white-space: normal; }
.intro-title .keep{ white-space: nowrap; }  /* “BOUW. BOOST.” blijft samen op regel 1 */

.portrait-caption {
  margin-top: 12px;                 /* ruimte onder de foto */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;                 /* regular */
  font-size: 14px;
  letter-spacing: -0.6px;
  line-height: 1.4;
  text-align: left;                 /* tekst links uitlijnen */
  display: inline-block;            /* zodat het blok zelf mee-centreert */
}

.intro-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;              /* centreert img + caption in het midden */
}

.intro-sub-link {
  text-decoration: none;
  color: inherit;   /* behoud de huidige tekstkleur */
  display: inline-block;
}

/* Gele bol */
.highlight-bol {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fffc00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;   /* afstand onder pijltje */
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.highlight-bol #highlightText {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 1.4;
  white-space: pre-line;  /* ✅ zorgt dat \n nieuwe regels worden */
}

.hero-overlay2 {
  display: none !important;
}

/* Act-item: typografie + afzonderlijke onderlijn, geen “doorlopende” lijnen */
.act-item{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color:#fff;
  text-decoration:none;
  font-family:'IBM Plex Mono', monospace;
  font-weight:700;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing:-0.2px;
  line-height:1.25;

  width: max-content;
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-bottom: 2px solid #fff;
}


/* mini-correctie: 2px compenseert de border-bottom rechts */
.hero-actions .cta-panel{ margin-bottom: 5px; }

.hero-content {
  padding-top: 60px; /* of 80px, afhankelijk van balans */
}

.card {
  position: relative;  
  padding-bottom: 80px; /* ruimte vrijhouden onder tekst */
}

.card::before {
  z-index: 1; /* overlay laag */
}

.card-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 120px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);        /* semi-transparant zwart */
  border: 2px solid rgba(255,255,255,0.25);
  
  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(12px) saturate(180%);   /* glas-effect */
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  
  box-shadow: inset 1px 1px 6px rgba(255,255,255,0.2),
              0 4px 20px rgba(0,0,0,0.35);
  transition: transform .2s ease, box-shadow .2s ease;

  z-index: 2;
  cursor: pointer;
  text-decoration: none;
}
.card-btn:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.5);
}
.card-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* === Clients / Logo Carousel (20vh, wit) === */
.clients{
  height: 15vh;
  min-height: 140px;          /* kleine fallback */
  background: #000000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo-marquee{
  width: 100%;
  overflow: hidden;
  /* dezelfde zijkant-padding als je container */
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

.logo-track{
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  list-style: none;
  margin: 0;
  padding: 0;
  /* oneindig horizontaal scrollen */
  animation: logoscroll 28s linear infinite;
}

.logo-track li{ flex: 0 0 auto; }
.logo-track img{
  height: clamp(28px, 6vh, 54px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;               /* kleuren behouden op witte bg */
  opacity: .95;
  transition: opacity .2s ease, transform .2s ease;
}
.logo-track img:hover{
  opacity: 1;
  transform: translateY(-2px);
}

/* vloeiende loop – verschuif één “set” breedte */
@keyframes logoscroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}


/* ... bestaand einde van je CSS bestand ... */

/* Respecteer reduced motion */
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
}


/* === Stacking + scroll-gestuurde reveal voor de tweede sectie (.intro) === */

/* Hero boven de volgende sectie */
.hero-wrap{
  position: relative;     /* staat al, maar laat expliciet staan */
  z-index: 3;             /* hoger dan de intro-sectie */
}

/* Tweede sectie (direct na hero) */
.intro{
  position: relative;
  z-index: 1;

  /* scroll-gestuurde variabelen */
  margin-top: var(--s2-offset, -160px);                  /* start -160px */
  min-height: var(--s2-height, calc(100vh - 160px));     /* groeit naar 100vh */

  /* je had: padding: var(--section-pad) 0;  → we sturen alleen top dynamisch */
  padding-top: var(--s2-pad, 0px);
  padding-bottom: var(--section-pad);

  transition: padding-top .3s ease;
  will-change: margin-top, min-height, padding-top;
}

/* === HERO: TYPE-OVERLAY voor werktypes (mask typing) === */
.hero-right .act-item span{
  position: relative;
  color: transparent;            /* echte tekst onzichtbaar, breedte blijft */
}
.hero-right .act-item span::after{
  content: attr(data-rtxt);
  position: absolute;
  left: 0; top: 0; right: auto; bottom: auto;
  color: #fff;

  /* typing via mask */
  -webkit-mask-image: linear-gradient(90deg, #000 0 0);
  mask-image: linear-gradient(90deg, #000 0 0);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  animation: heroType var(--ht-duration,1.6s)
             steps(var(--ht-steps,24), end)
             forwards;
  animation-play-state: var(--ht-state, paused);  /* JS zet op running */
}

@keyframes heroType{
  to{
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

/* === LIJN-GROEI + ICOON FADE-IN (na typing) === */
.hero-right .act-item{
  position: relative;
  border-bottom: none !important;            /* oude border uit */
}
.hero-right .act-item::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  height:2px; width:0%;
  background:#fff;
  transition: width .6s ease;
}
.hero-right .act-item svg{
  opacity:0; transform: translateY(4px);
  transition: opacity .4s ease .05s, transform .4s ease .05s;
}

/* klaar → toon lijn + icoon */
.hero-right .act-item.typed::after{ width:100%; }
.hero-right .act-item.typed svg{ opacity:1; transform: translateY(0); }

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce){
  .hero-right .act-item span{ color: inherit; }
  .hero-right .act-item span::after{ content: none; }
  .hero-right .act-item::after{ width:100%; }
  .hero-right .act-item svg{ opacity:1; transform:none; }
}

/* ===== Onze services (split + accordeon, zwart, 100vh) ===== */
.services-split { padding: 0; }
.services-split .container { height: 100%; }

.svc-grid{
  display: grid;
  grid-template-columns: 30% 70%;
  gap: var(--gutter);
  align-items: start;           /* verankerd aan BOVEN → geen “springen” */
  height: 100vh;                /* exact 100vh */
}

/* Linkerkolom */
.svc-left h1{
  margin: 0;
  color: #fff;
  font-size: var(--h2);
  line-height: 1.1;
}

/* Rechterkolom */
.svc-right{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* niet centreren → stabiel bij openen */
  color: #fff;
  border-top: 2px solid #efefef;  /* bovenste scheiding */
  padding-top: 10px;              /* kleine buffer */
}

/* Item + 2px scheidingen */
.svc-item{
  border-bottom: 2px solid #efefef;
}

/* Klikbare titel */
.svc-head{ margin: 0; padding: 0; }
.svc-title-btn{
  -webkit-appearance: none; appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 16px 8px;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.svc-title-btn:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Panel met knop RECHTS en smooth-height */
.svc-panel{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: hidden;
  height: auto;                /* JS zet naar auto na animatie */
  opacity: 1;
  padding: 0 8px 14px 8px;
  transition: height .35s cubic-bezier(.2,.7,.2,1),
              opacity .25s ease,
              padding .2s ease;
}
.svc-item:not(.is-open) .svc-panel{
  height: 0;
  opacity: 0;
  padding-bottom: 0;
}

.svc-panel p{
  margin: 0;
  color: #F6F3E5;
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}


/* Responsive */
@media (max-width: 992px){
  .svc-grid{ grid-template-columns: 1fr; height: auto; }
  .services-split .container{ height: auto; }
}

/* Services H1 = zelfde styling als je globale H1, maar wit op zwart */
.services-split .svc-left h1{
  font-family:'Space Grotesk',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size: clamp(32px, 8vw, 90px);
  letter-spacing:-0.2px;
  line-height:1.05;
  margin:0 0 25px;
  color:#fff;
}

/* BOOST-animatie met contrast op zwart (alleen in services-sectie) */
.services-split .svc-left h1 .boost{
  display: inline-block;
  color: #fff;                   /* startkleur */
  animation: svcBoost 1s ease-in-out infinite alternate;
}
@keyframes svcBoost{
  from { color:#fff; }           /* wit → */
  to   { color:#E53D12; }        /* → accent */
}

.services-split .svc-left h1{
  font-size: clamp(32px, 8vw, 90px) !important;
}

.services-split .svc-grid{
  align-items: start;   /* sectie-items standaard boven */
  height: 100vh;        /* (heb je al; mag blijven) */
}
.services-split .svc-left{
  align-self: center;   /* H1 verticaal gecentreerd */
}
@media (max-width: 992px){
  .services-split .svc-left{ align-self: start; } /* mobiel bovenaan */
}

/* Icoon-link i.p.v. knop — altijd rechts in het panel */
.svc-panel{
  display: grid;
  grid-template-columns: 1fr auto;  /* tekst links, icoon rechts */
  align-items: end;
  gap: 12px;
}

/* Klikbaar icoon rechts */
.svc-ico{
  justify-self: end;
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;                 /* subtiele hit-area */
  text-decoration: none;
  outline: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

/* SVG zelf op 35×35 en kleur */
.svc-ico svg{
  width: 55px;
  height: 55px;
  fill: #efefef;
  display: block;
}

/* Hover/active/focus (op zwart) */
@media (hover:hover){
  .svc-ico:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,.35);
    background: rgba(255,255,255,.06);
  }
}
.svc-ico:active{ transform: translateY(0); }
.svc-ico:focus-visible{
  box-shadow:
    0 0 0 3px #000,            /* inner contrast op zwart */
    0 0 0 6px var(--accent);   /* brand focusring */
  background: rgba(255,255,255,.06);
}

/* (optioneel) Verwijder oude knop-styling als je wil opschonen */
.svc-cta{ display:none !important; }

/* Services H1: boost knippert wit ↔ rood, geen fade */
.services-split .svc-left h1 .boost{
  color: #fff;                                    /* start: wit */
  animation: svcBlink 2s steps(1, end) infinite;
}

@keyframes svcBlink{
  0%, 49%  { color: #fff; }                       /* eerste helft wit */
  50%,100% { color: var(--accent); }              /* tweede helft rood */
}

/* (optioneel) respecteer reduced motion */
@media (prefers-reduced-motion: reduce){
  .services-split .svc-left h1 .boost{
    animation: none;
    color: var(--accent); /* of #fff, kies wat je wil tonen */
  }
}


/* Exact dezelfde footer-looks als index.html, voor het geval main.css niet laadt */
footer { background:#000; color:#fff; padding:60px 0; border-top-left-radius:25px; font-family:'IBM Plex Mono', monospace; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; align-items:start; }
.footer-cta, .footer-links, .footer-contact { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
footer h3, footer h4, footer p, footer ul { margin:0; }
.footer-links ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:8px; }
.footer-links a, .footer-contact a { color:#fff; text-decoration:none; transition:color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color:#E33E0F; }
.footer-legal { display:flex; gap:8px; align-items:center; font-size:14px; }
.footer-brand { position:relative; font:700 18px/1.3 'Space Grotesk', sans-serif; letter-spacing:.2px; text-align:center; -webkit-text-stroke:.6px #000; color:#fff; display:inline-block; padding:12px 20px; }
.footer-brand::before { content:""; position:absolute; top:50%; left:50%; width:65px; height:65px; background:#E33E0F; border-radius:50%; transform:translate(-50%,-50%); animation:pulse 3.2s ease-in-out infinite; z-index:0; }
.footer-brand span { position:relative; z-index:1; display:block; }
footer .btn-hero { font-size:16px; padding:16px 22px; margin-bottom:30px; }
@media (max-width: 992px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; } }
@media (max-width: 600px){ .footer-grid{ grid-template-columns:1fr; } }


/* === FAQ (split, 100vh, accordeon) === */
.faq .container { height: 100%; }
.faq-grid{
  display:grid;
  grid-template-columns: 40% 60%;
  gap: var(--gutter);
  align-items: start;
  height: 100%;
}

/* Thema-variabelen op basis van achtergrond */
.faq.bg-light{ --faq-ink:#000; --faq-rule:#111; }
.faq.bg-dark { --faq-ink:#fff; --faq-rule:#efefef; }

.faq{ color:var(--faq-ink); }
.faq .faq-title{
  /* zelfde H1-styling als services H1 (wit/zwart volgt automatisch) */
  font-family:'Space Grotesk',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size: clamp(36px, 8vw, 100px);
  line-height:1.05;
  letter-spacing:-0.2px;
  margin:0 0 12px;
  color:var(--faq-ink);
}
.faq .faq-title .boost{
  animation: faqBlink 2s steps(1,end) infinite;
}
@keyframes faqBlink{
  0%,49% { color: var(--faq-ink); }
  50%,100% { color: #E33E0F; }
}
.faq .faq-sub{
  font:400 18px/1.6 'IBM Plex Mono',monospace;
  opacity:.9;
}

/* Lijst met items + lijnen */
.faq-list{
  width:100%;
  border-top:2px solid var(--faq-rule);
}
.faq-item{
  border-bottom:2px solid var(--faq-rule);
}

/* Titel-knop */
.faq-head{ margin:0; }
.faq-btn{
  -webkit-appearance:none; appearance:none;
  width:100%;
  background:transparent; border:0; cursor:pointer;
  text-align:left;
  padding:18px 8px;
  color:var(--faq-ink);
  font-family:'IBM Plex Mono',monospace;
  font-weight:700; letter-spacing:-0.2px;
  font-size: clamp(18px,1.8vw,22px);
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:12px;
}
.faq-btn:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* Indicator (plus/min) via CSS */
.faq-ind{
  position:relative; width:18px; height:18px; display:inline-block;
}
.faq-ind::before, .faq-ind::after{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  background:var(--faq-ink);
}
.faq-ind::before{ width:18px; height:2px; }   /* horizontaal */
.faq-ind::after{ width:2px; height:18px; transition:opacity .2s ease; } /* verticaal */
.faq-item.is-open .faq-ind::after{ opacity:0; } /* minus wanneer open */

/* Panel met smooth-height + reveal */
.faq-panel{
  overflow:hidden;
  height:auto;           /* JS zet auto na openen */
  opacity:1;
  padding:0 8px 16px 8px;
  transition: height .35s cubic-bezier(.2,.7,.2,1),
              opacity .25s ease,
              padding .2s ease;
}
.faq-item:not(.is-open) .faq-panel{
  height:0; opacity:0; padding-bottom:0;
}
.faq-panel p{
  margin:0;
  max-width:70ch;
  color:var(--faq-ink);
}

/* Scroll reveal (zelfde timing/feel als cards) */
.faq .reveal-up{ opacity:0; transform:translateY(40px); transition:opacity .6s ease, transform .6s ease; }
.faq .reveal-up.visible{ opacity:1; transform:none; }

/* Responsive */
@media (max-width: 992px){
  .faq-grid{ grid-template-columns:1fr; height:auto; }
  .faq .container{ height:auto; }
}

/* ===== WhatsApp knop ===== */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #191919;
  border: 2px solid #F6F3E5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 9998;
  transition:
    transform 0.25s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.25s,
    background 0.25s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}


.whatsapp-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* ===== E-mail knop ===== */
.email-float {
  position: fixed;
  bottom: calc(40px + 64px + 16px); /* WhatsApp-knophoogte + 16px marge */
  right: 40px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #191919;
  border: 2px solid #F6F3E5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 9998;
  transition:
    transform 0.25s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.25s,
    background 0.25s;
}

.email-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.email-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* === Mobiel menu typografie kleiner (18 px) === */
@media (max-width: 768px) {
  .menu-list li {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }

  .menu-list a {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
  }
}


/* 20px ruimte tussen FAQ-titel en subtitel */
.faq .faq-sub {
  margin-top: 25px;   /* ruimte boven de subtitel */
}


/* ===== SECTIE: AFSPRAAKPLANNER (FAQ-layout met iframe) ===== */

/* Basis: dezelfde layout en spacing als de FAQ */
#faq-planner.faq {
  background: var(--bg-light);
  color: var(--ink-dark);
  padding: var(--section-pad) 0;
  scroll-margin-top: 90px;
}

@media (min-width: 992px) {
  #faq-planner .faq-left {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ✅ verticaal centreren */
    height: 100%;            /* nodig om midden te kunnen centreren */
  }
}


/* Iframe mooi uitlijnen in de rechterkolom */
#faq-planner .faq-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Iframe zelf (geïntegreerde widget) */
#faq-planner iframe#plannerWidget {
  width: 100%;
  max-width: 880px;
  min-height: 600px;
  border: none !important;        /* verwijdert rand volledig */
  outline: none !important;       /* verwijdert focusrand */
  border-radius: 0 !important;    /* rechte hoeken */
  box-shadow: none !important;    /* geen slagschaduw */
  background: transparent !important; /* transparante achtergrond */
  display: block;
  box-sizing: border-box;
  padding: 0;
}



/* Typografie linker kolom consistent met FAQ */
#faq-planner .faq-left h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 8vw, 100px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--ink-dark);
}
#faq-planner .faq-left .boost {
  color: var(--accent);
}
#faq-planner .faq-sub {
  font: 400 18px/1.6 'IBM Plex Mono', monospace;
  color: #000;
  opacity: .9;
  margin-bottom: 25px;
}


/* Mobiel: kolommen stapelen net zoals FAQ */
@media (max-width: 992px) {
  #faq-planner .faq-grid {
    grid-template-columns: 1fr;
    height: auto;
    row-gap: 0; /* ❌ geen ruimte tussen kolommen */
  }
  #faq-planner .faq-left {
    margin-bottom: 0; /* ❌ geen marge onder de linkerkolom */
  }
  #faq-planner iframe#plannerWidget {
    min-height: 700px;
  }
}

/* ✅ Extra mobielblok voor spacing & iframe-padding */
@media (max-width: 768px) {
  /* 1️⃣ sectie 50px boven/onder */
  #faq-planner.faq {
    padding: 50px 0;
  }

  /* 2️⃣ 25px zijkant-padding */
  #faq-planner .container {
    padding: 0 25px;
  }

  /* 3️⃣ iframe zonder witte achtergrond en zonder eigen rand */
#faq-planner iframe#plannerWidget {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}


}

@media (min-width: 992px) {
  #faq-planner iframe#plannerWidget {
    width: 100% !important;
    max-width: 480px !important; /* desktop-breedte */
    margin: 0 auto !important;
    display: block !important;
  }

  #faq-planner .faq-right {
    display: flex !important;
    justify-content: center !important;
  }
}

/* ========== SECTIE “Plan je afspraak” ========== */

/* Enkel het woord ‘afspraak’ in rood */
#faq-planner .faq-title .accent {
  color: #E33E0F;
}

/* Standaard: zwarte rechterrand (desktop) */
#faq-planner .faq-left {
  border-right: 1px solid #000;
  padding-right: 24px; /* optioneel voor wat ademruimte */
}

/* Op mobiel (onder 768px): rand weghalen */
@media (max-width: 768px) {
  #faq-planner .faq-left {
    border-right: none;
    padding-right: 0;
  }
}


/* ===== DEFINITIEVE FIX FAQ LAYOUT ===== */

/* container mag nooit breder dan de parent zijn */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* twee kolommen, gelijke breedte */
  gap: 60px;
  align-items: start;
  width: 100%;
  max-width: 1240px;              /* of var(--container) als je die gebruikt */
  margin: 0 auto;                 /* centreren */
  box-sizing: border-box;
}

/* linker en rechter kolom netjes binnen grid */
.faq-left,
.faq-right {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* lijst zelf mag niet uitzetten */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* elk faq-item blijft binnen rechterkolom */
.faq-item {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* responsive: enkel 1 kolom op mobiel */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq,
#faq-planner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Corrigeer globale sectiebreedte (maakt alles container-based i.p.v. viewport-based) */
section,
.vh-100 {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.hero-slogan {
  font-size: var(--h2);
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 25px;
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== Hero specifieke boost kleur (wit ↔ rood) ===== */
#svc-hero .boost {
  animation: heroBoost 2s steps(1, end) infinite;
  color: #fff; /* start wit */
}

@keyframes heroBoost {
  0%, 49%   { color: #fff; }     /* eerste helft wit */
  50%, 100% { color: #E33E0F; }  /* tweede helft rood */
}

/* ===== HERO LINKS CORRECT STYLEN ===== */
#svc-hero a {
  color: var(--ink-dark);     /* zwart */
  font-weight: 700;           /* vet */
  text-decoration: none;      /* geen onderlijning */
}

#svc-hero a:hover,
#svc-hero a:focus,
#svc-hero a:active {
  color: var(--ink-dark);     /* blijft zwart */
  text-decoration: none;      /* geen underline */
}

/* ===== SECTIE 2: links in donkere context ===== */
#svc-content a {
  color: #fff !important;                  /* forceer wit */
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.25s ease;
  -webkit-text-fill-color: #fff;           /* fix voor iOS Safari */
}

/* Hover-, focus- en active-staten */
#svc-content a:hover,
#svc-content a:focus,
#svc-content a:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;        /* consistent in iOS */
  text-decoration: underline;
}

/* voorkom blauw/paars bij 'bezochte' links */
#svc-content a:visited {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}


/* ===== FAQ links: wit, vet, geen onderlijning ===== */
.faq a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.faq a:hover,
.faq a:focus,
.faq a:active {
  color: #fff;
  text-decoration: underline;
}

/* ===== Afspraakknop (boven e-mail en WhatsApp) ===== */
.meeting-float {
  position: fixed;
  bottom: calc(40px + (64px + 16px) * 2); /* twee knoppenhoogtes + 2x16px marge */
  right: 40px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #191919;
  border: 2px solid #F6F3E5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 9998;
  transition:
    transform 0.25s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.25s,
    background 0.25s;
}

.meeting-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Binnenste icoon (SVG of IMG) */
.meeting-float .meeting-icon,
.meeting-float svg {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
}


/* === FIX: Hero- en Floating-knop openen popup === */

/* Hero e-mailknop en eventuele button */
.hero-actions a[itemprop="email"],
#openPopupHero {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Floating e-mailknop: altijd boven alles */
.email-float {
  position: fixed !important;
  z-index: 100000 !important;
  pointer-events: auto !important;
}

/* Popup: altijd boven alles */
#mail-popup {
  z-index: 100001 !important;
}

/* Tekstkleur voor alle mini-knoppen consistent houden */
.mini-btn,
.mini-btn:hover,
.mini-btn:focus,
.mini-btn:active {
  color: #F6F3E5 !important;
  background: #191919 !important;
  text-decoration: none !important;
}

/* ================================================
   E-MAIL POPUP (UNIVERSEEL – Campagne Partners)
   ================================================ */

/* Achtergrondoverlay */
.popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}
.popup.hidden {
  display: none;
}

/* Inhoud popup */
.popup-content {
  background: rgba(246, 243, 229, 0.95); /* iets transparanter beige */
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Responsief */
@media (max-width: 600px) {
  .popup-content {
    margin: 0 25px;
    padding: 40px 25px;
  }
}

/* Titel */
.popup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}

/* Sluitknop */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  cursor: pointer;
  color: #191919;
}

/* Velden */
.popup-content input,
.popup-content textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: #191919;
  background: #F6F3E5;
  margin-bottom: 8px; /* 50% minder verticale ruimte */
}

/* --- Autofill fix voor Chrome / Safari --- */
.popup-content input:-webkit-autofill,
.popup-content input:-webkit-autofill:hover,
.popup-content input:-webkit-autofill:focus,
.popup-content textarea:-webkit-autofill,
.popup-content textarea:-webkit-autofill:hover,
.popup-content textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #F6F3E5 inset !important;
  -webkit-text-fill-color: #191919 !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Tekstveld */
.popup-content textarea {
  height: 120px;
  resize: vertical;
}

/* Placeholder kleur */
::placeholder {
  color: #666;
}

/* Knop onderaan */
.send-btn {
  background: #191919;
  color: #fff;
  border: none;
  padding: 10px 10px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
}
.send-btn:hover {
  opacity: 0.9;
}

/* Succesboodschap */
.success-msg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #191919;
  text-align: center;
  padding: 40px 0;
}

/* Helperklasse */
.hidden {
  display: none;
}

/* === Popup: logo linksboven === */
.popup-logo {
  position: absolute;
  top: 20px;
  left: 25px;
}
.popup-logo img {
  height: 56px; /* 42 × 1.33 = 56 */
  width: auto;
  display: block;
}

/* Titel onder logo – veilige afstand (logo + 25px extra) */
.popup-title {
  margin-top: 75px; /* 50px ruimte voor logo + 25px lucht */
}

@media (max-width: 600px) {
  .popup-title {
    margin-top: 65px; /* iets compacter op mobiel */
  }
}

/* === Popup: formulier layout === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 20px; /* verticale afstand 50% kleiner (was 14px) */
  margin-top: 20px;
  margin-bottom: 5px; /* iets compacter */
}

/* Zorg dat enkel de 2-kolomsvelden in grid zitten */
.form-grid input {
  width: 100%;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  color: #191919;
  background: #F6F3E5;
}

/* Enkel voor de velden daaronder (email & bericht) */
#contactForm > input[type="email"],
#contactForm > textarea {
  width: 100%;
  margin-top: 10px;
}

/* Responsief – op mobiel alles onder elkaar */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .popup-logo img {
    height: 50px;
  }
}
