/* === Home + shared (from index.html) === */
:root {
  --bg: #1E1C41;
  --bg-2: #252255;
  --panel: #211f4a;
  --deep: #1e1c41;
  --accent: #e43b4e;
  --cream: #fffbf7;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f4f7ff;
  --text-soft: #a9b2c6;
  --teal: #E43B4E;
  --green: #E43B4E;
  --focus: 0 0 0 3px rgba(228, 59, 78, 0.35);
  --shadow-lg: 0 18px 40px rgba(4, 7, 15, 0.45);
  --radius: 16px;
  --frame-radius: 18px;
  /* Primaire CTA (pill / demo) */
  --cta-pill-bg: #f04e5a;
  --cta-pill-bg-hover: #e94755;
  --cta-pill-text: #fff;
  --cta-pill-border: rgba(240, 78, 90, 0.98);
  --cta-pill-shadow: 0 4px 20px rgba(240, 78, 90, 0.4);
  --cta-pill-shadow-hover: 0 6px 26px rgba(240, 78, 90, 0.48);
  --cta-pill-focus: 0 0 0 3px rgba(240, 78, 90, 0.45);
  --page-gutter: clamp(1.35rem, 4vw, 2.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fffbf7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a, button { font: inherit; }
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

/* 10% witruimte links/rechts + oorspronkelijke site-kader (rand, schaduw, afgeronde hoeken). */
.app-frame {
  width: 80%;
  max-width: none;
  margin-inline: auto;
  margin-block: 0;
  border-radius: var(--frame-radius);
  border: 1px solid rgba(30, 28, 65, 0.1);
  background: rgba(20, 18, 48, 0.82);
  box-shadow: 0 16px 40px rgba(30, 28, 65, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Geen overflow:hidden: die breekt position:sticky op de navbar */
}

@media (max-width: 760px) {
  .app-frame {
    width: calc(100% - 1.25rem);
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 247, 0.95);
  border-bottom: 1px solid rgba(30, 28, 65, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top-left-radius: var(--frame-radius);
  border-top-right-radius: var(--frame-radius);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  height: clamp(36px, 2.35vw, 42px);
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1E1C41;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.72rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #1E1C41;
  background: rgba(228, 59, 78, 0.08);
  border-color: rgba(228, 59, 78, 0.45);
}

.nav-links > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li.nav-item--cta {
  display: inline-flex;
  align-items: center;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0.42rem 0;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: clamp(232px, 22vw, 300px);
  background: rgba(255, 251, 247, 0.98);
  border: 1px solid rgba(30, 28, 65, 0.12);
  border-radius: 12px;
  box-shadow:
    0 14px 36px rgba(30, 28, 65, 0.12),
    0 2px 0 rgba(255, 251, 247, 0.6) inset;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    visibility 0.14s ease,
    opacity 0.14s ease,
    transform 0.14s ease;
  z-index: 60;
}

.nav-submenu li {
  list-style: none;
  margin: 0;
}

.nav-submenu a {
  display: block;
  padding: 0.38rem 0.92rem;
  font-size: 0.846rem;
  font-weight: 550;
  color: #1E1C41;
  white-space: nowrap;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(228, 59, 78, 0.09);
  color: #1E1C41;
}

li.has-submenu:hover > .nav-submenu,
li.has-submenu:focus-within > .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

li.has-submenu > a:not(:only-child) {
  gap: 0.25rem;
}

a.nav-lang,
span.nav-lang {
  padding: 0.45rem 0.72rem !important;
}

span.nav-lang {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(30, 28, 65, 0.45);
  cursor: default;
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.56rem 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.btn:hover { transform: translateY(-1px); }

/* Primaire CTA: vaste pill, coral, buitenlicht */
.btn-glow {
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  color: var(--cta-pill-text);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.75rem 2rem;
  box-shadow: var(--cta-pill-shadow);
}

.btn-glow:hover {
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
}

.btn-glow:focus-visible {
  outline: none;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow);
}

/* Secundaire knop op donkere hero / detail-hero */
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  box-shadow: none;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-outline-light:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.navbar .btn-glow {
  color: var(--cta-pill-text);
  border-color: var(--cta-pill-border);
  background: var(--cta-pill-bg);
  box-shadow: var(--cta-pill-shadow);
}

.navbar .btn-glow:hover {
  color: var(--cta-pill-text);
  background: var(--cta-pill-bg-hover);
  box-shadow: var(--cta-pill-shadow-hover);
}

.navbar .btn-glow:focus-visible {
  outline: none;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 4.35rem) 0 clamp(2.85rem, 5vw, 3.5rem);
  background-image:
    linear-gradient(100deg, rgba(15, 14, 38, 0.58) 0%, rgba(15, 14, 38, 0.42) 42%, rgba(15, 14, 38, 0.32) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.35rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-media {
  position: relative;
  transform: none;
}

.hero-media::after {
  content: none;
}

.hero h1 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  line-height: 1.14;
  max-width: 14ch;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero p {
  margin: 0;
  max-width: 54ch;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.42rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Home hero: demo = default accent; hover/focus op “Onze oplossingen” wisselt naar ghost/solid */
.hero-actions--dual-cta:has(.btn-outline-light:hover) .btn-glow,
.hero-actions--dual-cta:has(.btn-outline-light:focus-visible) .btn-glow {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  box-shadow: none;
}

.hero-actions--dual-cta:has(.btn-outline-light:hover) .btn-glow:hover,
.hero-actions--dual-cta:has(.btn-outline-light:focus-visible) .btn-glow:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero-actions--dual-cta:has(.btn-outline-light:hover) .btn-outline-light,
.hero-actions--dual-cta:has(.btn-outline-light:focus-visible) .btn-outline-light {
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  color: var(--cta-pill-text);
  font-weight: 700;
  padding: 0.75rem 2rem;
  box-shadow: var(--cta-pill-shadow);
}

.hero-actions--dual-cta:has(.btn-outline-light:hover) .btn-outline-light:hover,
.hero-actions--dual-cta:has(.btn-outline-light:focus-visible) .btn-outline-light:hover {
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
}

.hero-note {
  margin-top: 0.95rem;
  color: rgba(244, 247, 255, 0.75);
  font-size: 0.82rem;
}

.hero-visual {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transform: none;
}

section { padding: clamp(2.5rem, 5.2vw, 3.5rem) 0; }

#tasks {
  background: #fffbf7;
  --solution-card-thumb: clamp(128px, 17vw, 164px);
}

section#tasks .section-title {
  color: #1E1C41;
}

.section-title {
  margin: 0 0 0.38rem;
  color: #fff;
  font-size: clamp(1.32rem, 2.1vw, 1.9rem);
  letter-spacing: -0.01em;
}

.section-sub {
  margin: 0 0 1.25rem;
  color: rgba(244, 247, 255, 0.78);
  font-size: 0.92rem;
  max-width: 66ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 0.95rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 48%),
    var(--panel);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.card--immersive {
  padding: 0.95rem 0 0;
  overflow: hidden;
}

.card--immersive .card-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}

.card-immersive__lead {
  position: relative;
  line-height: 0;
  flex-shrink: 0;
}

.card-immersive__lead img {
  display: block;
  width: 100%;
  height: var(--solution-card-thumb);
  min-height: var(--solution-card-thumb);
  object-fit: cover;
  object-position: center center;
}

.card-immersive__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(33, 31, 74, 0.18) 32%,
    rgba(33, 31, 74, 0.72) 68%,
    var(--panel) 100%
  );
  pointer-events: none;
}

.card-immersive__body {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 0.85rem 0.95rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-height: 0;
}

.card-footer {
  margin-top: auto;
  padding-top: 0.6rem;
}

.card-btn-meer-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  color: var(--cta-pill-text);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.35rem;
  text-decoration: none;
  align-self: flex-start;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--cta-pill-shadow);
}

