/* ======= GA4SUPPORT SHARED STYLES ======= */
:root {
  --orange: #f86011;
  --orange-dark: #d94f06;
  --yellow: #f8cc23;
  --green: #3bc77b;
  --blue: #307fe2;
  --dark: #1a1a2e;
  --dark-2: #2d2d5e;
  --text: #333;
  --text-light: #777;
  --bg-light: #f4f4f6;
  --border: #eee;
  --error: #d32f2f;
  --success: #2e7d32;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ======= NAV ======= */
nav {
  position: sticky; top: 0; z-index: 250;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}
body.nav-open nav { background: #fff; }

/* WP admin-bar compensatie (alleen zichtbaar voor ingelogde users) */
body.admin-bar nav { top: 32px; }
body.admin-bar .nav-mobile { top: 102px; }
@media (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
  body.admin-bar .nav-mobile { top: 116px; }
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 18px; color: var(--dark);
}
.logo img {
  width: 44px; height: 44px; border-radius: 8px; object-fit: cover;
  display: block;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 15px;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.btn-primary { color: #fff; font-weight: 700; }
.nav-links a.btn-primary:hover { color: #fff; }
/* Hamburger + mobile menu */
.nav-hamburger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.nav-hamburger:focus { outline: none; }
.nav-hamburger:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 6px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 200; overflow-y: auto;
  padding: 16px 20px 32px;
}
.nav-mobile.is-open { display: block; }
.nav-mobile-list { list-style: none; margin: 0; padding: 0; }
.nav-mobile-list li { border-bottom: 1px solid var(--border); margin: 0; }
.nav-mobile-list a {
  display: block; padding: 14px 8px; text-decoration: none;
  color: var(--dark) !important;
  font-weight: 600; font-size: 16px;
}
.nav-mobile-list > li > a { font-size: 17px; }
.nav-mobile-list .sub-menu { list-style: none; margin: 0; padding: 0 0 0 12px; }
.nav-mobile-list .sub-menu li { border-bottom: 1px dashed var(--border); }
.nav-mobile-list .sub-menu li:last-child { border-bottom: 0; }
.nav-mobile-list .sub-menu a { font-size: 15px; font-weight: 500; padding: 12px 8px; }

.nav-mobile-list > li.menu-item-has-children > a { pointer-events: none; cursor: default; }

/* dm-label: kleine oranje sectiekopjes, niet klikbaar */
.nav-mobile-list li.dm-label { border-bottom: 0 !important; }
.nav-mobile-list li.dm-label > a {
  pointer-events: none; cursor: default;
  padding: 16px 8px 6px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange) !important;
  font-weight: 700 !important;
}

@media (hover: hover) {
  .nav-mobile-list a:hover { color: var(--orange) !important; }
}

.nav-mobile-list .btn-primary { border-bottom: 0 !important; margin-top: 16px; }
.nav-mobile-list .btn-primary > a {
  background: var(--orange); color: #fff !important;
  border-radius: 8px; text-align: center;
  padding: 14px 16px !important;
}
.nav-mobile-list .btn-primary > a:hover { background: var(--orange-dark); color: #fff !important; }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
}
@media (min-width: 901px) {
  .nav-mobile, .nav-mobile.is-open { display: none !important; }
}

.dropdown { position: relative; padding: 24px 0; margin: -24px 0; }
.dropdown > a::after { content: " ▾"; font-size: 10px; color: var(--text-light); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: -16px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  min-width: 260px; padding: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.dropdown-menu::before {
  content: ""; position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--text);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--orange); }
.dropdown-menu .dm-label {
  font-size: 11px; text-transform: uppercase; color: var(--text-light);
  padding: 8px 14px 4px; letter-spacing: 0.8px; font-weight: 700;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: 15px; transition: all 0.2s;
  cursor: pointer; border: none; font-family: inherit; text-align: center;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-outline-dark {
  background: transparent; color: var(--dark); border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ======= HERO ======= */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 96px 0 120px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute;
  top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(248,204,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero.hero-compact { padding: 64px 0 80px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center; position: relative;
}
.hero-narrow {
  max-width: 760px; margin: 0 auto; text-align: center; position: relative;
}
.eyebrow {
  display: inline-block;
  color: var(--yellow); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px; line-height: 1.1; letter-spacing: -1px;
  font-weight: 800; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); }
.hero.hero-compact h1 { font-size: 42px; }
.hero p.sub {
  font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.hero-narrow p.sub { max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-narrow .hero-ctas { justify-content: center; }
.trust-row {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-narrow .trust-row { justify-content: center; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 13px;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-bottom: 20px; position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span.sep { margin: 0 8px; opacity: 0.5; }

/* Hero mockup dashboard */
.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(8px);
}
.hv-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hv-title { font-size: 13px; font-weight: 700; color: #fff; }
.hv-badge {
  padding: 3px 10px; border-radius: 10px; font-size: 11px;
  background: rgba(59,199,123,0.15); color: var(--green);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700;
}
.hv-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.hv-stat {
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px;
}
.hv-stat-label {
  font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.6);
  letter-spacing: 0.8px; font-weight: 600;
}
.hv-stat-value {
  font-size: 22px; font-weight: 800; color: #fff; margin-top: 4px;
}
.hv-stat-value .up { color: var(--green); font-size: 13px; margin-left: 8px; }
.hv-bar-row {
  background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px;
}
.hv-bar-row .lbl {
  font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.6);
  letter-spacing: 0.8px; margin-bottom: 10px; font-weight: 600;
}
.hv-bar {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
  font-size: 12px;
}
.hv-bar-name { width: 90px; color: rgba(255,255,255,0.85); }
.hv-bar-track {
  flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px;
  overflow: hidden;
}
.hv-bar-fill { height: 100%; background: var(--orange); border-radius: 3px; }
.hv-bar-val { width: 42px; text-align: right; color: rgba(255,255,255,0.8); font-weight: 700; }

/* ======= SECTIONS ======= */
section { padding: 96px 0; }
section.alt { background: var(--bg-light); }
section.compact { padding: 64px 0; }
.section-title {
  font-size: 36px; line-height: 1.2; font-weight: 800;
  color: var(--dark); letter-spacing: -0.5px;
  margin-bottom: 16px; text-align: center; max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.section-title.left { text-align: left; margin-left: 0; }
.section-sub {
  font-size: 18px; color: var(--text-light); text-align: center;
  max-width: 640px; margin: 0 auto 56px;
}
.section-sub.left { text-align: left; margin-left: 0; }

/* ======= FORMS ======= */
.form-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.form-box h3 {
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.form-box .form-sub {
  font-size: 14px; color: var(--text-light); margin-bottom: 24px;
}
.form-tabs {
  display: flex; gap: 4px; background: var(--bg-light);
  padding: 4px; border-radius: 10px; margin-bottom: 24px;
}
.form-tabs button {
  flex: 1; padding: 10px 14px; border: none; background: transparent;
  font-family: inherit; font-weight: 600; font-size: 13px;
  border-radius: 8px; cursor: pointer; color: var(--text-light);
  transition: all 0.2s;
}
.form-tabs button.active {
  background: #fff; color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: var(--dark);
  margin-bottom: 6px; letter-spacing: 0.2px;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 15px;
  background: #fff; color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-light);
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--orange);
  flex-shrink: 0; margin-top: 2px;
}
.form-msg {
  display: none; padding: 12px 14px; border-radius: 8px;
  margin-top: 16px; font-size: 13px;
}
.form-msg.success {
  display: block; background: #e8f5e9; color: var(--success);
  border: 1px solid #c8e6c9;
}
.form-msg.error {
  display: block; background: #fde8e8; color: var(--error);
  border: 1px solid #ffcdd2;
}

/* ======= CARDS ======= */
/* USP row */
.usp-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.usp {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 24px; text-align: center;
}
.usp-icon {
  width: 48px; height: 48px; background: var(--orange); border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 16px;
}
.usp-icon svg { width: 22px; height: 22px; }
.usp h3 {
  font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.usp p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Services grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; transition: all 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(248,96,17,0.08);
  transform: translateY(-2px);
}
.service-card .s-icon {
  width: 48px; height: 48px; background: var(--orange); border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 20px;
}
.service-card .s-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.service-card .s-tag {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  color: var(--orange); letter-spacing: 1px; font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; flex: 1; }
.service-card .s-link {
  font-size: 14px; font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; border-color: var(--dark);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .s-tag { color: var(--yellow); }
.service-card.featured .s-link { color: var(--yellow); }
.service-card.featured .s-icon { background: var(--yellow); color: var(--dark); }

/* Tools section */
.tools-row {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 32px;
}
.tool-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px;
}
.tool-card .t-head {
  display: flex; gap: 16px; align-items: center; margin-bottom: 8px;
}
.tool-icon {
  width: 48px; height: 48px; background: #fff8e1; color: var(--dark);
  border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.tool-icon svg { width: 24px; height: 24px; }
.tool-card h3 {
  font-size: 19px; font-weight: 800; color: var(--dark);
}
.tool-card .t-sub { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* Pricing cards */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 880px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 40px; position: relative;
}
.price-card.popular {
  border: 2px solid var(--orange); box-shadow: 0 16px 48px rgba(248,96,17,0.12);
}
.price-card .pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; padding: 4px 14px;
  border-radius: 100px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.price-card .p-name {
  font-size: 14px; text-transform: uppercase; color: var(--orange);
  letter-spacing: 1.5px; font-weight: 700; margin-bottom: 8px;
}
.price-card .p-title {
  font-size: 28px; font-weight: 800; color: var(--dark);
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.price-card .p-desc {
  font-size: 15px; color: var(--text-light); margin-bottom: 24px;
}
.price-card .p-price {
  font-size: 40px; font-weight: 800; color: var(--dark);
  margin-bottom: 4px;
}
.price-card .p-price .cur { color: var(--text-light); font-size: 20px; font-weight: 500; }
.price-card .p-price .unit { font-size: 16px; color: var(--text-light); font-weight: 500; }
.price-card .p-price-note { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 24px 0; }
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px;
}
.price-card ul li svg {
  width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px;
}
.price-card ul li.muted { color: var(--text-light); }
.price-card ul li.muted svg { color: #ccc; }

/* SST cross-link */
.cross-link {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; border-radius: 16px; padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center; position: relative; overflow: hidden;
}
.cross-link::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(248,204,35,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cross-link .cl-eyebrow {
  font-size: 12px; text-transform: uppercase; color: var(--yellow);
  letter-spacing: 2px; font-weight: 700; margin-bottom: 12px;
  position: relative;
}
.cross-link h2 {
  font-size: 32px; font-weight: 800; margin-bottom: 12px;
  letter-spacing: -0.3px; position: relative;
}
.cross-link p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 580px; position: relative;
}

/* Expert */
.expert-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px;
  align-items: center; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 48px;
}
.expert-avatar {
  width: 280px; height: 280px; border-radius: 16px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 96px; font-weight: 800;
  overflow: hidden;
}
.expert-avatar-photo { background: transparent; padding: 0; }
.expert-avatar-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.expert-block h2 {
  font-size: 30px; font-weight: 800; color: var(--dark);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.expert-role {
  font-size: 13px; text-transform: uppercase; color: var(--orange);
  letter-spacing: 1.2px; font-weight: 700; margin-bottom: 16px;
}
.expert-block p { font-size: 16px; color: var(--text); margin-bottom: 16px; }
.expert-socials { display: flex; gap: 14px; margin-top: 20px; }
.expert-socials a {
  width: 40px; height: 40px; border: 1px solid var(--border);
  border-radius: 10px; display: inline-flex; align-items: center;
  justify-content: center; color: var(--text);
}
.expert-socials a:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Testimonial */
.testimonial {
  background: #fff; border-left: 4px solid var(--orange);
  padding: 32px; border-radius: 0 12px 12px 0;
  max-width: 720px; margin: 0 auto;
}
.testimonial p.quote {
  font-size: 20px; line-height: 1.5; color: var(--dark);
  font-style: italic; margin-bottom: 20px;
}
.testimonial .author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial .author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark); color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial .author-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.testimonial .author-title { color: var(--text-light); font-size: 13px; }

/* Clients row */
.clients-row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap; opacity: 0.6;
}
.client-logo {
  font-weight: 700; font-size: 18px; color: var(--text-light);
  letter-spacing: -0.3px;
}

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--dark); font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; color: var(--orange); font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 20px; color: var(--text); font-size: 15px;
}

/* CTA section */
.cta-final {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; text-align: center; padding: 96px 24px;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(248,204,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: 40px; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.5px; position: relative;
}
.cta-final p {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 580px; margin: 0 auto 32px; position: relative;
}
.cta-final .btns { position: relative; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ======= WIKI ======= */
.wiki-toolbar {
  display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.wiki-search {
  flex: 1; min-width: 280px; position: relative;
}
.wiki-search input {
  width: 100%; padding: 14px 16px 14px 48px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.wiki-search input:focus { border-color: var(--orange); }
.wiki-search svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); pointer-events: none;
}
.wiki-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.wiki-cats button {
  padding: 8px 14px; border: 1.5px solid var(--border);
  background: #fff; border-radius: 8px; font-family: inherit;
  font-size: 13px; font-weight: 600; color: var(--text-light);
  cursor: pointer; transition: all 0.2s;
}
.wiki-cats button:hover { border-color: var(--orange); color: var(--orange); }
.wiki-cats button.active {
  background: var(--dark); color: #fff; border-color: var(--dark);
}

.wiki-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.wiki-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; transition: all 0.2s;
  display: flex; flex-direction: column;
}
.wiki-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(248,96,17,0.08);
  transform: translateY(-2px);
}
.wiki-card .w-cat {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  color: var(--orange); letter-spacing: 1px; font-weight: 700;
  margin-bottom: 10px;
}
.wiki-card h3 {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
}
.wiki-card p { font-size: 14px; color: var(--text-light); flex: 1; }
.wiki-card .w-meta {
  display: flex; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-light);
}

/* Article layout */
.article-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 64px;
  max-width: 1080px; margin: 0 auto;
}
.article-content h2 {
  font-size: 26px; font-weight: 800; color: var(--dark);
  margin: 40px 0 16px; letter-spacing: -0.3px;
}
.article-content h3 {
  font-size: 19px; font-weight: 700; color: var(--dark);
  margin: 28px 0 12px;
}
.article-content p {
  margin-bottom: 16px; font-size: 16px; line-height: 1.7;
}
.article-content ul, .article-content ol {
  margin: 16px 0 16px 24px; font-size: 16px; line-height: 1.7;
}
.article-content li { margin-bottom: 8px; }
.article-content code {
  background: var(--bg-light); padding: 2px 6px;
  border-radius: 4px; font-size: 14px;
  font-family: 'SF Mono', Menlo, monospace;
  color: var(--dark);
}
.article-content pre {
  background: var(--dark); color: #e0e0e0; padding: 20px;
  border-radius: 12px; overflow: auto; margin: 20px 0;
  font-family: 'SF Mono', Menlo, monospace; font-size: 14px; line-height: 1.5;
}
.article-content blockquote {
  border-left: 4px solid var(--orange); padding: 16px 20px;
  margin: 24px 0; background: #fff8f2; border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--dark);
}
.article-sidebar {
  position: sticky; top: 90px;
  align-self: start;
}
.article-sidebar-box {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin-bottom: 16px;
}
.article-sidebar-box h4 {
  font-size: 11px; text-transform: uppercase; color: var(--text-light);
  letter-spacing: 1.2px; margin-bottom: 14px; font-weight: 700;
}
.article-toc { list-style: none; }
.article-toc li { margin-bottom: 8px; }
.article-toc a {
  color: var(--text); font-size: 14px; line-height: 1.4;
  display: block; padding: 4px 0;
}
.article-toc a:hover { color: var(--orange); }
.article-meta {
  display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
  color: var(--text-light); font-size: 13px;
}
.article-meta .cat {
  background: var(--orange); color: #fff; padding: 3px 10px;
  border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 11px; font-weight: 700;
}

/* Audiences (breed inzetbaar) */
.audiences-grid { display: grid; gap: 24px; }
.audience-col {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center;
}
.audience-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--orange); color: #fff; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.audience-col h3 {
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin-bottom: 8px;
}
.audience-desc { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.audience-items { list-style: none; text-align: left; }
.audience-items li {
  padding: 10px 0; font-size: 15px; color: var(--text);
  border-top: 1px dashed var(--border);
}
.audience-items li:first-child { border-top: 0; }
@media (max-width: 900px) {
  .audiences-grid { grid-template-columns: 1fr !important; }
}

/* Proposition block */
.prop-block { max-width: 780px; margin: 0 auto; }
.prop-headline {
  font-size: 34px; line-height: 1.2; font-weight: 800; letter-spacing: -0.5px;
  color: var(--dark); margin-bottom: 24px; text-align: center;
}
.prop-lead {
  font-size: 20px; line-height: 1.55; color: var(--dark); font-weight: 500;
  margin-bottom: 32px; text-align: center;
}
.prop-body { font-size: 17px; line-height: 1.75; color: var(--text); }
.prop-body p { margin-bottom: 18px; }
.prop-body h3 {
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin: 32px 0 12px; letter-spacing: -0.3px;
}
.prop-signoff {
  font-size: 18px; font-weight: 700; color: var(--orange);
  margin-top: 28px; text-align: center;
}
@media (max-width: 720px) {
  .prop-headline { font-size: 26px; }
  .prop-lead { font-size: 17px; }
}

/* White-label block (over-ons) */
.wl-block {
  max-width: 780px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 56px 48px; position: relative;
}
.wl-block .eyebrow { margin-bottom: 12px; }
.wl-block h2 {
  font-size: 32px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2;
}
.wl-body { font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.wl-features {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  text-align: left; margin: 24px auto 28px; max-width: 600px;
}
.wl-features li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.wl-features li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 720px) {
  .wl-block { padding: 32px 24px; }
  .wl-block h2 { font-size: 24px; }
  .wl-features { grid-template-columns: 1fr; }
}

/* Agencies grid (over-ons) */
.agencies-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.agency-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; display: block; transition: all 0.2s; color: var(--text);
}
a.agency-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(248,96,17,0.08); }
.agency-logo { height: 56px; margin-bottom: 16px; display: flex; align-items: center; }
.agency-logo img { max-height: 48px; width: auto; object-fit: contain; }
.agency-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.agency-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Update editor-hide voor new templates */

