/* IT Marketeer theme */

:root {
  --green: #32D394;
  --green-dark: #28A87A;
  --green-light: #E8FAF3;
  --orange: #FF761C;
  --orange-light: #FFF0E8;
  --navy: #0F1E38;
  --navy-mid: #1A3055;
  --text: #1A2332;
  --text-mid: #1a1a1a;
  --text-light: #8896A8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-off: #F8FAFC;
  --radius: 12px;
  --radius-sm: 8px;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

/*
 * Reset binnen de homepage-content. Bewust via :where() zodat de
 * specificiteit nul blijft en de componentregels hieronder altijd winnen.
 */
.itm-front :where(p, h1, h2, h3, h4, ul, ol, figure, blockquote, details, .wp-block-group) {
  margin: 0;
  padding: 0;
}
/* Lange woorden (bijv. "marketingpartner") netjes laten breken op smalle schermen */
.itm-front :where(h1, h2, h3, h4, p) { overflow-wrap: break-word; }

/* Core-blokstijlen (wp-block-library) geven figures een eigen marge; expliciet overschrijven */
.itm-front figure.wp-block-image { margin: 0; }

/*
 * Vangnet: blokken die los op paginaniveau worden toegevoegd (dus niet
 * binnen een sectie/container) krijgen toch de containerbreedte en
 * leesbare marges, zodat ze netjes uitlijnen met de rest.
 */
.itm-front > :where(p, h1, h2, h3, h4, ul, ol, figure, blockquote, details, .wp-block-image, .wp-block-quote) {
  max-width: 1120px;
  margin: 24px auto;
  padding: 0 40px;
}
.itm-front > :where(ul, ol) { padding-left: 60px; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 18px; font-weight: 700; color: white;
  text-decoration: none; letter-spacing: -0.3px;
}
.nav-logo span { color: white; }
ul.nav-links {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.8); text-decoration: none;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: white; }

