*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #1A3D52;
  --coral: #F07060;
  --coral-light: #FEF0EE;
  --light: #F5F3F0;
  --white: #ffffff;
  --muted: #6B8394;
  --border: rgba(26,61,82,.1);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: #fff;
  padding: 1.2rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 680px; }
.cookie-text a { color: var(--coral); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: .8rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--coral); color: #fff; border: none;
  padding: .6rem 1.4rem; border-radius: 30px;
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.cookie-btn-accept:hover { background: #d44e3d; }
.cookie-btn-decline {
  background: none; color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: .6rem 1.4rem; border-radius: 30px;
  font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* LEGAL PAGES */
.legal-content { max-width: 720px; margin: 0 auto; padding: 7rem 5vw 5rem; }
.legal-content h1 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.legal-content .legal-date { font-size: .82rem; color: var(--muted); margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 2.2rem 0 .7rem; }
.legal-content p { font-size: .92rem; line-height: 1.8; color: var(--muted); margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .92rem; line-height: 1.8; color: var(--muted); margin-bottom: .3rem; }
.legal-content a { color: var(--coral); }
.legal-back { display: inline-block; margin-bottom: 2rem; font-size: .85rem; font-weight: 600; color: var(--coral); text-decoration: none; }
.legal-back:hover { text-decoration: underline; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,61,82,.08); }
.nav-logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 0;
  background: none;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-mark img { width: 36px; height: 36px; border-radius: 8px; display: block; }
.nav-logo-text { font-weight: 700; font-size: 1.05rem; color: var(--dark); line-height: 1.15; }
.nav-logo-sub { font-size: .62rem; color: var(--muted); font-weight: 400; display: block; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { text-decoration: none; font-size: .88rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--coral); color: #fff; border: none;
  padding: .6rem 1.4rem; border-radius: 30px; font-family: var(--font-body);
  font-size: .85rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #d44e3d; transform: translateY(-1px); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }


/* SECTIONS */
section { padding: 6rem 5vw; }
.container { max-width: 1080px; margin: 0 auto; }

/* HERO VIDEO */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-photo-temp {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(26,61,82,.88) 0%,
    rgba(26,61,82,.75) 50%,
    rgba(15,30,42,.88) 100%
  );
}
/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 5vw 5rem;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-content { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; width: 100%; }
.hero-label {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1.5rem;
  background: rgba(232,96,78,.12); padding: .35rem 1rem; border-radius: 20px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.15; color: #fff; max-width: 680px; margin-bottom: 1.8rem;
}
.hero h1 em { font-style: normal; color: var(--coral); }
.hero-title-word { hyphens: none; -webkit-hyphens: none; }
.hero-sub {
  font-size: clamp(.95rem, 1.3vw, 1.12rem); color: rgba(255,255,255,1);
  max-width: 520px; line-height: 1.75; margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--coral); color: #fff; border: none;
  padding: .9rem 2rem; border-radius: 30px; font-family: var(--font-body);
  font-size: .92rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #d44e3d; transform: translateY(-2px); }
.btn-ghost {
  background: none; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.22);
  padding: .9rem 2rem; border-radius: 30px; font-family: var(--font-body);
  font-size: .92rem; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.55); color: #fff; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4.5rem; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: .3rem;
}
.hero-stat-num span { color: var(--coral); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 400; }