/* Logo slider (infinite marquee) */
.logos-slider-section { padding: 48px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-slider-label {
  text-align: center; font-size: 12px; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--text-light); font-weight: 700;
  margin-bottom: 24px;
}
.logos-slider { overflow: hidden; position: relative; }
.logos-slider::before, .logos-slider::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.logos-slider::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logos-slider::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logos-track {
  display: flex; gap: 56px; width: max-content;
  animation: ga4-logos-scroll 40s linear infinite;
}
.logos-slider:hover .logos-track { animation-play-state: paused; }
.logo-slide { flex-shrink: 0; display: flex; align-items: center; }
.logo-slide img {
  max-height: 48px; width: auto; object-fit: contain;
  opacity: 0.7; filter: grayscale(40%); transition: opacity 0.2s, filter 0.2s;
}
.logo-slide:hover img { opacity: 1; filter: none; }
@keyframes ga4-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* GTM Checker results */
.gtm-loading { text-align: center; padding: 48px 24px; }
.gtm-scorecard { display: flex; align-items: center; gap: 32px; margin-top: 20px; flex-wrap: wrap; }
.gtm-score-ring {
  position: relative;
  width: 140px; height: 140px; border-radius: 50%;
  background: conic-gradient(var(--ring-color) calc(var(--ring-pct) * 1%), #eee 0);
  flex-shrink: 0;
}
.gtm-score-ring::before {
  content: ""; position: absolute;
  inset: 13px;
  border-radius: 50%; background: #fff;
}
.gtm-score-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 32px; font-weight: 800; color: var(--dark);
  line-height: 1; white-space: nowrap;
  text-align: center;
}
.gtm-score-num span { font-size: 14px; color: var(--text-light); font-weight: 500; margin-left: 2px; }
.gtm-score-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-light); font-weight: 700; margin-bottom: 4px;
}
.gtm-score-status { font-size: 24px; font-weight: 800; color: var(--dark); line-height: 1.3; }