/* Dropdown (submenu) in het hoofdmenu */
ul.nav-links li { position: relative; }
.nav-links .menu-item-has-children > a::after {
  content: '\25BE';
  font-size: 9px;
  margin-left: 6px;
  opacity: 0.6;
}
.nav-links .sub-menu {
  display: none;
  position: absolute; top: 100%; left: -12px;
  list-style: none; margin: 0; padding: 8px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  min-width: 190px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
  z-index: 150;
}
.nav-links .sub-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
@media (min-width: 921px) {
  ul.nav-links > li { display: flex; align-items: center; height: 64px; }
  .nav-links li:hover > .sub-menu,
  .nav-links li:focus-within > .sub-menu { display: block; }
}
a.nav-cta {
  background: var(--orange); color: white;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
a.nav-cta:hover { background: #e5650f; }

/* Hamburger (alleen zichtbaar op mobiel) */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff; border-radius: 1px;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* CONTAINER */
.container { max-width: 1120px; margin-left: auto; margin-right: auto; padding: 0 40px; }

/* SECTION BASE */
section.itm-section { padding: 88px 40px; }
.section-label {
  font-size: 12px; font-weight: 700; color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.itm-front h2 {
  font-size: 36px; font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.65; max-width: 560px;
  margin-bottom: 48px;
}

/* HERO */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.hero-label {
  width: fit-content;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}
.itm-front h1, .hero h1 {
  font-size: 48px; font-weight: 800;
  color: var(--navy); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 em, .hero h1 span { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary a {
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary a:hover { background: #e5650f; transform: translateY(-1px); }
.btn-ghost a {
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 2px solid var(--navy);
  transition: background .2s, color .2s;
  display: inline-block;
}
.btn-ghost a:hover { background: var(--navy); color: white; }
.hero-stats {
  display: flex; align-items: stretch; gap: 24px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); padding-left: 24px; }
.hero-stat .hs-title { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.hero-stat .hs-sub { font-size: 12px; color: var(--text-light); font-weight: 500; }

.hero-photo {
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-photo figure, .hero-photo img {
  width: 100%; height: 100%;
}
.hero-photo img {
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.25);
  border-radius: 16px;
}

/* LOGOS (auto-slider) */
.logos {
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.logos-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.logos-label {
  font-size: 11px; color: var(--text-light);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding-right: 16px; border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.logos-marquee {
  flex: 1; min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
}
/* Animatie start pas zodra het script de logo's heeft gedupliceerd (.is-cloned) */
.logos-track.is-cloned {
  animation: itm-marquee linear infinite;
}
@keyframes itm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .logos-track.is-cloned { animation: none; }
}
.logo-item {
  font-size: 13px; font-weight: 700; color: #B0BEC5;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
}
.logo-item:hover { color: var(--navy); }

/* Logo-afbeeldingen in de slider */
figure.logo-item { margin: 0; flex-shrink: 0; }
.logos-track figure.logo-item img {
  height: 56px; width: auto; display: block;
  filter: grayscale(1) opacity(0.55);
  transition: filter .2s;
}
.logos-track figure.logo-item:hover img { filter: grayscale(0) opacity(1); }

/* HERKENNING */
.herkenning { background: var(--bg); }
.herkenning-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.herkenning-intro { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; }
.pain-list { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--bg-off);
  border-radius: var(--radius); border-left: 3px solid var(--orange);
}
.pain-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pain-text { display: flex; flex-direction: column; gap: 2px; }
.pain-text .pain-title { font-size: 15px; color: var(--text); font-weight: 500; line-height: 1.5; }
.pain-text .pain-sub { color: var(--text-mid); font-weight: 400; font-size: 13px; }
.solution-box {
  background: var(--navy); border-radius: var(--radius);
  padding: 40px; color: white;
}
.solution-box h3 {
  font-size: 22px; font-weight: 700; margin-bottom: 14px; color: white;
}
.solution-box p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.solution-box p.solution-tag { margin-bottom: 0; }
.solution-tag a {
  display: inline-block;
  background: rgba(50,211,148,0.15); color: var(--green);
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 20px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.solution-tag a:hover {
  background: var(--green); color: var(--navy);
}

/* VALUE LADDER */
.ladder { background: var(--bg-off); }
.ladder-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.ladder-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow .2s, transform .2s;
}
.ladder-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ladder-card.featured {
  border: 2px solid var(--green);
  background: white;
}
.step-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.featured-badge {
  width: fit-content;
  font-size: 11px; font-weight: 700;
  background: var(--green-light); color: var(--green-dark);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 4px;
}
.itm-front h3.card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0; }
.card-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; flex: 1; }
.card-price { font-size: 20px; font-weight: 800; color: var(--navy); margin-top: 4px; }
.card-price span { font-size: 13px; font-weight: 400; color: var(--text-light); }
p.card-cta { margin-top: 8px; }
.card-cta a {
  display: block; text-align: center;
  padding: 10px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: .2s;
  border: 1px solid var(--border); color: var(--text-mid);
}
.card-cta a:hover { border-color: var(--navy); color: var(--navy); }
.ladder-card.featured .card-cta a {
  background: var(--orange); color: white; border-color: var(--orange);
}
.ladder-card.featured .card-cta a:hover { background: #e5650f; border-color: #e5650f; }

/* OVER IT MARKETEER */
.over { background: white; }
.over-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start;
}
.over-p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.over blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  background: var(--bg-off);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 12px 0 0;
}
.over blockquote p {
  font-size: 15px; color: var(--navy); font-style: italic;
  line-height: 1.6; margin: 0 0 8px;
}
.over blockquote cite {
  font-size: 13px; font-weight: 700; color: var(--text-mid); font-style: normal;
}
.stats-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 16px;
  margin-top: 32px;
}
.stat-card {
  background: var(--bg-off); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.stat-number { font-size: 32px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--text-mid); margin-top: 4px; }
.over-photo img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 9/16; object-fit: cover; object-position: 70% top;
}

/* TESTIMONIALS */
.testimonials { background: var(--navy); }
.itm-front .testimonials h2 { color: white; margin-bottom: 48px; }
.testimonials .section-label { color: var(--green); }
.testi-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px;
}
.testi-quote { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-author { font-size: 13px; font-weight: 600; color: white; }
.testi-company { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.testi-stars { color: var(--green); font-size: 14px; margin-bottom: 14px; }

/* LOSSE TESTIMONIAL — lichte variant voor op witte achtergronden (bv. klantcases) */
.testimonial-block {
  max-width: 720px; margin: 32px 0;
  background: var(--bg-off); border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius); padding: 28px 32px;
}
.testimonial-block .tb-stars { color: var(--green); font-size: 14px; letter-spacing: 2px; margin: 0 0 14px; }
.testimonial-block .tb-quote { font-size: 17px; color: var(--navy); line-height: 1.6; font-style: italic; margin: 0 0 16px; }
.testimonial-block .tb-author { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0; }
.testimonial-block .tb-company { font-size: 13px; color: var(--text-mid); margin: 2px 0 0; }

/* DRIE AFBEELDINGEN NAAST ELKAAR — gelijk uitgelijnd, ongeacht bronformaat */
.image-row {
  max-width: 1120px; margin: 32px 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.image-row .wp-block-image { margin: 0; }
.image-row .wp-block-image img {
  width: 100%; aspect-ratio: 4 / 3; height: auto;
  object-fit: cover; border-radius: var(--radius); display: block;
}
@media (max-width: 600px) { .image-row { grid-template-columns: 1fr; } }

/* CTA */
.cta-section { background: var(--bg); }
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.cta-section .itm-front h2, .itm-front .cta-section h2 { margin-bottom: 14px; }
.cta-section .cta-text { font-size: 17px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-dark a {
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-block; transition: .2s;
}
.btn-dark a:hover { background: #e5650f; }
.btn-outline a {
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 2px solid var(--navy);
  display: inline-block; transition: .2s;
}
.btn-outline a:hover { background: var(--navy); color: white; }

/* CASES */
.cases { background: var(--bg-off); }
.dark-section { background: var(--navy) !important; }
.dark-section p { color: rgba(255,255,255,0.75); }
.itm-front .dark-section h2 { color: white; }
.dark-section .section-label { color: var(--green); }
.dark-section .section-sub { color: rgba(255,255,255,0.6); }
.dark-section .case-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.dark-section .case-img { background: rgba(255,255,255,0.05); }
.dark-section .case-type { color: var(--green); }
.itm-front .dark-section .case-title { color: white; }
.dark-section .case-desc { color: rgba(255,255,255,0.6); }
.dark-section .case-link a { color: var(--orange); }
.dark-section .btn-outline a { border-color: rgba(255,255,255,0.3); color: white; }
.dark-section .btn-outline a:hover { background: white; color: var(--navy); border-color: white; }
.cases-grid {
  max-width: 1120px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.cases-grid .case-card {
  flex: 1 1 320px; max-width: 360px;
  display: flex; flex-direction: column;
}
.cases-grid .case-body { display: flex; flex-direction: column; flex: 1; }
.cases-grid .case-desc { flex: 1; }
.cases-grid .cases-empty { flex: 1 1 100%; text-align: center; }
.case-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s;
}
.case-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.case-img { height: 160px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
/* Playbook-cover als staande rapport-thumbnail op de overzichtskaarten */
.case-img.pb-cover { height: 248px; background: var(--bg-off); padding: 22px; }
.case-img.pb-cover img {
  width: auto; height: 100%; max-width: 100%; object-fit: contain;
  border-radius: 2px 6px 6px 2px;
  box-shadow: 3px 0 0 #e7ecf3, 6px 1px 0 #d8e0ea, 10px 16px 26px rgba(15,30,56,0.20);
}
.case-img-label { color: rgba(255,255,255,0.3); font-size: 13px; }
.case-img img { width: 100%; height: 160px; object-fit: cover; }
.case-body { padding: 24px; }
.case-type { font-size: 11px; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.itm-front h3.case-title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 10px; line-height: 1.3; }
.case-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.case-link a { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
.case-link a:hover { text-decoration: underline; }
.section-more { text-align: center; margin-top: 40px; }

/* PLAYBOOKS */
.playbooks { background: white; }
.playbooks-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.playbooks-grid .case-card { display: flex; flex-direction: column; }
.playbooks-grid .case-body { display: flex; flex-direction: column; flex: 1; }
.playbooks-grid .case-desc { flex: 1; }
.pb-card {
  background: var(--bg-off); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: .2s;
}
.pb-card:hover { background: var(--green-light); }
.pb-icon { font-size: 28px; margin-bottom: 4px; }
.itm-front h3.pb-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.pb-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; flex: 1; }
p.pb-link { margin-top: 8px; }
.pb-link a {
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-decoration: none;
}
.pb-link a:hover { color: var(--green-dark); }

/* FAQ */
.faq { background: var(--bg-off); }
.faq-inner { max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer;
  list-style: none; gap: 16px;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; font-weight: 400; color: var(--text-mid);
  transition: background .2s, transform .3s;
}
.faq-item[open] summary::after {
  background: var(--green); border-color: var(--green);
  color: var(--navy); transform: rotate(45deg);
}
.faq-a {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  padding-bottom: 24px; padding-right: 44px;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: 64px 40px 32px;
}
.footer-newsletter {
  max-width: 1120px; margin: 0 auto 48px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,560px); gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* In de footer ligt het formulier horizontaal: velden + knop op één rij,
   privacytekst eronder. (Onder blogartikelen blijft het gestapeld.)
   Extra .newsletter-form in de selector zodat deze regels winnen van de
   algemene nieuwsbriefregels verderop. */
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._form-content:not(#_) {
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 10px !important;
  align-items: center !important;
}
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._form_element:not(#_) { margin: 0 !important; }
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._form_element._clear:not(#_) { grid-column: 1 / -1 !important; order: 4 !important; }
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._button-wrapper:not(#_) { margin: 0 !important; width: auto !important; order: 3 !important; }
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._submit:not(#_) { width: auto !important; padding: 12px 28px !important; }
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._clear-element:not(#_) { display: none !important; }
.footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._html-code p:not(#_) { margin: 0 !important; }
.footer-nl-title { font-size: 19px; font-weight: 700; color: white; margin-bottom: 6px; }
.footer-nl-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-nl-form .newsletter-fallback { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.footer-nl-form .newsletter-fallback a { color: var(--green); }

/* Nieuwsbriefblok onder blogartikelen ([itm_nieuwsbrief]) */
.newsletter-box {
  background: var(--navy); border-radius: var(--radius);
  padding: 32px; margin: 48px auto; color: white;
  max-width: 760px; scroll-margin-top: 88px;
}
.newsletter-box .blog-cta-label { color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.itm-front h3.newsletter-box-title, .newsletter-box .newsletter-box-title { font-size: 20px; font-weight: 700; color: white; margin: 0 0 10px; }
.newsletter-box .newsletter-box-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 0 16px; }
.newsletter-box .newsletter-fallback { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.newsletter-box .newsletter-fallback a { color: var(--green); }

/* ActiveCampaign-formulier in huisstijl (footer en nieuwsbriefblok).
   AC injecteert eigen styles na de onze; daarom hogere specificiteit + !important. */
:is(.newsletter-form,.newsletter-box) form._form:not(#_) {
  background: transparent !important; background-color: transparent !important;
  padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: none !important;
  border: none !important; border-radius: 0 !important; box-shadow: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important; text-align: left !important;
  color: rgba(255,255,255,0.7) !important;
}
:is(.newsletter-form,.newsletter-box) form._form ._form-title:not(#_) { display: none !important; }
:is(.newsletter-form,.newsletter-box) form._form ._form-label:not(#_) { display: none !important; }
:is(.newsletter-form,.newsletter-box) form._form ._form_element:not(#_) { margin: 0 0 10px !important; width: 100% !important; background: transparent !important; }
/* :not(#_) verhoogt de specificiteit tot ID-niveau, boven de
   per-request gegenereerde #_form_..._ regels van ActiveCampaign. */
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper input:not(#_),
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper textarea:not(#_) {
  width: 100% !important; box-sizing: border-box !important;
  padding: 12px 14px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm) !important;
  color: white !important;
  font-family: 'Poppins', sans-serif !important; font-size: 14px !important;
}
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper input:not(#_)::placeholder,
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper textarea:not(#_)::placeholder { color: rgba(255,255,255,0.45) !important; }
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper input:not(#_):focus,
:is(.newsletter-form,.newsletter-box) form._form ._field-wrapper textarea:not(#_):focus { outline: none !important; border-color: var(--green) !important; }
:is(.newsletter-form,.newsletter-box) form._form ._html-code p:not(#_),
:is(.newsletter-form,.newsletter-box) form._form ._html-code a:not(#_) { color: rgba(255,255,255,0.45) !important; line-height: 1.6 !important; margin: 4px 0 0 !important; }
:is(.newsletter-form,.newsletter-box) form._form ._button-wrapper:not(#_) { margin-top: 14px !important; width: 100% !important; }
:is(.newsletter-form,.newsletter-box) form._form ._submit:not(#_) {
  width: 100% !important;
  background: var(--green) !important; color: var(--navy) !important;
  border: none !important; border-radius: var(--radius-sm) !important;
  padding: 13px 22px !important;
  font-family: 'Poppins', sans-serif !important; font-size: 14px !important; font-weight: 700 !important;
  cursor: pointer !important; transition: background .2s !important;
}
:is(.newsletter-form,.newsletter-box) form._form ._submit:not(#_):hover { background: var(--green-dark) !important; }
:is(.newsletter-form,.newsletter-box) form._form ._form-thank-you:not(#_) {
  color: white !important; font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important; font-weight: 600 !important; text-align: left !important;
}
:is(.newsletter-form,.newsletter-box) ._form-branding:not(#_) { display: none !important; }
:is(.newsletter-form,.newsletter-box) form._form ._form-content:not(#_) { background: transparent !important; }

/* ActiveCampaign-formulier in de (navy) downloadkaart van playbooks en events.
   Zelfde donkere stijl als de nieuwsbrief. */
.download-card form._form:not(#_) {
  background: transparent !important; background-color: transparent !important;
  padding: 0 !important; margin: 0 !important;
  width: 100% !important; max-width: none !important;
  border: none !important; border-radius: 0 !important; box-shadow: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important; text-align: left !important;
  color: rgba(255,255,255,0.7) !important;
}
.download-card form._form ._form-content:not(#_) { background: transparent !important; }
.download-card form._form ._form-title:not(#_) { display: none !important; }
.download-card form._form ._form-label:not(#_) { display: none !important; }
.download-card form._form ._form_element:not(#_) { margin: 0 0 10px !important; width: 100% !important; background: transparent !important; }
.download-card form._form ._field-wrapper input:not(#_),
.download-card form._form ._field-wrapper textarea:not(#_) {
  width: 100% !important; box-sizing: border-box !important;
  padding: 11px 14px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--radius-sm) !important;
  color: white !important;
  font-family: 'Poppins', sans-serif !important; font-size: 14px !important;
}
.download-card form._form ._field-wrapper input:not(#_)::placeholder,
.download-card form._form ._field-wrapper textarea:not(#_)::placeholder { color: rgba(255,255,255,0.45) !important; }
.download-card form._form ._field-wrapper input:not(#_):focus,
.download-card form._form ._field-wrapper textarea:not(#_):focus { outline: none !important; border-color: var(--green) !important; }
.download-card form._form ._html-code p:not(#_),
.download-card form._form ._html-code a:not(#_) { color: rgba(255,255,255,0.45) !important; line-height: 1.6 !important; margin: 4px 0 0 !important; }
.download-card form._form ._button-wrapper:not(#_) { margin-top: 12px !important; width: 100% !important; }
.download-card form._form ._submit:not(#_) {
  width: 100% !important;
  background: var(--green) !important; color: var(--navy) !important;
  border: none !important; border-radius: var(--radius-sm) !important;
  padding: 13px 22px !important;
  font-family: 'Poppins', sans-serif !important; font-size: 14px !important; font-weight: 700 !important;
  cursor: pointer !important; transition: background .2s !important;
}
.download-card form._form ._submit:not(#_):hover { background: var(--green-dark) !important; }
.download-card form._form ._form-thank-you:not(#_) {
  color: white !important; font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important; font-weight: 600 !important; text-align: left !important;
}
.download-card ._form-branding:not(#_) { display: none !important; }
.footer-top {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-size: 18px; font-weight: 800; color: white; margin-bottom: 14px; }
.footer-brand span { color: var(--green); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 16px; text-decoration: none;
  transition: .2s;
}
.footer-social a:hover { background: var(--green); color: var(--navy); }
.footer-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
ul.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
ul.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: .2s; }
ul.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1120px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: .2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* BREADCRUMB + GECENTREERDE HERO */
.breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.hero-single { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-single .hero-actions { justify-content: center; }
.hero-single .hero-stats { justify-content: center; }
.hero-single .hero-sub { margin-left: auto; margin-right: auto; }

/* SCOPE (sessie-kaarten) */
.scope-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.scope-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.scope-num { font-size: 13px; font-weight: 800; color: var(--green-dark); letter-spacing: 0.08em; margin-bottom: 12px; }
.itm-front h3.scope-title { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.scope-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* CHECKLIST (extra's / implementatie-bewijs) */
.itm-front h3.extra-title {
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin: 56px auto 6px; max-width: 1120px;
}
.extra-sub {
  font-size: 15px; color: var(--text-mid);
  margin: 0 auto 20px; max-width: 1120px;
}
.extra-list {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.extra-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--navy); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: 14px;
  color: rgba(255,255,255,0.88); line-height: 1.55;
}
.extra-item::before {
  content: '\2713';
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; margin-top: 1px;
}
/* Losse checklist-items buiten een grid (zoals op /plan-een-gesprek/)
   krijgen onderlinge ruimte; in .extra-list/.deliverables regelt de grid-gap dat al. */
.over-inner .extra-item + .extra-item { margin-top: 12px; }

/* PROCES (stappenplan) */
.process-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.process-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; flex-shrink: 0;
}
.process-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ENGINE (twee pijlers) */
.engine-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.engine-block {
  border-radius: var(--radius); padding: 36px;
  background: white; border: 1px solid var(--border);
}
.engine-block.primary { background: var(--navy); border-color: var(--navy); }
.engine-block-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
  color: var(--green-dark);
}
.engine-block.primary .engine-block-label { color: var(--green); }
.itm-front h3.engine-block-title { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: var(--navy); }
.itm-front .engine-block.primary h3.engine-block-title { color: white; }
.engine-block-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: var(--text-mid); }
.engine-block.primary .engine-block-desc { color: rgba(255,255,255,0.75); }
ul.engine-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.engine-items li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.engine-block.primary .engine-items li { color: rgba(255,255,255,0.85); }
.engine-items li::before { content: '\2192'; font-weight: 700; flex-shrink: 0; margin-top: 1px; color: var(--green-dark); }
.engine-block.primary .engine-items li::before { color: var(--green); }

/* RITME */
.rhythm-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.rhythm-card {
  background: var(--bg-off); border-radius: var(--radius);
  padding: 24px 20px;
}
.rhythm-period { font-size: 12px; font-weight: 800; color: var(--green-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.itm-front h3.rhythm-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.rhythm-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* SCAN-KAARTEN (2 kolommen, donkerblauwe variant van .scope-card) */
.scan-grid-2col {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.scan-grid-2col .scope-card {
  background: var(--navy);
  border-color: var(--navy);
}
.scan-grid-2col .scope-num { color: var(--green); }
.itm-front .scan-grid-2col h3.scope-title { color: white; }
.scan-grid-2col .scope-desc { color: rgba(255,255,255,0.75); }

/* RAPPORT-TEASER (afgeschermde voorbeeldweergave van de scorekaart) */
.gs-teaser {
  position: relative; max-width: 560px; margin: 0 auto;
  background: var(--navy); border-radius: 16px;
  padding: 28px 32px 26px; overflow: hidden;
}
.gs-teaser-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.gs-teaser-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.gs-teaser-badge { font-size: 11px; font-weight: 700; color: var(--green-dark); background: var(--green-light); padding: 4px 10px; border-radius: 999px; }
.gs-teaser-company { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.gs-teaser-company .name { font-size: 18px; font-weight: 700; color: #fff; }
.gs-teaser-redact { height: 14px; width: 120px; border-radius: 4px; background: rgba(255,255,255,0.18); filter: blur(3px); }
.gs-teaser-caption { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.gs-teaser-rows { display: flex; flex-direction: column; gap: 13px; }
.gs-teaser-row { display: flex; align-items: center; justify-content: space-between; }
.gs-teaser-row .label { font-size: 14px; color: rgba(255,255,255,0.92); }
.gs-teaser-row.is-blur { filter: blur(4px); }
.gs-teaser-row.is-blur-2 { filter: blur(5px); }
.gs-teaser-row.is-blur .label, .gs-teaser-row.is-blur-2 .label { color: rgba(255,255,255,0.6); }
.gs-teaser-dots { display: flex; gap: 5px; }
.gs-teaser-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.gs-teaser-dots i.on { background: var(--green); }
.gs-teaser-lock {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 26px;
  background: rgba(50,211,148,0.12); border: 1px solid rgba(50,211,148,0.4);
  color: var(--green); font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: 999px;
}
.gs-teaser-lock svg { width: 15px; height: 15px; flex: 0 0 auto; }
@media (max-width: 600px) {
  .gs-teaser { padding: 22px 20px; }
  .gs-teaser-redact { width: 80px; }
}

/* TRAJECT 2-KOLOMS: stappen links, rapport-teaser rechts */
.traject-2col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: 48px; align-items: start; }
.traject-main { min-width: 0; }
.traject-2col .process-list { max-width: none; margin: 28px 0 0; }
.traject-aside { position: sticky; top: 100px; }
.traject-aside .section-label { margin-bottom: 14px; }
.traject-aside .gs-teaser { max-width: none; margin: 0; }
@media (max-width: 920px) {
  .traject-2col { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .traject-aside { position: static; }
  .traject-aside .gs-teaser { max-width: 560px; margin: 0; }
}

/* DELIVERABLES (3 kolommen, gebruikt .extra-item voor de blokjes) */
.deliverables {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

/* VERGELIJKINGSTABEL */
.compare-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: white;
}
.compare-grid p { margin: 0; }
.compare-header {
  padding: 16px 20px; font-size: 13px; font-weight: 700;
  background: var(--navy); color: white; text-align: center;
}
.compare-header.empty { background: var(--bg-off); color: var(--text-mid); }
.compare-cell {
  padding: 14px 20px; font-size: 14px; color: var(--text-mid);
  border-top: 1px solid var(--border); text-align: center;
  background: white;
}
.compare-cell.label {
  text-align: left; font-weight: 600; color: var(--navy);
  background: var(--bg-off);
}
.compare-cell.yes { color: var(--green-dark); font-weight: 600; }
.compare-cell.no { color: var(--text-light); }

/* INVESTERINGSKAART */
.invest-card {
  max-width: 560px; margin: 32px auto 0; text-align: center;
  background: var(--bg-off); border-radius: var(--radius);
  padding: 48px 40px;
}
.invest-price { font-size: 44px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.invest-price span { font-size: 16px; font-weight: 500; color: var(--text-light); }
.invest-note { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.6; }

/* BLOG */
.blog-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}
.blog-header-inner { max-width: 1120px; margin: 0 auto; }
.blog-header h1 {
  font-size: 40px; font-weight: 800; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 12px;
}
.blog-header .section-sub { margin-bottom: 0; }
.kennis-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.kennis-tab {
  padding: 8px 18px;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 13px; font-weight: 600;
  color: var(--text-mid); text-decoration: none;
  background: white;
  transition: .2s;
}
.kennis-tab:hover { border-color: var(--navy); color: var(--navy); }
.kennis-tab.is-active { background: var(--navy); border-color: var(--navy); color: white; }
.blog-section { background: var(--bg-off); padding: 64px 40px 88px; }
.blog-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.blog-grid .case-card { display: flex; flex-direction: column; }
.blog-grid .case-body { display: flex; flex-direction: column; flex: 1; }
.blog-grid .case-desc { flex: 1; }
.blog-pagination {
  max-width: 1120px; margin: 40px auto 0;
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-mid); text-decoration: none; background: white;
}
.blog-pagination .page-numbers.current { background: var(--navy); color: white; border-color: var(--navy); }
.blog-pagination a.page-numbers:hover { border-color: var(--navy); color: var(--navy); }

/* LOSSE BLOGPOST */
.post-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.post-wrap .breadcrumb { margin-bottom: 16px; }
.post-title {
  font-size: 38px; font-weight: 800; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 14px;
}
.post-meta { font-size: 13px; color: var(--text-light); margin-bottom: 32px; }
.post-thumb img { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.post-content { font-size: 16px; color: var(--text-mid); line-height: 1.75; }
.post-content p { margin: 0 0 1.25em; }
.post-content h2 {
  font-size: 26px; font-weight: 700; color: var(--navy);
  line-height: 1.3; letter-spacing: -0.3px; margin: 1.6em 0 0.6em;
}
.post-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 1.4em 0 0.5em; }
.post-content ul, .post-content ol { margin: 0 0 1.25em; padding-left: 2.2em; }
.post-content li { margin-bottom: 0.4em; }
.post-content a { color: var(--green-dark); }
.post-content img { max-width: 100%; border-radius: var(--radius); }

/* IMPRESSIE-STROOK (opnames op locatie) */
.impressie-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 20px; margin-top: 8px; }
.impressie-grid figure { margin: 0; }
.impressie-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: 14px; display: block; }
@media (max-width: 720px) {
  .impressie-grid { grid-template-columns: minmax(0,1fr); }
  .impressie-grid img { height: 240px; }
}

/* SPREKERS (event-detail blokpatroon: foto links, tekst rechts) */
.event-speakers { margin: 2.4em 0; display: flex; flex-direction: column; gap: 20px; }
.post-content .event-speakers > h2 { margin: 0 0 4px; }
.speaker-card { display: flex; gap: 20px; align-items: flex-start; padding: 22px 24px; background: var(--bg-off); border: 1px solid var(--border); border-radius: 14px; }
.speaker-card .speaker-photo { flex: 0 0 auto; margin: 0; }
.speaker-card .speaker-photo img { width: 120px; height: 150px; border-radius: 12px; object-fit: cover; display: block; }
.speaker-card .speaker-body { min-width: 0; }
.speaker-card .speaker-name { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
.speaker-card .speaker-role { font-size: 13px; font-weight: 600; color: var(--green-dark); margin: 0 0 10px; }
.speaker-card .speaker-bio { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0; }
@media (max-width: 600px) {
  .speaker-card { flex-direction: column; gap: 14px; padding: 20px; }
}
.post-content .wp-block-embed { margin: 0 0 1.25em; }
.post-content .wp-block-embed__wrapper iframe {
  width: 100%; aspect-ratio: 16 / 9; height: auto;
  border-radius: var(--radius); display: block;
}
.post-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 12px 20px; background: var(--bg-off);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 1.25em;
}
.post-back { max-width: 760px; margin: 0 auto; padding: 0 24px 64px; }
.post-back a { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
.post-back a:hover { color: var(--green-dark); }

/* BLOGPOST MET CTA-ZIJKOLOM */
.post-layout {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0,320px);
  gap: 48px; padding: 0 24px;
}
.post-layout .post-wrap { max-width: 760px; padding: 64px 0; margin: 0; }
.post-layout .post-back { padding: 0 0 64px; margin: 0; }
.cta-sticky { position: sticky; top: 88px; padding: 64px 0; }

.blog-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
}
.blog-cta-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  margin: 0 0 10px;
}
h3.blog-cta-title {
  font-size: 19px; font-weight: 700; color: white;
  line-height: 1.35; margin: 0 0 10px;
}
.blog-cta-text {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin: 0 0 18px;
}
.blog-cta-btn { margin: 0; }
.blog-cta-btn a {
  display: block; text-align: center;
  background: var(--orange); color: white;
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.blog-cta-btn a:hover { background: #e5650f; }

/* In de artikeltekst zelf geplaatst krijgt de kaart wat lucht */
.post-content .blog-cta { margin: 1.5em 0; }

/* Maandkoppen op het events-overzicht */
.events-month {
  max-width: 1120px;
  margin: 0 auto 20px;
  font-size: 20px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.2px;
}
.blog-grid + .events-month { margin-top: 48px; }

/* Eventgegevens (datum/tijd/locatie) */
.event-facts {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 0 0 32px;
}
.event-fact {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex; flex-direction: column; gap: 2px;
}
.event-fact-label {
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.event-fact-value { font-size: 14px; font-weight: 600; color: var(--navy); }

/* Downloadkaart bij playbooks */
.download-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
}
.download-card-cover { margin: 6px 0 40px; display: flex; justify-content: center; }
.download-card-cover img {
  width: 70%; max-width: 240px; height: auto; display: block;
  border-radius: 2px 7px 7px 2px;
  box-shadow:
    2px 0 0 #e7ecf3,
    4px 1px 0 #dbe2ec,
    6px 2px 0 #cfd8e6,
    8px 3px 0 #c3cee0,
    22px 30px 50px rgba(15,30,56,0.28),
    0 8px 20px rgba(15,30,56,0.12);
}
@media (max-width: 980px) {
  .download-card-cover img { width: 46%; }
}
h3.download-card-title {
  font-size: 19px; font-weight: 700; color: white;
  line-height: 1.35; margin: 0 0 8px;
}
.download-card-text {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin: 0 0 16px;
}
.download-card-text a { color: var(--green); }
.download-card form { margin: 0; }
.download-card input[type="text"],
.download-card input[type="email"] {
  width: 100%; box-sizing: border-box;
}

/* GEWONE PAGINA'S */
.page-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.page-wrap .page-title {
  font-size: 36px; font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.5px; margin: 0 0 24px;
}
.page-content { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.page-content a { color: var(--green-dark); }

/* RESPONSIVE */
@media (max-width: 920px) {
  .hero-inner, .herkenning-inner, .over-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .ladder-grid, .playbooks-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid, .testi-grid, .scope-grid, .extra-list, .engine-grid, .rhythm-grid, .deliverables, .scan-grid-2col { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; gap: 0; }
  .cta-sticky { position: static; padding: 0 0 64px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 16px; }
  .itm-front h1, .hero h1 { font-size: 38px; }

  /* Mobiel menu */
  .nav-toggle { display: block; }
  ul.nav-links { display: none; }
  .site-nav.nav-open ul.nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 40px 16px; margin: 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  }
  .site-nav.nav-open ul.nav-links li { list-style: none; }
  .site-nav.nav-open .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav.nav-open .nav-links li:last-child a { border-bottom: none; }

  /* Submenu in het mobiele menu: altijd uitgeklapt, licht ingesprongen */
  .site-nav.nav-open .nav-links .sub-menu {
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 4px 16px;
  }
  .site-nav.nav-open .nav-links .sub-menu a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 10px 0;
    border-bottom: none;
  }
}
@media (max-width: 560px) {
  .ladder-grid, .playbooks-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._form-content:not(#_) { grid-template-columns: 1fr !important; }
  .footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._button-wrapper:not(#_) { width: 100% !important; }
  .footer-nl-form :is(.newsletter-form,.newsletter-box) form._form ._submit:not(#_) { width: 100% !important; }
  section.itm-section { padding: 56px 24px; }
  .hero { padding: 56px 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 16px; }
  .compare-header, .compare-cell { padding: 10px 8px; font-size: 12px; }
  .logos-inner { flex-direction: column; align-items: center; gap: 14px; }
  .logos-label { border-right: none; padding-right: 0; }
  .logos-marquee { width: 100%; flex: none; }
}

/* 404 */
.error-404 .hero-single { max-width: 640px; margin: 0 auto; }
.error-code {
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.error-code span {
  display: inline-block;
  color: var(--green);
  animation: error-spin 6s linear infinite;
}
@keyframes error-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .error-code span { animation: none; }
}
.error-links { margin-top: 40px; }
.error-links-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin: 0 0 14px;
}
.error-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}
.error-links li { list-style: none; }
.error-links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.error-links a:hover { background: var(--green-light); border-color: var(--green); }
@media (max-width: 560px) {
  .error-code { font-size: 96px; }
}

/* COOKIEBANNER (Complianz) — in de huisstijl. Hoge specificiteit + !important
   omdat Complianz eigen stijlen/inline-styles meelevert. */
#cmplz-cookiebanner-container .cmplz-cookiebanner {
  font-family: var(--sans) !important;
  background: #fff !important;
  color: var(--text-mid) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 12px 40px rgba(15,30,56,0.18) !important;
}
#cmplz-cookiebanner-container .cmplz-title {
  font-family: var(--sans) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
#cmplz-cookiebanner-container .cmplz-body,
#cmplz-cookiebanner-container .cmplz-message,
#cmplz-cookiebanner-container .cmplz-description {
  color: var(--text-mid) !important;
}

/* Knoppen: basis */
#cmplz-cookiebanner-container .cmplz-btn {
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  transition: background .2s, color .2s, border-color .2s !important;
}
/* Accepteren en Weigeren: gelijke visuele weging (geen dark pattern) */
#cmplz-cookiebanner-container .cmplz-btn.cmplz-accept {
  background: var(--green) !important;
  color: var(--navy) !important;
  border: 1px solid var(--green) !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-accept:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-deny {
  background: var(--navy) !important;
  color: #fff !important;
  border: 1px solid var(--navy) !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-deny:hover {
  background: var(--navy-mid) !important;
  border-color: var(--navy-mid) !important;
}
/* Voorkeuren bekijken/opslaan: tertiair, outline */
#cmplz-cookiebanner-container .cmplz-btn.cmplz-view-preferences,
#cmplz-cookiebanner-container .cmplz-btn.cmplz-save-preferences,
#cmplz-cookiebanner-container .cmplz-btn.cmplz-manage-options {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid var(--border) !important;
}
#cmplz-cookiebanner-container .cmplz-btn.cmplz-view-preferences:hover,
#cmplz-cookiebanner-container .cmplz-btn.cmplz-save-preferences:hover,
#cmplz-cookiebanner-container .cmplz-btn.cmplz-manage-options:hover {
  border-color: var(--navy) !important;
  background: var(--bg-off) !important;
}

/* Documentlinks (Privacy Verklaring) */
#cmplz-cookiebanner-container .cmplz-links a,
#cmplz-cookiebanner-container .cmplz-link {
  color: var(--green-dark) !important;
  text-decoration: underline !important;
}

/* Voorkeuren-categorieën */
#cmplz-cookiebanner-container .cmplz-category-title { color: var(--navy) !important; font-weight: 600 !important; }
#cmplz-cookiebanner-container .cmplz-category .cmplz-banner-checkbox input:checked + label,
#cmplz-cookiebanner-container .cmplz-category input:checked + .cmplz-slider { background-color: var(--green) !important; }
#cmplz-cookiebanner-container .cmplz-close { color: var(--navy) !important; }

/* Revoke-tab ("Cookievoorkeuren beheren") */
.cmplz-manage-consent .cmplz-btn {
  font-family: var(--sans) !important;
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
}