.card-btn-meer-info:hover {
  transform: translateY(-1px);
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
}

.card-btn-meer-info:focus-visible {
  outline: none;
  border-radius: 999px;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow);
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 59, 78, 0.62);
  box-shadow: 0 14px 30px rgba(4, 7, 15, 0.4), inset 0 0 16px rgba(228, 59, 78, 0.12);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(228, 59, 78, 0.62);
  color: var(--teal);
  background: rgba(228, 59, 78, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 0.58rem;
}

.icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-visual {
  margin: 0 0 0.85rem;
  line-height: 0;
  min-height: var(--solution-card-thumb);
  display: flex;
  align-items: center;
}

.card-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(var(--solution-card-thumb) - 6px);
  object-fit: contain;
  object-position: left center;
}

/* Donkere logo’s (bv. zwarte woorddelen): lichte plaque — vol breedte kaartinhoud, logo gecentreerd */
.card-visual--logo-plaque {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.38rem 0.72rem;
  border-radius: 12px;
  background: linear-gradient(165deg, #fffcfb 0%, #f3f1fa 55%, #ebe8f4 100%);
  border: 1px solid rgba(228, 59, 78, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 1px 8px rgba(4, 7, 15, 0.12);
}

.card-visual--logo-plaque img {
  max-height: calc(var(--solution-card-thumb) - 28px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.card h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.98rem;
}

.card h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: rgba(244, 247, 255, 0.76);
  font-size: 0.88rem;
}

.card p + p {
  margin-top: 0.5rem;
}

section[id],
article[id].voor-wie__card,
article[id].why-geo__card,
article[id].card {
  scroll-margin-top: 5.5rem;
}

/* —— Waarom Mijn Perceel —— */
.why-mp {
  padding: clamp(2.5rem, 5vw, 3rem) 0 clamp(2.65rem, 5vw, 3.75rem);
  background: #1E1C41;
}

.why-mp__title {
  margin: 0 0 clamp(2.25rem, 4vw, 2.85rem);
  text-align: left;
  font-size: clamp(1.55rem, 3.75vw, 2.14rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.why-mp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4.5vw, 3rem);
  align-items: start;
}

.why-mp__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.45rem, 2.5vw, 1.85rem);
}

.why-mp__feature {
  display: flex;
  align-items: center;
  gap: clamp(1.05rem, 2vw, 1.35rem);
}

.why-mp__icon-slot {
  flex-shrink: 0;
  width: clamp(64px, 5vw + 36px, 88px);
  height: clamp(64px, 5vw + 36px, 88px);
  display: grid;
  place-items: center;
}

.why-mp__icon-slot img {
  width: 100%;
  height: 100%;
  max-width: 88px;
  max-height: 88px;
  object-fit: contain;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.why-mp__text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.75vw + 0.35rem, 1.28rem);
  line-height: 1.42;
  color: #fff;
}

/* Losse illustratie geen kaart-frame */
.why-mp__media {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.why-mp__media img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* —— 20+ nuttige koppelingen (lichte strook zoals bijlage) —— */
.koppelingen {
  --kop-gap: clamp(1.75rem, 4vw, 2.85rem);
  padding: clamp(2.5rem, 4.8vw, 3.35rem) 0;
  background: #fcf8f4;
  color: #1e1c41;
}

.koppelingen a:focus-visible {
  border-radius: 4px;
}

/* Rij 1: copy | afbeelding — rij 2: één lijn bekijk alle | partner (zelfde baseline) */
.koppelingen-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  column-gap: var(--kop-gap);
  row-gap: 1.35rem;
  align-items: start;
}

.koppelingen-copy {
  min-height: 0;
}

.koppelingen-footer-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  column-gap: var(--kop-gap);
  align-items: center;
}

.koppelingen-footer-rail > p {
  margin: 0;
  line-height: 1.35;
}

.koppelingen-heading {
  margin: 0 0 0.95rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #1e1c41;
}

.koppelingen-intro {
  margin: 0 0 1.15rem;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.55;
  color: rgba(30, 28, 65, 0.88);
  max-width: 58ch;
}

.koppelingen-links-box {
  background: #fff;
  border: 1px solid rgba(30, 28, 65, 0.12);
  border-radius: 12px;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.koppelingen-links-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3.5vw, 2.05rem);
}