/* MARQUEE STRIP */
.strip {
  background: var(--coral); padding: .85rem 0; overflow: hidden;
  display: flex; gap: 0;
}
.strip-inner {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: .8rem; font-weight: 600; color: #fff;
  letter-spacing: .1em; text-transform: uppercase;
}
.strip-sep { color: rgba(255,255,255,.4); margin: 0 .5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center;
}
.about-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1.2rem;
}
.about h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.4rem; color: var(--dark);
}
.about h2 em { font-style: normal; color: var(--coral); }
.about p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.2rem; }
.xtnt-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .8rem;
  background: var(--light); border-radius: 10px; padding: .75rem 1.2rem;
  font-size: .82rem; color: var(--dark); font-weight: 500;
}
.xtnt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
/* ABOUT PHOTO */
.about-photo {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--dark);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.4rem;
  background: linear-gradient(transparent, rgba(26,61,82,.75));
  font-size: .75rem; color: rgba(255,255,255,.75); line-height: 1.5;
}
.about-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .6rem; min-height: 300px;
  border: 2px dashed rgba(255,255,255,.15);
}
.about-photo--placeholder::before {
  content: '📷';
  font-size: 2.5rem; opacity: .4;
}
.about-photo--placeholder::after {
  content: 'Voeg hier foto-team.jpg toe';
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.about-photo--placeholder img { display: none; }
.about-photo--placeholder .about-photo-caption { display: none; }
.three-pillars {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  border-radius: 20px; padding: 2rem;
  transition: transform .2s;
}
.pillar:hover { transform: translateY(-3px); }
.pillar--light { background: var(--light); }
.pillar--coral { background: var(--coral); }
.pillar--coral h4 { color: #fff; }
.pillar--coral p { color: rgba(255,255,255,.82); }
.pillar-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.pillar-icon-wrap--hinder { background: rgba(26,61,82,.08); }
.pillar-icon-wrap--gedrag { background: rgba(255,255,255,.25); }
.pillar-icon-wrap--data { background: rgba(26,61,82,.08); }
.pillar h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.pillar p { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* LIGHT CASE CARDS */
.case-card-light {
  background: var(--white); border-radius: 18px; padding: 1.8rem;
  border: 1.5px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.case-card-light:hover { border-color: var(--coral); transform: translateY(-3px); }
.case-tag-light {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1rem;
}
.case-card-light h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.case-card-light p { font-size: .8rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.4rem; }
.case-stats-light { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.case-stat-num-light {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); line-height: 1; margin-bottom: .2rem;
}
.case-stat-label-light { font-size: .7rem; color: var(--muted); }

/* WERKWIJZE */
.werkwijze { background: var(--light); }
.werkwijze .about-label { color: var(--coral); }
.werkwijze h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.12; margin-bottom: .8rem; color: #fff;
}
.werkwijze h2 em { font-style: italic; color: var(--coral); }
.werkwijze-sub { font-size: 1rem; color: var(--muted); margin-bottom: 3.5rem; max-width: 560px; line-height: 1.7; }
.steps-row {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0;
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(26,61,82,.12);
}
.step-item {
  padding: 1.6rem 1.2rem; background: #fff;
  border-right: 1px solid rgba(26,61,82,.1);
  position: relative;
  transition: background .2s;
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: #f9f8f6; }
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--coral); line-height: 1; margin-bottom: .8rem; opacity: 1;
}
.step-item h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; word-break: break-word; hyphens: auto; }
.step-item p { font-size: .78rem; color: var(--muted); line-height: 1.65; overflow-wrap: break-word; word-break: break-word; hyphens: auto; -webkit-hyphens: auto; }
.step-0 .step-num { opacity: .3; }
.step-0 { background: #f9f8f6; }

.werkwijze-callout {
  margin-top: 2.5rem; background: rgba(232,96,78,.1);
  border: 1px solid rgba(232,96,78,.2); border-radius: 14px;
  padding: 1.4rem 1.8rem; display: flex; align-items: center; gap: 1.2rem;
}
.werkwijze-callout-icon { font-size: 1.4rem; flex-shrink: 0; }
.werkwijze-callout p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.werkwijze-callout strong { color: var(--dark); }

/* VOOR WIE */
.voor-wie-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.voor-wie-card {
  border: 1.5px solid var(--border); border-radius: 18px;
  padding: 2rem; transition: border-color .2s, transform .2s;
}
.voor-wie-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.vwc-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.2rem;
}
.voor-wie-card h4 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: .5rem; }
.voor-wie-card p { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* CONTACT */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.contact h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 1.2rem; color: var(--dark);
}
.contact h2 em { font-style: italic; color: var(--coral); }
.contact-intro { font-size: .98rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-info-row {
  display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem;
}
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px; background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0;
}
.contact-info-label { font-size: .72rem; color: var(--muted); margin-bottom: .1rem; }
.contact-info-val { font-size: .88rem; font-weight: 600; color: var(--dark); }
.contact-form {
  background: #fff; border-radius: 20px; padding: 2.2rem;
  box-shadow: 0 4px 40px rgba(26,61,82,.07);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: .78rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: .75rem 1rem; font-family: var(--font-body); font-size: .88rem; color: var(--dark);
  background: var(--white); outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--coral);
}
.form-row textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit {
  width: 100%; background: var(--coral); color: #fff; border: none;
  padding: .95rem; border-radius: 30px; font-family: var(--font-body);
  font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: #d44e3d; transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark); margin-bottom: .6rem; }
.form-success p { color: var(--muted); font-size: .9rem; }

/* FOOTER */
footer {
  background: var(--dark); padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .7rem; }
.footer-logo-mark {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark span { color: var(--coral); font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.footer-logo-text { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.3); font-family: var(--font-display); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { text-decoration: none; font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* SECTION HEADINGS */
.section-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 1.2rem;
}
.section-h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
}
.section-h2 em { font-style: normal; color: var(--coral); }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 560px; margin-bottom: 2.5rem; }

/* CASE PREVIEW STRIP */
.cases-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.case-card {
  background: var(--dark); border-radius: 18px; padding: 1.8rem;
  position: relative; overflow: hidden;
}
.case-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(232,96,78,.12);
}
.case-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.case-card h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .5rem; }
.case-card p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 1.2rem; }
.case-stats { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.case-stat-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--coral);
  line-height: 1; margin-bottom: .2rem;
}
.case-stat-label { font-size: .68rem; color: rgba(255,255,255,.35); }