.gtm-checklist { list-style: none; }
.gtm-check-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 8px; background: #fff;
}
.gtm-check-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.gtm-check-item.ok { border-color: #c8e6c9; background: #f1f8f2; }
.gtm-check-item.ok .gtm-check-num { background: #e8f5e9; color: #2e7d32; }
.gtm-check-item.nok { border-color: #ffcdd2; background: #fff7f7; }
.gtm-check-item.nok .gtm-check-num { background: #fde8e8; color: #c62828; }
.gtm-check-item.warn { border-color: #ffe082; background: #fffbe6; }
.gtm-check-item.warn .gtm-check-num { background: #fff8e1; color: #b84d00; }
.gtm-check-msg { font-size: 15px; line-height: 1.5; }

.gtm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.gtm-stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; text-align: center;
}
.gtm-stat-num { font-size: 32px; font-weight: 800; line-height: 1; }
.gtm-stat-num.ok { color: var(--green); }
.gtm-stat-num.warn { color: #f57f17; }
.gtm-stat-num.err { color: var(--error); }
.gtm-stat-label {
  margin-top: 6px; font-size: 12px; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-light); font-weight: 700;
}

.gtm-cta-block {
  margin-top: 40px; padding: 32px; background: var(--bg-light);
  border-radius: 16px; text-align: center;
}
.gtm-cta-block h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.gtm-cta-block p { color: var(--text-light); margin-bottom: 20px; }
.gtm-cta-block .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Gravity Forms — aligned met onze inline form-group styling */
.gform_required_legend { display: none !important; }
.gform_wrapper { font-family: inherit; }

/* labels */
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
  display: block !important;
  font-size: 13px !important; font-weight: 700 !important;
  color: var(--dark) !important; margin-bottom: 6px !important;
  letter-spacing: 0.2px;
}
.gform_wrapper .gfield_required, .gform_wrapper .gfield_required_text { color: var(--orange) !important; }

/* inputs / textareas / selects */
.gform_wrapper .gfield input[type="text"],
.gform_wrapper .gfield input[type="email"],
.gform_wrapper .gfield input[type="url"],
.gform_wrapper .gfield input[type="tel"],
.gform_wrapper .gfield input[type="number"],
.gform_wrapper .gfield textarea,
.gform_wrapper .gfield select,
.gform_wrapper .ginput_complex input,
.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  background: #fff !important;
  color: var(--text) !important;
  outline: none !important;
  transition: border-color 0.2s;
  box-shadow: none !important;
}
.gform_wrapper .gfield input:focus,
.gform_wrapper .gfield textarea:focus,
.gform_wrapper .gfield select:focus,
.gform_wrapper .ginput_container input:focus,
.gform_wrapper .ginput_container textarea:focus,
.gform_wrapper .ginput_container select:focus {
  border-color: var(--orange) !important;
}
.gform_wrapper .gfield textarea { min-height: 120px; resize: vertical; }

/* spacing per veld */
.gform_wrapper .gform_fields { gap: 16px !important; }
.gform_wrapper .gfield { margin-bottom: 0 !important; padding: 0 !important; }

/* sub-labels (bv Voornaam/Achternaam) kleiner + grijs */
.gform_wrapper .ginput_complex .gform-grid-col > label,
.gform_wrapper .ginput_complex label {
  font-size: 12px !important; font-weight: 500 !important;
  color: var(--text-light) !important; margin-top: 4px;
}

/* description / hints */
.gform_wrapper .gfield_description,
.gform_wrapper .ginput_counter {
  font-size: 12px !important; color: var(--text-light) !important;
  margin-top: 4px !important; padding: 0 !important;
}

/* placeholders */
.gform_wrapper .gfield input::placeholder,
.gform_wrapper .gfield textarea::placeholder { color: #aaa; }

/* validatie errors */
.gform_wrapper .gfield_error .gfield_label { color: var(--error) !important; }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: var(--error) !important; }
.gform_wrapper .validation_message {
  font-size: 12px !important; color: var(--error) !important;
  margin-top: 4px !important; background: none !important; border: 0 !important;
  padding: 0 !important;
}
.gform_wrapper .gform_validation_errors {
  background: #fde8e8 !important; border: 1px solid #ffcdd2 !important;
  border-radius: 8px !important; padding: 14px 16px !important;
  color: var(--error) !important; margin-bottom: 16px !important;
}

/* submit button */
.gform_wrapper .gform_footer { padding: 16px 0 0 !important; margin: 0 !important; }
.gform_wrapper .gform_button {
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: background 0.2s;
  width: 100% !important; /* default: block, in cards voelt dit goed */
}
.gform_wrapper .gform_button:hover { background: var(--orange-dark) !important; }

/* checkboxes / radios */
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-weight: 500 !important; font-size: 14px !important;
  color: var(--text) !important;
}
.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="radio"] {
  accent-color: var(--orange); width: 18px !important; height: 18px !important;
  margin-right: 8px !important;
}

/* confirmation message */
.gform_confirmation_message {
  padding: 16px 20px !important;
  background: #e8f5e9 !important;
  border: 1px solid #c8e6c9 !important;
  border-radius: 8px !important;
  color: var(--success) !important;
}

/* Audit processing */
.audit-loader { margin: 0 auto 24px; display: flex; justify-content: center; }
.audit-spinner {
  width: 72px; height: 72px; border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--yellow); border-radius: 50%;
  animation: ga4-audit-spin 1s linear infinite;
}
@keyframes ga4-audit-spin { to { transform: rotate(360deg); } }
.audit-website {
  font-size: 17px; color: var(--yellow); font-weight: 700;
  margin: 16px 0 24px; word-break: break-all;
}
.audit-progress {
  max-width: 320px; margin: 24px auto;
  background: rgba(255,255,255,0.1); border-radius: 4px; height: 6px; overflow: hidden;
}
.audit-progress-bar {
  height: 100%; width: 30%; background: var(--yellow); border-radius: 4px;
  animation: ga4-audit-progress 3s ease-in-out infinite;
}
@keyframes ga4-audit-progress {
  0% { width: 10%; }
  50% { width: 80%; }
  100% { width: 10%; }
}