.koppelingen-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.koppelingen-list a {
  color: #1e1c41;
  font-weight: 500;
  font-size: clamp(0.84rem, 1.05vw, 0.93rem);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.koppelingen-list a:hover {
  color: #c43348;
}

.koppelingen-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cta-pill-text) !important;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  box-shadow: var(--cta-pill-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.koppelingen-all:hover {
  color: var(--cta-pill-text) !important;
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
  transform: translateY(-1px);
}

.koppelingen-all:focus-visible {
  outline: none;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow);
}

.koppelingen-visual {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.koppelingen-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Onderaan de rij plaatsen (= geen groot gat onder het logo-linksblok bij een lagere rechterskolom). */
.koppelingen-aside {
  min-height: 0;
  align-self: end;
  justify-self: stretch;
}

.koppelingen-partner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
  margin: 0;
  line-height: 1.35;
}

.koppelingen-partner-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #5c5a6f;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.koppelingen-partner-logo {
  display: inline-block;
  height: clamp(22px, 2.8vw, 28px);
  width: auto;
  vertical-align: middle;
}

/* —— Homepage: onze klanten —— */
.home-clients {
  padding: clamp(2.25rem, 4.2vw, 3rem) 0;
  background: #fff;
  border-top: 1px solid rgba(30, 28, 65, 0.08);
}

.home-clients__header {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.home-clients__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.32rem, 2.4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: #1e1c41;
}

.home-clients__intro {
  margin: 0;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.55;
  color: #5c5a6f;
}

.home-clients__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.8vw, 2rem) clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: center;
  justify-items: center;
}

.home-clients__item {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-clients__link,
.home-clients__logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.home-clients__link:hover {
  opacity: 0.78;
}

.home-clients__link:focus-visible {
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(228, 59, 78, 0.28);
}

.home-clients__link img,
.home-clients__logo-slot img {
  display: block;
  max-width: min(100%, 9.5rem);
  max-height: 2.85rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-clients__favicon {
  max-height: 2.35rem !important;
}

/* Fenixco levert wit logo op donkere ondergrond — invert voor lichte sectie. */
.home-clients__item--fenixco img {
  filter: invert(1);
  max-height: 2.35rem;
}

.home-clients__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  color: #1e1c41;
}

@media (max-width: 1200px) {
  .home-clients__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-clients__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-clients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Voor wie is Mijn Perceel bedoeld —— */
.voor-wie {
  padding: clamp(2.5rem, 4.8vw, 3.15rem) 0;
  background: #fffbf7;
}

.voor-wie__title {
  margin: 0 0 1.35rem;
  font-size: clamp(1.32rem, 2.4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: #1e1c41;
  text-align: left;
}

.voor-wie__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.9rem, 2.1vw, 1.38rem);
  align-items: start;
}

.voor-wie__card {
  text-align: center;
  min-width: 0;
}

@media (max-width: 980px) {
  .voor-wie__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .voor-wie__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.voor-wie__thumb {
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(30, 28, 65, 0.06);
  box-shadow: 0 8px 26px rgba(4, 7, 15, 0.1);
}

.voor-wie__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voor-wie__label {
  margin: 0.65rem 0 0;
  font-size: clamp(0.8rem, 1.15vw, 0.9rem);
  font-weight: 600;
  line-height: 1.3;
  color: #1e1c41;
}

a.voor-wie__card-hit {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-footer {
  --footer-bg: #0a0535;
  --footer-accent: #E43B4E;
  background: var(--footer-bg);
  color: rgba(255, 251, 247, 0.9);
  border-radius: 0 0 var(--frame-radius) var(--frame-radius);
  padding: clamp(2.65rem, 5.5vw, 3.85rem) 0 clamp(2.15rem, 3.8vw, 2.85rem);
  margin-top: 0;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1.02fr 1.05fr;
  gap: clamp(1.75rem, 3.8vw, 3rem);
  align-items: start;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 220px);
  max-height: 52px;
  object-fit: contain;
}

.site-footer-brand a {
  text-decoration: none;
  align-self: flex-start;
}

.site-footer-brand a:focus-visible {
  border-radius: 8px;
}

.site-footer-tag {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  color: rgba(255, 251, 247, 0.74);
  max-width: 32ch;
}

.site-footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--footer-accent);
  letter-spacing: -0.01em;
  text-transform: none;
}

.site-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
}

.site-footer-nav a:hover {
  color: rgba(228, 59, 78, 0.95);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.site-footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.92rem;
}

.site-footer-contact li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.86rem;
  line-height: 1.42;
  color: rgba(255, 251, 247, 0.9);
}

.site-footer-contact a {
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
}

.site-footer-contact a:hover {
  color: rgba(228, 59, 78, 0.98);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.site-footer-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--footer-accent);
}

.site-footer-news p {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.52;
  color: rgba(255, 251, 247, 0.76);
  max-width: 36ch;
}

.site-footer-news h3 {
  margin: 0 0 0.65rem;
}

.newsletter-form {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  max-width: 100%;
  margin-bottom: 1.35rem;
}

.newsletter-form label {
  flex: 1;
  min-width: 0;
}

.site-footer .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 251, 247, 0.35);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  padding: 0.45rem 0 0.5rem;
  box-sizing: border-box;
}

.newsletter-form input::placeholder {
  color: rgba(255, 251, 247, 0.45);
}

.newsletter-form input:focus-visible {
  outline: none;
  border-bottom-color: var(--footer-accent);
  box-shadow: none;
}