/* MOOD PHOTO — brede sfeerfoto */
.mood-photo {
  width: 100%; height: 420px; overflow: hidden;
  position: relative; background: var(--dark);
}
.mood-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  filter: brightness(.85);
}
.mood-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .6rem;
  border-top: 2px dashed rgba(255,255,255,.1);
  border-bottom: 2px dashed rgba(255,255,255,.1);
}
.mood-photo--placeholder::before {
  content: '🏙️';
  font-size: 3rem; opacity: .3;
}
.mood-photo--placeholder::after {
  content: 'Voeg hier foto-sfeer.jpg toe — aanbevolen: 1600×700px';
  font-size: .78rem; color: rgba(255,255,255,.25);
}
.mood-photo--placeholder img { display: none; }

/* HERO AD PHONES */
.hero-ad-row { margin-top: 3rem; }
.hero-ad-label-row { margin-bottom: 1.2rem; }
.hero-ad-label { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .04em; }
.hero-phones { display: flex; gap: 2rem; flex-wrap: wrap; }
.h-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.h-phone-tag { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .7rem; border-radius: 20px; }
.h-phone-tag--hinder { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.h-phone-tag--gedrag { background: rgba(240,112,96,.2); color: var(--coral); }
.h-phone { width: 240px; background: #111; border-radius: 36px; padding: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06); }
.h-notch { width: 72px; height: 20px; background: #111; border-radius: 0 0 12px 12px; margin: 0 auto 5px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.h-cam { width: 7px; height: 7px; border-radius: 50%; background: #222; }
.h-speaker { width: 32px; height: 3px; border-radius: 3px; background: #222; }
.h-screen { background: #f5f3f0; border-radius: 24px; overflow: hidden; height: 480px; display: flex; flex-direction: column; }
.h-igbar { background: #fff; padding: .4rem .7rem; display: flex; align-items: center; gap: .45rem; border-bottom: 1px solid #efefef; flex-shrink: 0; }
.h-avatar { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .42rem; font-weight: 700; color: #fff; }
.h-avatar--hinder { background: linear-gradient(135deg, var(--coral), var(--dark)); }
.h-avatar--gedrag { background: linear-gradient(135deg, #74c69d, #2d6a4f); }
.h-iginfo { flex: 1; }
.h-igname { font-size: .55rem; font-weight: 700; color: #111; line-height: 1.2; }
.h-igsub { font-size: .48rem; color: #999; }
.h-dots { color: #bbb; font-size: .75rem; letter-spacing: .08em; }
.h-scroll { flex: 1; overflow-y: auto; display: flex; flex-direction: column; scrollbar-width: none; }
.h-scroll::-webkit-scrollbar { display: none; }
.h-bottom { flex-shrink: 0; }
.h-visual { height: 100px; position: relative; overflow: hidden; display: flex; align-items: flex-end; flex-shrink: 0; }
.h-visual--hinder { background: linear-gradient(150deg, #1A3D52 0%, #0c2333 100%); }
.h-visual--gedrag { background: linear-gradient(150deg, #2d6a4f 0%, #1b3a2c 100%); }
.h-vgrid { position: absolute; inset: 0; opacity: .07; background-image: repeating-linear-gradient(90deg,#fff 0,#fff 1px,transparent 1px,transparent 28px),repeating-linear-gradient(0deg,#fff 0,#fff 1px,transparent 1px,transparent 28px); }
.h-vaccent { position: absolute; right: -16px; top: -16px; width: 88px; height: 88px; border-radius: 50%; opacity: .14; }
.h-vaccent--hinder { background: var(--coral); }
.h-vaccent--gedrag { background: #74c69d; }
.h-vtext { position: relative; z-index: 2; padding: .65rem .75rem .6rem; width: 100%; }
.h-vbadge { display: inline-block; font-size: .46rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); padding: .14rem .45rem; border-radius: 20px; margin-bottom: .25rem; }
.h-vhead { font-size: .76rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: .18rem; }
.h-vsub { font-size: .52rem; color: rgba(255,255,255,.58); line-height: 1.5; }
.h-conv { padding: .65rem; display: flex; flex-direction: column; gap: .4rem; }
.h-bwrap { display: flex; flex-direction: column; }
.h-bwrap--left { align-items: flex-start; }
.h-bwrap--right { align-items: flex-end; }
.h-bubble { max-width: 86%; padding: .45rem .65rem; font-size: .56rem; line-height: 1.55; border-radius: 13px; animation: bubbleIn .3s ease forwards; opacity: 0; transform: translateY(4px); }
.h-bubble--brand { background: var(--dark); color: #fff; border-radius: 13px 13px 13px 3px; }
.h-bubble--coral { background: var(--coral); color: #fff; border-radius: 13px 13px 13px 3px; }
.h-bubble--user { background: #fff; color: var(--dark); border-radius: 13px 13px 3px 13px; border: 1px solid rgba(26,61,82,.1); }
.h-opts { display: flex; flex-direction: column; gap: .32rem; padding: 0 .65rem .65rem; }
.h-opt { background: #fff; border: 1.5px solid rgba(26,61,82,.13); border-radius: 18px; padding: .42rem .7rem; font-family: var(--font-body); font-size: .54rem; font-weight: 600; color: var(--dark); cursor: pointer; text-align: left; display: flex; align-items: center; gap: .38rem; transition: border-color .18s, background .18s, transform .12s; }
.h-opt:hover { border-color: var(--coral); background: #fff8f7; transform: translateX(2px); }
.h-opt--green:hover { border-color: #2d6a4f; background: #f0faf4; }
.h-oico { font-size: .7rem; flex-shrink: 0; }
.h-result { background: #fff; margin: 0 .65rem .65rem; border-radius: 10px; padding: .65rem; border-left: 3px solid var(--coral); display: none; }
.h-result--green { border-left-color: #2d6a4f; }
.h-result h4 { font-size: .58rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.h-result p { font-size: .53rem; color: var(--muted); line-height: 1.6; }
.h-result a { display: inline-block; margin-top: .4rem; font-size: .53rem; font-weight: 700; color: var(--coral); text-decoration: none; }
.h-result a.gl { color: #2d6a4f; }
.h-result--green { border-left-color: #2d6a4f; }
.h-chips { background: rgba(26,61,82,.04); padding: .38rem .65rem; display: flex; gap: .28rem; flex-wrap: wrap; border-top: 1px solid rgba(26,61,82,.06); }
.h-chip { font-size: .46rem; font-weight: 600; color: var(--muted); background: rgba(26,61,82,.07); border-radius: 20px; padding: .13rem .42rem; }
.h-cta { padding: .52rem .65rem; background: #fff; border-top: 1px solid rgba(26,61,82,.07); display: flex; align-items: center; justify-content: space-between; }
.h-ctabtn { font-family: var(--font-body); font-size: .55rem; font-weight: 700; border: none; border-radius: 16px; padding: .38rem .8rem; cursor: pointer; }
.h-ctabtn--dark { background: var(--dark); color: #fff; }
.h-ctabtn--coral { background: var(--coral); color: #fff; }
.h-ctalabel { font-size: .48rem; color: #bbb; }
.h-reset { background: none; border: none; font-family: var(--font-body); font-size: .58rem; color: rgba(255,255,255,.35); cursor: pointer; text-decoration: underline; }
.h-reset:hover { color: rgba(255,255,255,.7); }
@media (max-width: 768px) { .hero-phones { gap: 1rem; } .h-phone { width: 200px; } .h-screen { height: 380px; } }

/* DOELGROEP PHOTO TABLE */
.doelgroep-photo-table {
  position: relative; border-radius: 20px; overflow: hidden; margin-top: 2.5rem;
}
.doelgroep-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.7);
}
.doelgroep-overlay {
  position: absolute; inset: 0;
  background: rgba(26,61,82,.72);
}
.doelgroep-table-wrap { position: relative; z-index: 2; padding: 2rem; overflow-x: auto; filter: blur(0.8px); opacity: .65; pointer-events: none; user-select: none; }
.doelgroep-table { width: 100%; border-collapse: collapse; font-size: .85rem; min-width: 580px; }
.doelgroep-table thead tr { border-bottom: 1px solid rgba(255,255,255,.2); }
.doelgroep-table th { text-align: left; padding: .7rem 1rem; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.doelgroep-table td { padding: .85rem 1rem; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.08); font-size: .82rem; line-height: 1.5; }
.doelgroep-table tr:last-child td { border-bottom: none; }
.doelgroep-table td strong { color: #fff; font-weight: 600; }
.doelgroep-table td em { font-style: italic; color: rgba(255,255,255,.7); }
.dtag { background: rgba(240,112,96,.25); color: var(--coral); padding: .2rem .6rem; border-radius: 6px; font-size: .72rem; font-weight: 600; white-space: nowrap; }

/* AANPAK STEPS */
.aanpak-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.aanpak-step {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.aanpak-step:first-child { border-top: 1px solid var(--border); }
.aanpak-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--coral); line-height: 1; flex-shrink: 0; width: 2rem; padding-top: .1rem;
}
.aanpak-step h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.aanpak-step p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* CASES SECTION */
.cases-layout { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: center; }
.cases-stats-col { display: flex; flex-direction: column; gap: 1.5rem; }
.cases-campaign-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--coral); padding: .35rem 1.1rem; border-radius: 20px; align-self: flex-start; }
.cases-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cases-stat-block { background: rgba(255,255,255,.07); border-radius: 12px; padding: 1.2rem 1.4rem; }
.cases-stat-label { font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: .4rem; }
.cases-stat-val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: .3rem; }
.cases-stat-sub { font-size: .68rem; color: rgba(255,255,255,.35); line-height: 1.5; }
.cases-nav { display: flex; align-items: center; gap: 1rem; margin-top: .5rem; }
.cases-nav-btn { background: rgba(255,255,255,.1); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.cases-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,.2); }
.cases-nav-btn:disabled { opacity: .3; cursor: default; }
.cases-nav-count { font-size: .78rem; color: rgba(255,255,255,.4); }
.cases-phone-col { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.cases-phone { position: relative; width: 200px; background: #1A3D52; border-radius: 36px; padding: 10px; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.cases-notch { width: 70px; height: 18px; background: #0d2535; border-radius: 0 0 10px 10px; margin: 0 auto 5px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cases-cam { width: 7px; height: 7px; border-radius: 50%; background: #1a3d52; }
.cases-speaker { width: 28px; height: 3px; border-radius: 3px; background: #1a3d52; }
.cases-screen { width: 100%; aspect-ratio: 356/536; background: #000; border-radius: 24px; overflow: hidden; }
.cases-dots { display: flex; gap: .4rem; }
.cases-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); transition: background .3s; }
.cases-dot--active { background: var(--coral); }
@media (max-width: 768px) { .cases-layout { grid-template-columns: 1fr; } .cases-phone-col { margin-top: 2rem; } }

/* CASES SHOWCASE */
.cases-showcase { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: center; margin-top: 3rem; }
.cases-left { display: flex; flex-direction: column; gap: 1.5rem; }
.cases-camp-label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--coral); padding: 5px 16px; border-radius: 20px; align-self: flex-start; }
.cases-stats { display: flex; gap: 1rem; }
.cases-stat { flex: 1; background: rgba(26,61,82,.07); border-radius: 10px; padding: 1rem 1.1rem; }
.cases-stat-label { font-size: .75rem; color: var(--muted); margin-bottom: .3rem; }
.cases-stat-val { font-size: 1.8rem; font-weight: 600; color: var(--dark); line-height: 1; margin-bottom: .25rem; }
.cases-stat-sub { font-size: .68rem; color: var(--muted); line-height: 1.4; }
.cases-camp-nav { display: flex; align-items: center; gap: .8rem; }
.cases-nav-btn { background: none; border: 2px solid rgba(26,61,82,.2); color: var(--dark); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: border-color .2s; }
.cases-nav-btn:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); }
.cases-nav-btn:disabled { opacity: .35; cursor: default; }
.cases-camp-counter { font-size: .8rem; color: var(--muted); font-weight: 600; }
.cases-right { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cases-phone { position: relative; width: 220px; background: #1A3D52; border-radius: 40px; padding: 12px 10px; box-shadow: 0 24px 60px rgba(26,61,82,.35); }
.cases-dots { display: flex; gap: 6px; align-items: center; }
.cases-dot { height: 6px; border-radius: 3px; width: 6px; background: rgba(26,61,82,.2); transition: all .3s; }
.cases-dot--active { width: 20px; background: var(--coral); }
.cases-slide-nav { display: flex; gap: .6rem; }
@media (max-width: 768px) { .cases-showcase { grid-template-columns: 1fr; } .cases-right { margin-top: 2rem; } }

/* TEAM CARDS */
.team-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.team-card { display: flex; gap: 1.4rem; align-items: flex-start; background: var(--light); border-radius: 18px; padding: 1.6rem; }
.team-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-name { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.team-bio { font-size: .78rem; color: var(--muted); line-height: 1.7; margin-bottom: .6rem; }
.team-linkedin { font-size: .72rem; font-weight: 700; color: var(--coral); text-decoration: none; }
.team-linkedin:hover { text-decoration: underline; }
@media (max-width: 768px) { .team-row { grid-template-columns: 1fr; } }

/* SPLIT LAYOUT */
.split-layout { display: grid; grid-template-columns: 1fr 320px; gap: 5rem; align-items: start; }
.split-text { }
.split-tabs { display: flex; gap: .6rem; margin-top: 2rem; flex-wrap: wrap; }
.split-tab {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  border: 1.5px solid var(--border); border-radius: 22px;
  padding: .5rem 1.1rem; background: #fff; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.split-tab:hover { border-color: var(--coral); color: var(--dark); }
.split-tab--active { background: var(--dark); color: #fff; border-color: var(--dark); }
.split-hint { font-size: .75rem; color: var(--muted); margin-top: .9rem; font-style: italic; }
.split-phone-col { position: relative; display: flex; justify-content: center; }
.split-phone-slot { display: flex; flex-direction: column; align-items: center; gap: .6rem; transition: opacity .3s, transform .3s; }
.split-phone-slot--hidden { display: none; }
@media (max-width: 900px) { .split-layout { grid-template-columns: 1fr; } .split-phone-col { justify-content: flex-start; } }

.h-phone-tag--light-hinder { background: rgba(26,61,82,.08); color: var(--dark); }
.h-phone-tag--light-gedrag { background: rgba(240,112,96,.1); color: var(--coral); }
.h-reset--light { color: var(--muted); }
.h-reset--light:hover { color: var(--dark); }
.ad-phones-row { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { background: var(--white); border-radius: 18px; padding: 2rem; border: 1.5px solid var(--border); transition: border-color .2s, transform .2s; }
.blog-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.blog-card-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); margin-bottom: .8rem; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: .5rem; }
.blog-card-sub { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.blog-card-meta { font-size: .72rem; color: var(--muted); }

.blog-article-container { max-width: 680px; margin: 0 auto; }
.blog-back { display: inline-block; font-size: .82rem; font-weight: 600; color: var(--muted); text-decoration: none; margin-bottom: 2.5rem; transition: color .2s; }
.blog-back:hover { color: var(--coral); }
.blog-article-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.blog-article-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: .6rem; }
.blog-article-sub { font-size: 1.05rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.blog-article-meta { font-size: .75rem; color: var(--muted); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.blog-article-body p { font-size: 1rem; color: var(--dark); line-height: 1.85; margin-bottom: 1.4rem; }
.blog-article-body h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin: 2.5rem 0 1rem; }
.blog-article-cta { margin-top: 4rem; padding: 2.5rem; background: var(--light); border-radius: 18px; text-align: center; }
.blog-article-cta h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.2rem; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* HERO STATS (keep for reference but hidden) */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr !important; }
  .three-pillars, .voor-wie-grid, .cases-strip { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-stats { gap: 2rem; }
  .about-visual { display: none; }
  /* Bereikbaarheidscommunicatie afbreken op mobiel */
  .hero-title-word {
    hyphens: manual;
    -webkit-hyphens: manual;
    overflow-wrap: break-word;
  }
  /* Mockup vult volledige breedte op mobiel */
  .split-layout { grid-template-columns: 1fr; }
  .split-phone-col { justify-content: flex-start; width: 100%; }
  .split-phone-col .h-phone-wrap { width: 100%; }
  .split-phone-col .h-phone,
  .split-phone-col .h-phone { width: 100% !important; max-width: 100%; border-radius: 20px; }
  /* Minder witruimte na mobiliteitsadviseur-blok voor aan de slag */
  .voor-wie-section + section,
  section.voor-wie-cta-spacer { padding-top: 2rem !important; }
  /* Footer: alle links op 1 rij, tagline weg */
  footer {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }
  .footer-tagline { display: none; }
  .footer-links {
    flex-wrap: nowrap;
    justify-content: center;
    gap: .9rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .footer-links a { font-size: .72rem; }
}

/* ACTIEVE PAGINA IN NAV */
.nav-links a[aria-current="page"] { color: var(--dark); font-weight: 600; }