/* Thanks-page */
.thx-check {
  width: 88px; height: 88px; margin: 0 auto 24px;
  background: rgba(59,199,123,0.15); color: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.thx-next-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 980px; margin: 0 auto;
}
.thx-next-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; display: block; color: var(--text); transition: all 0.2s;
}
.thx-next-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(248,96,17,0.08); color: var(--text); }
.thx-next-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.thx-next-card:hover h3 { color: var(--orange); }
.thx-next-card p { font-size: 14px; color: var(--text-light); }

/* Platforms-strip (static logo row — integrations) */
.platforms-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px 32px; align-items: center; justify-items: center;
  max-width: 980px; margin: 0 auto;
}
.platform-logo {
  width: 100%; padding: 20px 16px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  transition: all 0.2s;
}
a.platform-logo:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(248,96,17,0.08); }
.platform-logo img {
  max-height: 40px; max-width: 100%; width: auto; object-fit: contain;
  opacity: 0.8; filter: grayscale(20%); transition: opacity 0.2s, filter 0.2s;
}
.platform-logo:hover img { opacity: 1; filter: none; }

/* Partners row */
.partners-section { padding: 48px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label {
  text-align: center; font-size: 12px; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--text-light); font-weight: 700;
  margin-bottom: 24px;
}
.partners-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 48px;
}
.partner-badge { display: inline-flex; align-items: center; }
.partner-badge img { max-height: 72px; width: auto; object-fit: contain; opacity: 0.9; transition: opacity 0.2s; }
.partner-badge:hover img { opacity: 1; }