.newsletter-send {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--footer-accent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.newsletter-send:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.newsletter-send:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-footer-li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer-li a {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer-li a:hover {
  color: rgba(228, 59, 78, 0.98);
}

.li-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--footer-accent);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.li-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-mp__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .koppelingen-layout {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.75rem;
  }

  .koppelingen-footer-rail {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.65rem;
  }

  .koppelingen-links-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container { padding-inline: clamp(1rem, 5vw, 1.5rem); }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 2.65rem 0 2.25rem; }
  .hero-media {
    transform: translateX(0);
  }
  .hero-media::after { display: none; }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* === Detail / product pages (from geografische-opzoekingen.html) === */
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 4.35rem) 0 clamp(2.85rem, 5vw, 3.5rem);
  background-image:
    linear-gradient(100deg, rgba(15, 14, 38, 0.58) 0%, rgba(15, 14, 38, 0.42) 42%, rgba(15, 14, 38, 0.32) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.detail-hero-grid > div:first-child {
  min-width: 0;
}

/* Zelfde hero-hoogte op desktop op alle detailpagina’s. */
@media (min-width: 981px) {
  .detail-hero {
    min-height: clamp(380px, 42vw, 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .detail-hero .detail-hero-grid {
    align-items: center;
    width: 100%;
  }

  /* Pagina’s met enkel titel + lead (geen tweede kolom / geen detail-hero-grid). */
  .detail-hero > .container:not(.detail-hero-grid) {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
}

.detail-hero--notaris .detail-hero-visual {
  display: none !important;
}

.detail-hero h1 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.65rem, 2.65vw, 2.72rem);
  line-height: 1.2;
  letter-spacing: -0.021em;
}

.detail-lead {
  margin: 0;
  max-width: min(64ch, 100%);
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.detail-hero-actions {
  margin-top: 1.42rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.detail-hero-visual {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.detail-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Kleinere hero-visual met afgeronde hoeken (Notariaat e.a.) */
.detail-hero-visual--rounded {
  margin: 0;
  justify-self: end;
  align-self: center;
  max-width: min(225px, 28.5vw);
}

.detail-hero-visual--rounded img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
  height: auto;
}

section { padding: clamp(2.5rem, 5.2vw, 3.5rem) 0; }

.band-cream {
  background: #fffbf7;
  color: var(--deep);
}

.band-cream h2,
.band-cream h3 {
  color: var(--deep);
}

.band-cream p {
  color: rgba(30, 28, 65, 0.88);
}

.section-head {
  margin: 0 0 1.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.werkwijze-intro {
  margin: 0 0 1.55rem;
  max-width: 62ch;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.55;
  color: rgba(30, 28, 65, 0.88);
}

.band-cream .werkwijze-intro {
  margin-bottom: 0.55rem;
}

.acq-differentiators__header {
  text-align: center;
  max-width: min(72ch, 920px);
  margin: 0 auto clamp(1.65rem, 4vw, 2.35rem);
}

.acq-differentiators__header .section-head {
  text-align: center;
}

.acq-differentiators__header .werkwijze-intro {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.pill-card {
  border-radius: 14px;
  border: 1px solid rgba(30, 28, 65, 0.1);
  background: #fff;
  padding: 1.28rem 1.15rem;
  box-shadow: 0 6px 24px rgba(30, 28, 65, 0.06);
}

.pill-card h3 {
  margin: 0 0 0.52rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
}

.pill-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pill-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-notaris .why-geo__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Pagina projectontwikkelaars: standaard 3 kolommen (iconenkaarten) */
.why-proj .why-geo__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Zelfde beeldkaarten als acquisitietool — vier kolommen desktop */
.why-proj.why-proj--audience-grid .why-geo__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-proj__after-cards {
  max-width: min(72ch, 920px);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.why-geo__outro {
  margin: 0 0 0.85rem;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.why-geo__outro:last-child {
  margin-bottom: 0;
}

.benefit-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem clamp(1rem, 3vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 920px;
}

.benefit-checklist li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(30, 28, 65, 0.88);
}

.benefit-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
}

.benefit-checklist + .section-cta {
  margin: clamp(1.35rem, 3vw, 1.85rem) 0 0;
}

.section-cta .btn-glow {
  text-decoration: none;
}

.why-geo {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 4rem) 0 clamp(3rem, 5vw, 4.25rem);
  background:
    radial-gradient(ellipse 80% 55% at 100% 35%, rgba(120, 160, 255, 0.12), transparent 55%),
    #08082a;
  color: #fff;
  /* Los van ancestor met backdrop-filter: scherpere compositing voor foto-rasters (Chromium). */
  isolation: isolate;
}

.why-geo__waves {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 560px);
  max-height: 85%;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}

.why-geo__waves svg {
  display: block;
  width: 100%;
  height: auto;
}

.why-geo__container {
  position: relative;
  z-index: 1;
}

.why-geo__header {
  text-align: center;
  max-width: min(72ch, 920px);
  margin: 0 auto clamp(2.55rem, 5vw, 3.5rem);
}

.why-geo__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.why-geo__intro {
  margin: 0;
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.why-geo__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.5vw, 2.35rem);
  align-items: start;
}

.why-geo__card {
  text-align: left;
}

.why-geo__icon-slot {
  width: clamp(52px, 4.5vw + 28px, 72px);
  height: clamp(52px, 4.5vw + 28px, 72px);
  margin: 0 0 1rem;
  display: grid;
  place-items: center;
}

.why-geo__icon-slot img {
  width: 100%;
  height: 100%;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.why-geo__card-title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
}

.why-geo__card-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.82);
}

/* Audience-kaarten: titels uit het midden boven foto (los van section-kop hierboven). */
.why-geo__card.why-geo__card--audience {
  text-align: center;
}

.why-geo__card--audience .why-geo__card-title {
  margin: 0 0 0.85rem;
  /* Smallere kop: lange titels passen op 1 regel in 4 kolommen (foto’s gelijk uitlijnd). */
  font-size: clamp(0.71rem, 0.52rem + 0.62vw, 0.845rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
}

.why-geo__card--audience .why-geo__card-text--under-thumb {
  margin: 0.75rem 0 0;
  text-align: center;
  width: 100%;
}

.why-geo__thumb {
  margin: 0;
  border-radius: clamp(14px, 2.5vw, 22px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.07);
  contain: paint;
  transform: translate3d(0, 0, 0);
  /* Één harde schaduw i.p.v. inset+drop: minder stacking met backdrop-blur elders. */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.why-geo__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: clamp(2.1rem, 4.5vw, 3.5rem) 0;
  border-bottom: none;
}

.step-row:first-child {
  padding-top: 0;
}

.step-row:last-child {
  padding-bottom: 0;
}

/* Zigzag: oneven = afbeelding links, even = afbeelding rechts */
.step-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.step-row:nth-child(even) .step-row__body {
  order: 1;
}

.step-row:nth-child(even) .step-row__media {
  order: 2;
  justify-self: end;
}

.step-row:nth-child(odd) .step-row__media {
  justify-self: start;
}

.step-row__media {
  margin: 0;
  padding: clamp(0.65rem, 1.4vw, 1rem);
  border-radius: clamp(22px, 3.5vw, 40px);
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(30, 28, 65, 0.12);
  box-shadow: 0 10px 36px rgba(30, 28, 65, 0.07);
  line-height: 0;
  width: 100%;
  max-width: min(100%, clamp(225px, 31.5vw, 390px));
  min-width: 0;
}

.step-row__media-inner {
  position: relative;
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(30, 28, 65, 0.1);
  background: #f3f4f8;
  line-height: 0;
  aspect-ratio: 8 / 5;
  width: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
}

.step-row__media-trigger {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(4px, 0.9vw, 8px);
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: inherit;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-row__media-trigger:focus-visible {
  outline: 2px solid #e43b4e;
  outline-offset: 3px;
}

.step-row__media-trigger:hover {
  box-shadow: inset 0 0 0 9999px rgba(30, 28, 65, 0.035);
}

.step-row__media-trigger:active {
  transform: scale(0.996);
}

.step-row__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

/* lightbox (stappenscreenshots) */
.step-lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.step-lightbox::backdrop {
  background: transparent;
}

.step-lightbox__panel {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
  background: rgba(12, 14, 28, 0.85);
  backdrop-filter: blur(6px);
}

.step-lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
}

.step-lightbox__close {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.step-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.step-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.step-lightbox__img {
  display: block;
  max-width: min(92vw, 1120px);
  max-height: min(82vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.step-lightbox__hint {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.step-row__body {
  min-width: 0;
  padding: 0.35rem 0 0.5rem;
  max-width: min(100%, 52ch);
  border: none;
  background: transparent;
}

.step-row__body h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--deep);
}

.step-row__body p {
  margin: 0;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(30, 28, 65, 0.58);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.compare-col {
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-col--before {
  background: rgba(33, 31, 74, 0.35);
}

.compare-col--after {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(52, 211, 153, 0.1),
    0 0 28px rgba(52, 211, 153, 0.18);
}

.compare-label {
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 255, 0.55);
}

.compare-col--after .compare-label { color: rgba(209, 250, 229, 0.92); }

.compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.compare li {
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(244, 247, 255, 0.84);
  padding-left: 1.1rem;
  position: relative;
}

.compare-col--before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(244, 247, 255, 0.35);
}

.compare-col--after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(110, 231, 183, 0.98);
  font-size: 0.75rem;
  font-weight: 800;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stat-item {
  border-radius: 14px;
  border: 1px solid rgba(30, 28, 65, 0.08);
  background: rgba(255, 255, 255, 0.75);
  padding: 1.15rem 0.85rem;
}

.stat-item strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 0.2rem;
}

.stat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(30, 28, 65, 0.55);
  text-transform: lowercase;
}

.cta-bar {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(228, 59, 78, 0.55);
  background:
    radial-gradient(circle at 8% 10%, rgba(228, 59, 78, 0.14), transparent 35%),
    linear-gradient(150deg, #1b1940 0%, #201e4a 100%);
  padding: clamp(1.65rem, 3.6vw, 2.22rem);
}

.cta-bar .container-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-bar h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.cta-bar p {
  margin: 0;
  color: rgba(244, 247, 255, 0.77);
  max-width: 48ch;
  font-size: 0.9rem;
}

section[id], .detail-hero { scroll-margin-top: 5.5rem; }

@media (max-width: 1024px) {
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pill-grid { grid-template-columns: 1fr; }
  .pill-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-notaris .why-geo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-proj .why-geo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-proj.why-proj--audience-grid .why-geo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-geo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-geo__waves {
    opacity: 0.28;
    width: min(64%, 420px);
  }
  .step-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .step-row__media {
    justify-self: center;
    max-width: min(100%, clamp(210px, 64.5vw, 360px));
  }
  .step-row:nth-child(even) .step-row__media {
    justify-self: center;
  }
  .detail-hero-grid { grid-template-columns: 1fr; }
  .detail-hero--demo .detail-hero-visual,
  .detail-hero--over .detail-hero-visual {
    justify-self: center;
  }
  .detail-hero-visual--rounded {
    justify-self: center;
    max-width: min(195px, 54vw);
    margin-top: 0.35rem;
  }
}

@media (max-width: 760px) {
  .container { padding-inline: clamp(1rem, 5vw, 1.5rem); }
  .detail-hero { padding: 2.65rem 0 2.25rem; }
  .why-geo__grid {
    grid-template-columns: 1fr;
  }
  .benefit-checklist {
    grid-template-columns: 1fr;
  }
  .pill-grid--four {
    grid-template-columns: 1fr;
  }
  .compare { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .cta-bar .container-inner { flex-direction: column; align-items: stretch; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .over-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

/* === Contact === */
.detail-hero--contact h1 {
  max-width: 22ch;
}

.detail-hero--contact .detail-hero-visual {
  justify-self: end;
}

.detail-hero--contact .detail-hero-visual img {
  width: auto;
  max-width: min(300px, 90vw);
  margin-inline: auto;
  height: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  grid-template-areas:
    "heading heading"
    "form aside";
  column-gap: clamp(1.75rem, 4vw, 3rem);
  row-gap: 1.25rem;
  align-items: start;
}

.contact-form-heading {
  grid-area: heading;
  margin: 0;
  font-size: clamp(1.25rem, 2.35vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1E1C41;
}

.contact-form-wrap {
  grid-area: form;
}

.mp-form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mp-turnstile-wrap {
  margin: 0 0 1.25rem;
  min-height: 65px;
}

.contact-form-notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-notice--success {
  color: #0f3d24;
  background: rgba(34, 150, 90, 0.12);
  border: 1px solid rgba(34, 150, 90, 0.35);
}

.contact-form-notice--error {
  color: #5c1219;
  background: rgba(228, 59, 78, 0.1);
  border: 1px solid rgba(228, 59, 78, 0.35);
}

.contact-aside {
  grid-area: aside;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 28, 65, 0.1);
  background: #fff;
  padding: 1.25rem 1.15rem;
  box-shadow: 0 8px 28px rgba(30, 28, 65, 0.06);
}

.contact-field {
  margin-bottom: 1.05rem;
}

.contact-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E1C41;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field input[type="tel"],
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(30, 28, 65, 0.18);
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  color: #1E1C41;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: rgba(228, 59, 78, 0.65);
  box-shadow: 0 0 0 2px rgba(228, 59, 78, 0.15);
}

.contact-field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-radios {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.contact-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1E1C41;
  cursor: pointer;
}

.contact-radio input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.contact-submit-wrap {
  margin-top: 1.25rem;
}

.contact-submit {
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  color: var(--cta-pill-text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--cta-pill-shadow);
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
}

.contact-submit:focus-visible {
  outline: none;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow);
}

.contact-aside address {
  font-style: normal;
}

.contact-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.92rem;
}

.contact-aside li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.42;
  color: #1E1C41;
}

.contact-aside a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.contact-aside a:hover {
  color: rgba(228, 59, 78, 0.95);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-icon--linkedin {
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  padding: 4px;
  box-sizing: border-box;
}

.contact-li {
  align-items: center;
}

.contact-partner {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E1C41;
}

.contact-partner__fexpro {
  display: inline-block;
  height: 1.42em;
  width: auto;
  vertical-align: -0.22em;
  margin-left: 0.1em;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "form"
      "aside";
  }
}

@media (min-width: 901px) {
  .contact-aside {
    margin-top: calc(0.35rem + 1.35 * 0.9rem);
  }
}

/* === Demo === */
.detail-hero--demo h1 {
  max-width: min(38ch, 100%);
}

.detail-hero--demo .detail-hero-visual {
  justify-self: end;
}

.detail-hero--demo .detail-hero-visual img {
  width: auto;
  max-width: min(300px, 90vw);
  margin-inline: auto;
  height: auto;
}

.band-cream .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* === Over ons === */
.detail-hero--over h1 {
  max-width: 22ch;
}

/* Overrides globale width:100%; gewenste vaste breedte mogelijk zonder Photoshop */
.detail-hero--over .detail-hero-visual {
  justify-self: end;
}

.detail-hero--over .detail-hero-visual img {
  width: auto;
  max-width: min(300px, 90vw);
  margin-inline: auto;
  height: auto;
}

.band-cream h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.35vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1E1C41;
}

.band-cream p {
  margin: 0;
  color: #1E1C41;
}

.over-panel {
  border-bottom: 1px solid rgba(30, 28, 65, 0.1);
  padding-bottom: clamp(2.35rem, 5vw, 3.35rem);
  margin-bottom: clamp(2.35rem, 5vw, 3.35rem);
}

.over-panel:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Laatste paneel: standaard geen onderruimte i.v.m. CTA; hier bewust extra marge */
.over-panel.over-panel--space-before-cta:last-of-type {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.25rem, 2.75vw, 2.25rem);
}