/* Author-box (EEAT) */
.author-box {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; max-width: 880px; margin: 0 auto; align-items: start;
}
.author-box-photo img {
  width: 100%; height: auto; border-radius: 12px; display: block;
}
.author-box-dl { display: grid; grid-template-columns: max-content 1fr; column-gap: 12px; row-gap: 14px; }
.author-box-dl dt { font-weight: 700; color: var(--dark); }
.author-box-dl dd { color: var(--text); }
.author-box-dl dd a { font-weight: 600; }
@media (max-width: 720px) {
  .author-box { grid-template-columns: 1fr; padding: 20px; gap: 20px; }
  .author-box-photo { max-width: 200px; }
}

/* Breadcrumb onder hero (wiki-artikel) */
.breadcrumb-below {
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-below .breadcrumb {
  color: var(--text-light); margin: 0;
}
.breadcrumb-below .breadcrumb a { color: var(--text); }
.breadcrumb-below .breadcrumb a:hover { color: var(--orange); }

/* Contact split */
.contact-split {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info-box {
  background: var(--dark); color: #fff; border-radius: 16px; padding: 40px;
}
.contact-info-box h3 {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px;
}
.contact-info-box p {
  color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 15px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-detail:first-of-type { border-top: 0; }
.contact-detail-icon {
  width: 38px; height: 38px; background: rgba(248,204,35,0.15);
  color: var(--yellow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.6);
  letter-spacing: 1px; font-weight: 700; margin-bottom: 2px;
}
.contact-detail-value { color: #fff; font-size: 15px; font-weight: 600; }
.contact-detail-value a { color: #fff; }
.contact-detail-value a:hover { color: var(--yellow); }
.response-box {
  background: rgba(59,199,123,0.1); border: 1px solid rgba(59,199,123,0.3);
  border-radius: 10px; padding: 16px; margin-top: 24px;
  font-size: 14px; color: #fff; display: flex; gap: 12px; align-items: center;
}
.response-box svg { color: var(--green); flex-shrink: 0; }

/* Feature list (lang) */
.feature-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 15px;
}
.feature-list li svg {
  width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px;
}

/* ======= FOOTER ======= */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; line-height: 1.6; max-width: 320px;
}
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; color: #fff;
  letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7); font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-legal-links ul {
  list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap;
}
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-legal-links a:hover { color: #fff; }

/* WhatsApp */
.whatsapp-fab {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: 20px; z-index: 99;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  animation: wa-pulse 2s ease-in-out infinite;
  transition: opacity 0.2s, transform 0.2s;
}
/* Verbergen als mobile menu open is */
body.nav-open .whatsapp-fab { opacity: 0; pointer-events: none; transform: scale(0.8); }

/* Iets kleiner op mobiel, hoger van de rand om niet te botsen met submit-knoppen */
@media (max-width: 600px) {
  .whatsapp-fab { width: 48px; height: 48px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); right: 16px; }
  .whatsapp-fab svg { width: 22px; height: 22px; }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.15); }
}