.over-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.over-row:first-child {
  margin-top: 0;
}

.over-row__figure {
  margin: 0;
  justify-self: center;
  width: min(300px, 100%);
  padding: clamp(10px, 1.8vw, 14px);
  border-radius: clamp(22px, 5vw, 28px);
  overflow: hidden;
  border: none;
  line-height: 0;
  background: #fff;
  box-shadow:
    0 2px 0 rgba(30, 28, 65, 0.06),
    0 16px 44px rgba(30, 28, 65, 0.1);
}

.over-row__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: clamp(14px, 3.5vw, 18px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(30, 28, 65, 0.14);
  box-sizing: border-box;
}

/* Kleinere afbeelding binnen hetzelfde witte kader */
.over-row__figure--scaled img {
  width: 72%;
  max-width: 216px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.over-row__text p {
  font-size: clamp(0.92rem, 1.2vw, 1.03rem);
  line-height: 1.72;
  color: #1E1C41;
}

.over-row__text p + p {
  margin-top: 0.9rem;
}

.cta-bar {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(228, 59, 78, 0.55);
  background:
    radial-gradient(circle at 8% 10%, rgba(228, 59, 78, 0.14), transparent 35%),
    linear-gradient(150deg, #1b1940 0%, #201e4a 100%);
  padding: clamp(1.65rem, 3.6vw, 2.22rem);
}

.cta-bar .container-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-bar h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.cta-bar p {
  margin: 0;
  color: rgba(244, 247, 255, 0.77);
  max-width: 48ch;
  font-size: 0.9rem;
}

/* === Sitemap (standalone layout) === */
:root {
  --deep: #1E1C41;
  --accent: #E43B4E;
  --cream: #fffbf7;
  --focus: 0 0 0 3px rgba(228, 59, 78, 0.35);
  --radius: 16px;
  --frame-radius: 18px;
  --cta-pill-bg: #f04e5a;
  --cta-pill-bg-hover: #e94755;
  --cta-pill-text: #fff;
  --cta-pill-border: rgba(240, 78, 90, 0.98);
  --cta-pill-shadow: 0 4px 20px rgba(240, 78, 90, 0.4);
  --cta-pill-shadow-hover: 0 6px 26px rgba(240, 78, 90, 0.48);
  --cta-pill-focus: 0 0 0 3px rgba(240, 78, 90, 0.45);
  --page-gutter: clamp(1.35rem, 4vw, 2.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #f4f7ff;
  background: #fffbf7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 6px;
}

main.container {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  padding-bottom: 2rem;
  box-sizing: border-box;
}

/* Alleen intern sitemap-overzicht: geen globale main-padding (die gaf een strook app-frame-kleur boven .site-footer op alle pagina's). */
body.page-template-template-internal-sitemap-php main.container {
  padding-top: 1.6rem;
}

/* Alleen intern sitemap-overzicht: smalle preview-kaart (niet op de rest van de site). */
body.page-template-template-internal-sitemap-php .app-frame {
  width: min(940px, calc(100% - 1.2rem));
  margin: 14px auto;
  border-radius: var(--frame-radius);
  border: 1px solid rgba(228, 59, 78, 0.32);
  background: rgba(20, 18, 48, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(228, 59, 78, 0.12),
    0 0 30px rgba(228, 59, 78, 0.16),
    0 18px 40px rgba(4, 7, 15, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 251, 247, 0.95);
  border-bottom: 1px solid rgba(30, 28, 65, 0.16);
  border-top-left-radius: var(--frame-radius);
  border-top-right-radius: var(--frame-radius);
}

.top-bar a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.top-bar a:hover {
  background: rgba(228, 59, 78, 0.08);
  border-color: rgba(228, 59, 78, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img { display: block; height: clamp(36px, 2.35vw, 42px); width: auto; }

h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.intro {
  margin: 0 0 1.5rem;
  color: rgba(244, 247, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.82rem;
  color: rgba(244, 247, 255, 0.65);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(33, 31, 74, 0.35);
  font-weight: 600;
}

.pill--live {
  border-color: rgba(80, 200, 120, 0.45);
  background: rgba(80, 200, 120, 0.12);
  color: #b8ecc8;
}

.pill--temp {
  border-color: rgba(255, 200, 120, 0.45);
  background: rgba(255, 200, 120, 0.1);
  color: #ffe4b8;
}

.pill--soon {
  border-color: rgba(244, 247, 255, 0.2);
  color: rgba(244, 247, 255, 0.55);
}

section.block {
  margin-bottom: 1.75rem;
}

.block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(228, 59, 78, 0.35);
  display: inline-block;
}

.block p.hint {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(244, 247, 255, 0.55);
}

ul.sitemap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

ul.sitemap li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(33, 31, 74, 0.35);
  padding: 0.65rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: center;
}

@media (max-width: 560px) {
  ul.sitemap li { grid-template-columns: 1fr; }
}

.link-main {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.link-main > a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-main > a:hover {
  color: rgba(255, 200, 210, 0.98);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

span.future-url {
  font-size: 0.77rem;
  font-weight: 500;
  color: rgba(244, 247, 255, 0.45);
  font-family: ui-monospace, monospace;
}

span.note {
  font-size: 0.78rem;
  color: rgba(244, 247, 255, 0.55);
  line-height: 1.35;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.48rem;
  border-radius: 6px;
}

.tag-live { background: rgba(80, 200, 120, 0.2); color: #c3f5d4; }

.tag-temp {
  background: rgba(255, 200, 120, 0.15);
  color: #ffe0b8;
}

.tag-soon {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 247, 255, 0.5);
}

.cream {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--deep);
  border: 1px solid rgba(30, 28, 65, 0.1);
}

.cream h3 {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--deep);
}

.cream p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(30, 28, 65, 0.85);
}

/* Geen site-footer: die heeft eigen layout; deze regel is voor kleine footers (o.a. intern sitemap). */
footer:not(.site-footer) {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(244, 247, 255, 0.45);
  text-align: center;
}

/* === Legal stubs === */
.mp-simple-page { padding: clamp(2.5rem, 5vw, 3.5rem) 0 min(640px, 100% - 2.5rem); margin: 0 auto; width: min(640px, calc(100% - 2.5rem)); color: #1e1c41; font-family: inherit; line-height: 1.55; }
.mp-simple-page h1 { margin: 0 0 0.75rem; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; color: #1e1c41; }
.mp-simple-page p { margin: 0; color: rgba(30, 28, 65, 0.88); }

/* === Pagina Bronnen (koppelingen-overzicht) — layout als mijnperceel.be/bronnen/ === */
.koppelingen-page {
  padding: clamp(2.5rem, 4.8vw, 3.35rem) 0 clamp(2.25rem, 4vw, 3rem);
  background: #fdfaf5;
  color: #1e1c41;
}

.koppelingen-page a:focus-visible {
  border-radius: 4px;
}

.koppelingen-page-heading {
  margin: 0 0 0.95rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: #1a1a3a;
}

.koppelingen-page-intro {
  margin: 0 0 clamp(1.35rem, 2.5vw, 1.75rem);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.55;
  color: rgba(26, 26, 58, 0.88);
  max-width: 62ch;
}

.bron-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .bron-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .bron-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bron-grid {
    grid-template-columns: 1fr;
  }
}

.bron-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin: 0;
  padding: 24px;
  border-radius: 20px;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(26, 26, 58, 0.07);
  text-decoration: none;
  color: #1a1a3a;
  font-weight: 700;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.22;
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease, opacity 0.2s ease;
}

.bron-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 26, 58, 0.12);
}

.bron-tile:active {
  transform: translateY(-1px);
  opacity: 0.96;
}

.bron-tile:focus-visible {
  outline: 3px solid rgba(240, 78, 90, 0.45);
  outline-offset: 3px;
}

.bron-tile__icon {
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bron-tile__icon img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(96px, 11.5vw, 140px);
  object-fit: contain;
  object-position: left center;
}

.bron-tile__text {
  flex: 1 1 auto;
  text-align: left;
}

.bronnen-partner-row {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(30, 28, 65, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
}

.bronnen-partner-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #5c5a6f;
}

.bronnen-partner-logo {
  height: clamp(22px, 2.8vw, 28px);
  width: auto;
  vertical-align: middle;
}

/* Vacatures */
.vacatures-body {
  max-width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.7;
  color: rgba(30, 28, 65, 0.88);
}

.vacatures-body p {
  margin: 0;
}

.vacatures-body p + p {
  margin-top: 0.85rem;
}

.vacatures-cta {
  margin-top: 1.65rem;
}

.vacatures-cta .btn-glow {
  text-decoration: none;
  color: var(--cta-pill-text) !important;
}

.vacatures-cta .btn-glow:hover {
  color: var(--cta-pill-text) !important;
}

.vacatures-cta .btn-glow:focus-visible {
  color: var(--cta-pill-text) !important;
}

.band-compare-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 75% 60% at 50% 15%, rgba(90, 120, 220, 0.09), transparent 52%),
    #06061c;
  color: #fff;
  padding: clamp(2.75rem, 5.2vw, 4rem) 0 clamp(3rem, 5.5vw, 4.35rem);
  margin: 0;
}

.band-compare-cta__waves {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58%, 620px);
  max-height: 90%;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.band-compare-cta__waves svg {
  display: block;
  width: 100%;
  height: auto;
}

.band-compare-cta > .container {
  position: relative;
  z-index: 1;
}

/* Over ons + Bronnen: interesse-strook = zelfde blauw als footer */
.band-compare-cta--over-ons,
.band-compare-cta--bronnen {
  background: #0a0535;
}

.band-compare-cta--over-ons .band-compare-cta__waves,
.band-compare-cta--bronnen .band-compare-cta__waves {
  opacity: 0.22;
}

/* Donkere strook-opmaak: lichtere cta-bar dan op detailpagina’s met paarse gradient */
.band-compare-cta .cta-bar {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  padding: clamp(1.5rem, 3.2vw, 2.1rem) clamp(1.25rem, 3vw, 2rem);
}

.band-compare-cta .cta-bar .container-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.band-compare-cta .cta-bar__copy {
  flex: 1 1 16rem;
  min-width: min(100%, 36ch);
}

.band-compare-cta .cta-bar__title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.45rem;
}

.band-compare-cta .cta-bar__copy .cta-bar__title-row:last-child {
  margin-bottom: 0;
}

.band-compare-cta .cta-bar__title-row h2 {
  margin: 0;
  font-size: clamp(1.12rem, 2.1vw, 1.48rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.band-compare-cta .cta-bar__icon {
  flex-shrink: 0;
  line-height: 0;
  display: block;
}

.band-compare-cta .cta-bar__icon img {
  width: auto;
  height: auto;
  max-width: min(72px, 14vw);
  max-height: min(72px, 14vw);
  object-fit: contain;
  display: block;
}

.band-compare-cta .btn-cta-solid {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cta-pill-border);
  background: var(--cta-pill-bg);
  color: var(--cta-pill-text) !important;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 2rem;
  white-space: nowrap;
  box-shadow: var(--cta-pill-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.band-compare-cta .btn-cta-solid:hover {
  transform: translateY(-2px);
  background: var(--cta-pill-bg-hover);
  border-color: var(--cta-pill-border);
  box-shadow: var(--cta-pill-shadow-hover);
}

.band-compare-cta .btn-cta-solid:focus-visible {
  outline: none;
  box-shadow: var(--cta-pill-focus), var(--cta-pill-shadow-hover);
}

@media (max-width: 760px) {
  .band-compare-cta .btn-cta-solid {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Compare-strook: footerblauw + witte kaarten; acq/geo/notaris/proj = groen / rood minteken; projectleads = groen / neutrale bolletjes */
:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) {
  background: #0a0535;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .band-compare-cta__waves {
  opacity: 0.22;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .band-compare-cta__header {
  text-align: center;
  max-width: min(64ch, 920px);
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .section-head--center {
  margin: 0 0 0.65rem;
  text-align: center;
  color: #fff;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .band-compare-cta__sub {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare {
  margin-bottom: 1.55rem;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col,
:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col--after,
:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col--before {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(30, 28, 65, 0.1);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col--after {
  border-color: rgba(30, 28, 65, 0.1);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-label {
  color: #E43B4E;
  letter-spacing: 0.12em;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare li {
  color: rgba(30, 28, 65, 0.88);
  padding-left: 1.65rem;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col--after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  background: #15985a;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(21, 152, 90, 0.38);
}

.band-compare-cta--leads .compare-col--before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(30, 28, 65, 0.4);
  box-shadow: none;
  font-size: 0;
  font-weight: 400;
  line-height: 0;
}

:is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--notaris, .band-compare-cta--proj) .compare-col--before li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.02rem;
  text-align: center;
  border-radius: 50%;
  background: #E43B4E;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(228, 59, 78, 0.35);
}

@media (max-width: 720px) {
  :is(.band-compare-cta--acq, .band-compare-cta--geo, .band-compare-cta--leads, .band-compare-cta--notaris, .band-compare-cta--proj) .compare {
    grid-template-columns: 1fr;
  }
}

/*
 * Geografische opzoekingen: vergelijking = witte kaarten, rode bol/minteken, groene vink.
 * Extra specifieke selectors zodat oudere .compare-regels (donkere kolommen) nooit doorblinken in WP.
 */
.band-compare-cta--geo .compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 1.55rem;
}

.band-compare-cta--geo .compare-col {
  border-radius: 18px;
  background: #fff;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18);
}

.band-compare-cta--geo .compare-col.compare-col--before {
  border: 1px solid rgba(30, 28, 65, 0.1);
}

.band-compare-cta--geo .compare-col.compare-col--after {
  border: 1px solid rgba(21, 152, 90, 0.55);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(21, 152, 90, 0.12);
}

.band-compare-cta--geo .compare-label {
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E43B4E;
}

.band-compare-cta--geo .compare-col--after .compare-label {
  color: #15985a;
}

.band-compare-cta--geo .compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.band-compare-cta--geo .compare li {
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(30, 28, 65, 0.88);
  padding-left: 1.65rem;
  position: relative;
}

.band-compare-cta--geo .compare-col--before li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.02rem;
  text-align: center;
  border-radius: 50%;
  background: #E43B4E;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(228, 59, 78, 0.35);
}

.band-compare-cta--geo .compare-col--after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  background: #15985a;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(21, 152, 90, 0.38);
}

@media (max-width: 720px) {
  .band-compare-cta--geo .compare {
    grid-template-columns: 1fr;
  }
}

/* Juridische pagina’s (vacatures / privacy / cookie) — zelfde blok als statische HTML */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.7;
}

.legal-wrap a {
  color: #c43348;
  font-weight: 600;
  text-decoration: none;
}

.legal-wrap a:hover {
  text-decoration: underline;
}

.legal-wrap h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1e1c41;
}

.legal-wrap h2:first-child {
  margin-top: 0;
}

.legal-wrap p {
  margin: 0;
  color: rgba(30, 28, 65, 0.88);
}

.legal-wrap p + p {
  margin-top: 0.85rem;
}

.legal-wrap ul,
.legal-wrap ol {
  margin: 0.65rem 0 0;
  padding-left: 1.35rem;
  color: rgba(30, 28, 65, 0.88);
}

.legal-wrap li {
  margin-bottom: 0.65rem;
}

.legal-wrap li strong {
  color: #1e1c41;
}

.legal-wrap ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.35rem;
}