/* Demo-banner om aan te geven dit is een mockup */
.mockup-banner {
  background: var(--yellow); color: var(--dark);
  padding: 8px 16px; font-size: 13px; font-weight: 700;
  text-align: center;
}
.mockup-banner a { color: var(--dark); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .expert-block, .footer-grid, .cross-link,
  .contact-split, .article-layout, .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .hero.hero-compact h1 { font-size: 30px; }
  .services-grid, .usp-row, .tools-row, .wiki-grid, .feature-list {
    grid-template-columns: 1fr;
  }
  section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .expert-avatar { width: 200px; height: 200px; margin: 0 auto; font-size: 72px; }
  .expert-avatar-photo { width: 200px; height: 200px; }
  .cross-link, .expert-block, .form-box, .price-card { padding: 28px; }
  .cta-final h2 { font-size: 28px; }
  .article-sidebar { position: static; }
  .gtm-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .gtm-stat-card { padding: 14px 10px; }
  .gtm-stat-num { font-size: 24px; }
  .gtm-scorecard { justify-content: center; text-align: center; }
  .gtm-scorecard > div:last-child { text-align: center; }
  .thx-next-grid { grid-template-columns: 1fr; }
  .partners-grid { gap: 32px; }
  .partner-badge img { max-height: 56px; }
  .container { padding: 0 16px; }
  .hero-ctas .btn { flex: 1 1 100%; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero.hero-compact h1 { font-size: 24px; }
  .hero p.sub { font-size: 16px; }
  .section-title { font-size: 22px; }
  .cta-final h2 { font-size: 22px; }
  .prop-headline { font-size: 22px; }
  .prop-lead { font-size: 16px; }
  section { padding: 48px 0; }
  .form-box, .price-card, .tool-card, .cross-link { padding: 20px; }
}
