@charset "utf-8";

/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --navy:        #243380;
  --navy-mid:    #1A1F6B;
  --navy-light:  #252B7A;
  --green:       #1D9E75;
  --green-dim:   rgba(29,158,117,0.12);
  --green-line:  rgba(29,158,117,0.35);
  --gold:        #C8A96E;
  --gold-dim:    rgba(200,169,110,0.12);
  --cream:       #F8F6F1;
  --warm-white:  #FDFCFA;
  --ink:         #1A1A1A;
  --ink-60:      rgba(26,26,26,0.6);
  --ink-30:      rgba(26,26,26,0.3);
  --ink-10:      rgba(26,26,26,0.07);
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Outfit', system-ui, sans-serif;

/* Typography Scales */
--fs-h1: clamp(2.5rem, 5vw, 4rem);
--fs-h2: clamp(1.875rem, 4vw, 3.25rem);
--fs-h3: clamp(1.375rem, 3vw, 2.125rem);s
--fs-h4: clamp(1.125rem, 2vw, 1.5rem);

--fs-p: clamp(0.9375rem, 1.2rem + 0.35vw, 1.0925rem);

--fs-xs: clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);      /* 11 → 12 */
--fs-sm: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);      /* 12 → 13 */
--fs-md: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);      /* 13 → 14 */
--fs-lg: clamp(0.875rem, 0.84rem + 0.25vw, 0.9375rem);     /* 14 → 15 */
--fs-xl: clamp(0.9375rem, 0.9rem + 0.3vw, 1rem);           /* 15 → 16 */
--fs-xxl: clamp(1rem, 0.96rem + 0.35vw, 1.0625rem);        /* 16 → 17 */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}


.mx_logged_in #main-nav {
    top: 55px !important;
}


/* ═══════════════════════════════════════════
   RICH TEXT — CMS-gegenereerde inhoud
   Van toepassing op elk element binnen een
   container met de klasse .rt of .rich-text
═══════════════════════════════════════════ */

.rt h1, .rich-text h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.rt h1:first-child, .rich-text h1:first-child { margin-top: 0; }
.rt h1 em, .rich-text h1 em { font-style: italic; color: var(--gold); }

.rt h2, .rich-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.rt h2:first-child, .rich-text h2:first-child { margin-top: 0; }
.rt h2 em, .rich-text h2 em { font-style: italic; color: var(--green); }

.rt h3, .rich-text h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}
.rt h3:first-child, .rich-text h3:first-child { margin-top: 0; }
.rt h3 em, .rich-text h3 em { font-style: italic; color: var(--green); }

.rt h4, .rich-text h4 {
  font-family: var(--font-ui);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.rt h4:first-child, .rich-text h4:first-child { margin-top: 0; }

.rt h5, .rich-text h5 {
  font-family: var(--font-ui);
  font-size: var(--fs-xxl);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  margin-top: 1.75rem;
}
.rt h5:first-child, .rich-text h5:first-child { margin-top: 0; }

.rt h6, .rich-text h6 {
  font-family: var(--font-ui);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--ink-60);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}
.rt h6:first-child, .rich-text h6:first-child { margin-top: 0; }

.rt p, .rich-text p {
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.rt p:last-child, .rich-text p:last-child { margin-bottom: 0; }

/* Ongeordende lijst */
.rt ul, .rich-text ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.rt ul li, .rich-text ul li {
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.75;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--ink-10);
  position: relative;
}
.rt ul li:first-child, .rich-text ul li:first-child {
  border-top: 1px solid var(--ink-10);
}
.rt ul li::before, .rich-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

/* Geordende lijst */
.rt ol, .rich-text ol {
  list-style: none;
  counter-reset: rt-counter;
  margin: 0 0 1.25rem;
  padding: 0;
}
.rt ol li, .rich-text ol li {
  counter-increment: rt-counter;
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.75;
  padding: 0.65rem 0 0.65rem 2.5rem;
  border-bottom: 1px solid var(--ink-10);
  position: relative;
}
.rt ol li:first-child, .rich-text ol li:first-child {
  border-top: 1px solid var(--ink-10);
}
.rt ol li::before, .rich-text ol li::before {
  content: counter(rt-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid var(--green-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}

/* Geneste lijsten */
.rt ul ul, .rich-text ul ul,
.rt ol ol, .rich-text ol ol,
.rt ul ol, .rich-text ul ol,
.rt ol ul, .rich-text ol ul {
  margin: 0.25rem 0 0.25rem 1.5rem;
  border-top: none;
  border-bottom: none;
}
.rt ul ul li, .rich-text ul ul li,
.rt ol ul li, .rich-text ol ul li {
  border-top: none;
  border-bottom: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: var(--fs-lg);
}
.rt ul ul li::before, .rich-text ul ul li::before {
  width: 4px;
  height: 4px;
  background: transparent;
  border: 1px solid var(--green);
}

/* Blockquote */
.rt blockquote, .rich-text blockquote {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem 2rem 2rem 2.75rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.rt blockquote::before, .rich-text blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--green);
  line-height: 0.7;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  opacity: 0.35;
}
.rt blockquote p, .rich-text blockquote p {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.rt blockquote cite, .rich-text blockquote cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}
.rt blockquote cite::before, .rich-text blockquote cite::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* Links */
.rt a, .rich-text a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green-line);
  transition: color 0.2s, border-color 0.2s;
}
.rt a:hover, .rich-text a:hover {
  color: #18876A;
  border-color: #18876A;
}

/* Vetgedrukt & cursief */
.rt strong, .rich-text strong {
  font-weight: 600;
  color: var(--ink);
}
.rt em, .rich-text em {
  font-style: italic;
  color: inherit;
}

/* Horizontale lijn */
.rt hr, .rich-text hr {
  border: none;
  border-top: 1px solid var(--ink-10);
  margin: 2.5rem 0;
}

/* Inline code */
.rt code, .rich-text code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  background: var(--ink-10);
  color: var(--navy);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Codeblok */
.rt pre, .rich-text pre {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 1.5rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: var(--fs-md);
  line-height: 1.7;
}
.rt pre code, .rich-text pre code {
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

/* Afbeelding */
.rt img, .rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 1.5rem 0;
}

/* Figuur + bijschrift */
.rt figure, .rich-text figure {
  margin: 2rem 0;
}
.rt figcaption, .rich-text figcaption {
  font-size: var(--fs-sm);
  color: var(--ink-30);
  font-style: italic;
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

/* Tabel */
.rt table, .rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-lg);
}
.rt th, .rich-text th {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--green-line);
}
.rt td, .rich-text td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ink-10);
  color: var(--ink-60);
  font-weight: 300;
  line-height: 1.6;
  vertical-align: top;
}
.rt tr:last-child td, .rich-text tr:last-child td { border-bottom: none; }
.rt tr:hover td, .rich-text tr:hover td { background: var(--cream); }


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: var(--fs-xxl); }

body {
  font-family: var(--font-ui);
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

p {font-size:var(--fs-p);}

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* LOGO SCROLLER */
/* Container wrap - aligns with your theme spacing */
#content-wrap2 {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--warm-white);
}

/* Heading style using your brand's display font and H3 scale */
.logoslider h3 {
      font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
	margin-bottom:-40px;
}

/* The outer scroller wrapper that hides overflow */
.logo-scroller-container {
    overflow: hidden;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Smooth gradient fades on the left and right edges */
.logo-scroller-container::before,
.logo-scroller-container::after {
    content: "";
    height: 100%;
    width: 120px;
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.logo-scroller-container::before {
    left: 0;
    background: linear-gradient(to right, var(--warm-white), transparent);
}
.logo-scroller-container::after {
    right: 0;
    background: linear-gradient(to left, var(--warm-white), transparent);
}

/* The moving track holding the elements */
.logo-scroller-track {
    display: flex;
    width: max-content;
    animation: scroll 58s linear infinite;
}

/* Pauses the slider movement smoothly on hover */
.logo-scroller-container:hover .logo-scroller-track {
    animation-play-state: paused;
}

/* Spacing for individual logo items */
.logo-scroller-item {
    padding: 40px 3.5rem; 
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* B&W by default using CSS filters, transitions with your custom ease curves */
.logo-scroller-item img {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(50%);
    transition: filter 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

/* On hover: Bring back full color and opacity */
.logo-scroller-item:hover img {
    filter: grayscale(0%) opacity(100%);
}

/* Infinite loop animation logic */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(29,158,117,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hovering  { width: 16px; height: 16px; background: var(--gold); }
.cursor-ring.hovering { width: 52px; height: 52px; border-color: rgba(200,169,110,0.35); }

@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 80px;
  background: rgba(253,252,250,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--ink-10);
  transition: box-shadow 0.4s;
}
nav.scrolled { box-shadow: 0 2px 40px rgba(26,26,26,0.08); }

.nav-logo-img { height: 72px; width: auto; display: block; }

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: var(--fs-lg); font-weight: 400;
  color: var(--ink-60); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }

.nav-cta {
  font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border: 1px solid var(--navy); padding: 9px 22px;
  border-radius: 2px; transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--navy); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 54px;
  cursor: none; background: none; border: none; padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 999;
  flex-direction: column; padding: 2.5rem 2rem;
  gap: 0; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px; font-family: var(--font-display);
  font-weight: 300; color: var(--navy); text-decoration: none;
  padding: 1.1rem 0; border-bottom: 1px solid var(--ink-10);
  letter-spacing: -0.01em; transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--green); }
.mobile-menu .mobile-cta {
  margin-top: 2rem; font-size: var(--fs-lg);
  font-family: var(--font-ui); font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--navy); color: var(--white) !important;
  padding: 14px 24px; border-radius: 2px; text-align: center;
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

/* FAQ SECTIE */
.faq * {
  box-sizing: border-box;
}
.faq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.faqwrapper {
  margin-bottom: 40px;
}
.faqlist {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  float: none;
}
.faqlist:nth-of-type(2n) {
  margin-right: 0;
}
.faqitem {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faqwrapper .faqlist:last-of-type .faqitem:last-child {
  margin-bottom: 0;
}
.faqitem:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(148, 193, 34, 0.15);
}
.faqitem:before {
  display: none;
}
a.faqheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
}
.faqheader p {
  margin-bottom: 0;
  font-size: 1.25rem !important;
  padding-right: 15px;
  flex-grow: 1;
  line-height: 1.4;
  margin-top: 0;
}
a.faqheader::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  color: #1D9E75;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 193, 34, 0.1);
  border-radius: 50%;
}
a.faqheader:hover::after {
  background: rgba(148, 193, 34, 0.2);
}

/* ✅ OPEN staat: icoon draait naar × */
a.faqheader.open::after {
  transform: rotate(45deg);
  color: #1D9E75;
}

/* ✅ SMOOTH ANIMATIE voor content */
.faqcontent {
  width: 100% !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.faqcontent.open {
  max-height: 1000px; /* Ruim genoeg voor lange antwoorden */
  opacity: 1;
  margin-top: 15px;
}

.faqcontent p {
  margin-bottom: 15px;
  font-size: 1.125rem;
  line-height: 1.7;
  padding: 0;
  color: #555;
}
.faqcontent p:last-child {
  margin-bottom: 0;
}
.faqcontent ul,
.faqcontent ol {
  margin: 15px 0 15px 25px;
  padding: 0;
}
.faqcontent ul li,
.faqcontent ol li {
  padding: 8px 15px 8px 0;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #555;
}
.faqcontent ul li {
  list-style-type: disc;
}
.faqcontent ol li {
  list-style-type: decimal;
}
.clear {
  clear: both;
}
/* Responsive */
@media screen and (max-width: 767px) {
  .faqitem {
    padding: 20px; }

  .faqheader p {
    font-size: 1.1rem !important; }

  .faqcontent p {
    font-size: 1rem; }

  a.faqheader::after {
    font-size: 1.75rem;
    width: 28px;
    height: 28px; } }
@media screen and (max-width: 665px) {
  .faq {
    padding: 15px; }

  .faqitem {
    padding: 18px;
    margin-bottom: 15px; } }



/* ═══════════════════════════════════════════
   SHARED LAYOUT
═══════════════════════════════════════════ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
section { padding: 3rem 0; }

.section-tag {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 2.5rem;
}
.section-tag-line { width: 28px; height: 1px; background: var(--green); flex-shrink: 0; }
.section-tag span {
  font-size: var(--fs-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); font-weight: 500;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.section-heading em { font-style: italic; color: var(--green); }

.section-sub {
  font-size: var(--fs-xl); font-weight: 300;
  color: var(--ink-60); line-height: 1.75; max-width: 560px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  padding: 14px 28px; font-size: var(--fs-lg); font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  border-radius: 2px; white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: #18876A; transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(29,158,117,0.3);
}

.btn-primary-sm { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: var(--white); padding: 13px 26px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border-radius: 2px; transition: background 0.25s, transform 0.2s; white-space: nowrap; }
.btn-primary-sm:hover { background: #18876A; transform: translateY(-2px); }

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost-white,
.btn-outline-white {
  font-size: var(--fs-lg); font-weight: 400;
  color: rgba(255,255,255,0.55); text-decoration: none;
  letter-spacing: 0.04em; display: inline-flex;
  align-items: center; gap: 6px; transition: color 0.2s;
}
.btn-ghost-white:hover,
.btn-outline-white:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, #0E1340 0%, #243380 50%, #1A3A7A 100%);
  padding: 10rem 0 5rem; position: relative; overflow: hidden;
}
.page-header-inner h1:nth-child(2) {
    display: none;
}
.page-header::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.06);
  top: -200px; right: -150px; pointer-events: none;
}
.page-header::after {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  border: 1px solid rgba(29,158,117,0.08);
  bottom: -100px; left: -80px; pointer-events: none;
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 4rem;
}
.page-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;margin-top: 1.5rem; }
.page-eyebrow-line { width: 28px; height: 1px; background: var(--green); }
.page-eyebrow span {
  font-size: var(--fs-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); font-weight: 500;
}
.page-header h1, .page-header h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1); font-weight: 300;
  line-height: 1.08; color: var(--white); letter-spacing: -0.02em;
}
.page-header h1 em, .page-header h2 em { font-style: italic; color: var(--gold); }
.page-header-sub p{
  font-size: var(--fs-xxl); font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75;
  max-width: 620px; margin-top: 1.5rem;
}
.page-header-org {
  font-size: var(--fs-lg); font-weight: 400;
  color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; letter-spacing: 0.03em;
}

.page-eyebrow ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-eyebrow ul li {
    display: flex;
    align-items: center;
}

.page-eyebrow ul li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: var(--green);
}

.page-eyebrow ul li a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

.page-eyebrow ul li a:hover {
    color: #e7610d;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e7610d;
}

.breadcrumb li:last-child {
    opacity: 0.8;
}
}

.page-eyebrow span .breadcrumb li {
    display: flex;
    align-items: center;
    font-size: inherit;
}

.page-eyebrow span .breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: rgba(255,255,255,.6);
}

.page-eyebrow span .breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-eyebrow span .breadcrumb a:hover {
    color: #e7610d;
}


/* ═══════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════ */
.hero {
  min-height: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* Left – dark */
.hero-left {
  background: linear-gradient(135deg, #0E1340 0%, #243380 40%, #1A3A7A 70%, #0E2B5E 100%);
  background-size: 300% 300%;
  animation: heroShift 8s ease-in-out infinite alternate;
  padding: 12rem 5rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 100%; }
}
.hero-left::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.06);
  top: -200px; left: -200px; pointer-events: none;
}
.hero-left::after {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  border: 1px solid rgba(29,158,117,0.08);
  bottom: 60px; right: -100px; pointer-events: none;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--green); }
.hero-eyebrow span {
  font-size: var(--fs-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1); font-weight: 300;
  line-height: 1.06; color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: var(--fs-xxl); font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75;
  max-width: 420px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  color: var(--gold); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: var(--fs-xs); color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400;
}

/* Right panel */
.hero-right {
  background: var(--cream); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}

.hero-right ul {
  display: flex;
  flex-direction: column;
  gap: 0;

  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-right ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ink-10);

  font-size: var(--fs-lg);
  color: var(--ink-60);
  line-height: 1.55;
  font-weight: 400;
}

/* eerste item bovenrand */
.hero-right ul li:first-child {
  border-top: 1px solid var(--ink-10);
}

/* bullet dot */
.hero-right ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(26,26,26,0.025) 40px, rgba(26,26,26,0.025) 41px
  );
}

/* Hero right – card fan variant */
.cards-stage {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 10px; padding: 6rem 3rem;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
.fan-card {
  width: 108px; height: 180px; border-radius: 12px;
  padding: 14px 12px 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  flex-shrink: 0; overflow: hidden; position: relative;
  cursor: pointer; transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.fan-card::before {
  content: ''; position: absolute;
  width: 100px; height: 100px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -30px; right: -30px; pointer-events: none;
}
.fan-card:hover { transform: translateY(-14px) !important; box-shadow: 0 28px 60px rgba(0,0,0,0.4); }
.fan-num {
  display: inline-block; border: 0.5px solid rgba(29,158,117,0.5);
  border-radius: 20px; padding: 2px 8px;
  font-size: 7px; font-weight: 600; letter-spacing: 0.1em; color: #1D9E75; margin-bottom: 4px;
}
.fan-thema { font-size: 7px; color: rgba(255,255,255,0.45); font-weight: 400; margin-bottom: 6px; }
.fan-vraag {
  font-family: var(--font-display); font-size: var(--fs-xs);
  color: #fff; line-height: 1.45; font-weight: 400; font-style: italic; flex: 1;
}
.fan-payoff { font-size: 6px; color: rgba(255,255,255,0.25); line-height: 1.5; margin-top: 8px; }

/* Hero right – pillar list variant */
.hero-right-content {
  position: relative; z-index: 2;
  padding: 4rem; width: 100%; max-width: 480px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
h2 /*.tagline-display*/  {
  font-family: var(--font-display);
  font-size: var(--fs-h2); font-weight: 300;
  line-height: 1.1; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 3rem;
}
/*.tagline-display*/ em { font-style: italic; color: var(--green); }
.pillar-list { display: flex; flex-direction: column; gap: 0; }
.pillar-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--ink-10);
}
.pillar-item:first-child { border-top: 1px solid var(--ink-10); }
.pillar-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.pillar-text { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.55; font-weight: 400; }

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
}

/* ═══════════════════════════════════════════
   WAT IS HET / UITLEG
═══════════════════════════════════════════ */
.uitleg-section { background: var(--warm-white); }
.uitleg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.uitleg-tekst p {
  font-size: var(--fs-xl); font-weight: 300;
  color: var(--ink-60); line-height: 1.8; margin-bottom: 1.1rem;
}

.stap-list { display: flex; flex-direction: column; }
.stap-row {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.25rem; padding: 1.6rem 0; border-bottom: 1px solid var(--ink-10);
}
.stap-row:first-child { border-top: 1px solid var(--ink-10); }
.stap-num-wrap { display: flex; align-items: flex-start; padding-top: 2px; }
.stap-num {
  width: 32px; height: 32px; border: 1px solid var(--green-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs); font-weight: 500; color: var(--green);
  letter-spacing: 0.04em; flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.stap-row:hover .stap-num,
.stap-item:hover .stap-num { background: var(--green); color: var(--white); }
.stap-body h4,
.stap-content h4 { font-size: var(--fs-lg); font-weight: 500; color: var(--navy); margin-bottom: 0.35rem; }
.stap-body p,
.stap-content p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════
   THEMA'S
═══════════════════════════════════════════ */
.themas-section { background: var(--cream); }
.themas-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4rem;
}
.themas-header p { font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60); line-height: 1.8; align-self: end; }
.themas-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 4px; overflow: hidden;
}
.thema-card {
  padding: 2rem 1.5rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative; overflow: hidden; cursor: default;
}
.thema-card::before {
  content: ''; position: absolute;
  width: 160px; height: 160px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  top: -50px; right: -50px; pointer-events: none;
}
.thema-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); z-index: 2; }
.thema-range {
  font-size: 9px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3); font-weight: 500;
  text-transform: uppercase; margin-bottom: 2rem;
}
.thema-naam {
  font-family: var(--font-display); font-size: var(--fs-h4);
  font-weight: 400; font-style: italic; color: var(--white);
  line-height: 1.3; margin-bottom: 0.75rem; flex: 1;
}
.thema-desc {
  font-size: var(--fs-xs); color: rgba(255,255,255,0.45); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.9rem; font-weight: 300;
}

/* ═══════════════════════════════════════════
   VRAGEN TEASER
═══════════════════════════════════════════ */
.vragen-section { background: var(--warm-white); }
.vragen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-10);
  border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden; margin-top: 3.5rem;
}
.vraag-card {
  background: var(--warm-white); padding: 2rem 1.75rem;
  transition: background 0.3s; position: relative;
}
.vraag-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 2px; height: 0;
  background: var(--green); transition: height 0.35s var(--ease-out);
}
.vraag-card:hover { background: var(--cream); }
.vraag-card:hover::after { height: 100%; }
.vraag-thema-dot {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-30); font-weight: 500; margin-bottom: 1rem;
}
.vraag-thema-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vraag-card blockquote {
  font-family: var(--font-display); font-size: var(--fs-h4);
  font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.4;
}

/* ═══════════════════════════════════════════
   KAART MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,26,26,0.8); z-index: 2000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; }
.modal-card {
  width: 260px; height: 400px;
  border-radius: 16px; padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 48px 96px rgba(0,0,0,0.6);
  position: relative; overflow: hidden;
  animation: zoomIn 0.25s var(--ease-out);
}
.modal-card::before {
  content: ''; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -80px; right: -80px; pointer-events: none;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.12); border: none; color: white;
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: var(--fs-lg);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-num {
  display: inline-block; border: 0.5px solid rgba(29,158,117,0.5);
  border-radius: 20px; padding: 3px 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em; color: #1D9E75; margin-bottom: 8px;
}
.modal-thema { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.modal-vraag {
  font-family: var(--font-display); font-size: var(--fs-h3);
  font-weight: 300; font-style: italic; color: white; line-height: 1.4; flex: 1;
}
.modal-payoff { font-size: 9px; color: rgba(255,255,255,0.25); line-height: 1.6; margin-top: 1rem; }

/* ═══════════════════════════════════════════
   DIENSTEN
═══════════════════════════════════════════ */
.diensten-section { background: var(--warm-white); }
.diensten-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.diensten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-10);
  border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden;
}
.dienst-card {
  background: var(--warm-white); padding: 2rem 1.75rem;
  transition: background 0.3s; position: relative;
}
.dienst-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 2px; height: 0;
  background: var(--green); transition: height 0.35s var(--ease-out);
}
.dienst-card:hover { background: var(--cream); }
.dienst-card:hover::after { height: 100%; }
.dienst-num { display: block; width: 24px; height: 2px; background: var(--green); margin-bottom: 1.25rem; border-radius: 1px; }
.dienst-card h3 { font-size: var(--fs-lg); font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; }
.dienst-card p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════
   CASES
═══════════════════════════════════════════ */
.cases-section { background: var(--cream); }
.cases-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: var(--warm-white);
  border: 1px solid var(--ink-10); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  text-decoration: none; color: inherit;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(36,51,128,0.1); }
.case-card-accent,
.case-accent { height: 3px; background: linear-gradient(90deg, var(--navy), #1A3A7A); }
.case-card-header,
.case-header { padding: 1.75rem 1.75rem 1.25rem; border-bottom: 1px solid var(--ink-10); }
.case-card-org,
.case-org { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 0.5rem; }
.case-card-titel,
.case-titel {
  font-family: var(--font-display); font-size: var(--fs-h4);
  font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.4;
}
.case-card-body,
.case-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.case-card-tekst,
.case-situatie p { font-size: var(--fs-lg); font-weight: 300; color: var(--ink-60); line-height: 1.7; flex: 1; margin-bottom: 1.25rem;      font-size: var(--fs-xl);
    font-weight: 300;
    color: var(--ink-60);
    line-height: 1.85;
    margin-bottom: 1rem;}
.case-resultaat { font-size: var(--fs-lg); color: var(--navy); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; font-weight: 300; }
.case-card-link,
.case-lees-meer {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--green);
  letter-spacing: 0.04em; text-decoration: none;
  transition: gap 0.2s;
}
.case-card:hover .case-card-link,
.case-lees-meer:hover { gap: 10px; }
.case-citaat {
  font-size: var(--fs-sm); color: var(--ink-60); line-height: 1.6;
  border-top: 1px solid var(--ink-10); padding-top: 1rem;
  font-style: italic;
}
.case-citaat strong {
  font-style: normal; display: block; margin-top: 0.4rem;
  font-size: var(--fs-xs); color: var(--ink-30); letter-spacing: 0.03em; font-weight: 500;
}

/* Placeholder card */
.case-card-placeholder {
  background: var(--cream); border: 1px dashed rgba(36,51,128,0.15);
  border-radius: 4px; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 280px;
}
.case-card-placeholder-icon {
  width: 40px; height: 40px; border: 1.5px solid var(--ink-10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 20px; color: var(--ink-30);
}
.case-card-placeholder p { font-size: var(--fs-lg); font-weight: 300; color: var(--ink-30); line-height: 1.6; }

/* Case detail page */
.case-layout { display: grid; grid-template-columns: 1fr 320px; gap: 5rem; align-items: start; padding: 6rem 0; }
.sticky-sidebar { position: sticky; top: 96px; }
.sidebar-widget-img img {width:100%; height:auto;}
.case-section { margin-bottom: 3.5rem; }
.case-section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.case-section-label-line { width: 24px; height: 1px; background: var(--green); }
.case-section-label span { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; }
.case-section h2 {
  font-family: var(--font-display); font-size: var(--fs-h3);
  font-weight: 300; color: var(--navy); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 1rem;
}
.case-section p { font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60); line-height: 1.85; margin-bottom: 1rem; }

.case-layout ul {
  list-style: none;
  margin: 1.25rem 0;
}

.case-layout li {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.65;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid var(--ink-10);
  position: relative;
}

.case-layout li:first-child {
  border-top: 1px solid var(--ink-10);
}

.case-layout li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.case-quote {
  background: var(--navy); border-radius: 4px; padding: 2.5rem; margin: 3rem 0;
  position: relative; overflow: hidden;
}
.case-quote::before {
  content: '\201C'; font-family: var(--font-display); font-size: 80px;
  font-weight: 300; color: var(--green); line-height: 0.7;
  position: absolute; top: 1.5rem; left: 1.75rem; opacity: 0.3;
}
.case-quote blockquote {
  font-family: var(--font-display); font-size: var(--fs-h4);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85);
  line-height: 1.6; padding-top: 1.5rem; margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.case-quote cite {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.4); font-style: normal;
  font-weight: 500; letter-spacing: 0.03em; display: flex; align-items: center; gap: 10px;
}
.case-quote cite::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--green); flex-shrink: 0; }

/* Sidebar */
.sidebar-info {
  background: var(--cream); border-radius: 4px; padding: 1.75rem;
  border: 1px solid var(--ink-10); margin-bottom: 1.25rem;
}
.sidebar-info h4 { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 1rem; }
.sidebar-info ul { list-style: none; }
.sidebar-info ul li {
  font-size: var(--fs-lg); color: var(--ink-60); padding: 0.5rem 1.3rem;;
  border-bottom: 1px solid var(--ink-10); font-weight: 300;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-info ul li:last-child { border-bottom: none; }
.sidebar-info ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.sidebar-cta { background: var(--navy); border-radius: 4px; padding: 1.75rem; }
.sidebar-cta h4 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: var(--fs-lg); color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; font-weight: 300; }

/* ═══════════════════════════════════════════
   KAARTENSET
═══════════════════════════════════════════ */
.kaartenset-section { background: var(--warm-white); }
.kaartenset-inner { display: grid; grid-template-columns: 5fr 4fr; gap: 4rem; align-items: start; }
.kaartenset-tekst p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.kaartenset-tekst img {width:100%;height:auto;}
.kaartenset-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-lg); font-weight: 500; color: var(--green);
  text-decoration: none; letter-spacing: 0.04em; margin-top: 0.75rem; transition: gap 0.25s;
}
.kaartenset-link:hover { gap: 13px; }

.kaart-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--ink-10); border-radius: 3px; overflow: hidden; }
.kaart-row {
  display: grid; grid-template-columns: 28px 1fr 1fr auto;
  align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--ink-10); background: var(--warm-white);
  transition: background 0.2s; cursor: default;
}
.kaart-row:last-child { border-bottom: none; }
.kaart-row:hover { background: var(--cream); }
.kaart-color { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.kaart-thema { font-size: var(--fs-lg); font-weight: 500; color: var(--navy); }
.kaart-vraag { font-size: var(--fs-md); color: var(--ink-60); font-style: italic; font-family: var(--font-display); }
.kaart-range { font-size: var(--fs-md); color: var(--ink-30); letter-spacing: 0.04em; white-space: nowrap; }

/* ═══════════════════════════════════════════
   WERKWIJZE
═══════════════════════════════════════════ */
.werkwijze-section { background: var(--cream); }
.werkwijze-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.werkwijze-tekst p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.stappen { display: flex; flex-direction: column; }
.stap-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.25rem; padding: 1.75rem 0; border-bottom: 1px solid var(--ink-10);
}
.stap-item:first-child { border-top: 1px solid var(--ink-10); }

/* ═══════════════════════════════════════════
   REFERENTIES
═══════════════════════════════════════════ */
.refs-section { background: var(--warm-white); }
.refs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.ref-card {
  padding: 2rem; border: 1px solid var(--ink-10); border-radius: 3px;
  background: var(--warm-white); position: relative;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.ref-card:hover { box-shadow: 0 12px 40px rgba(26,26,26,0.07); transform: translateY(-3px); }
.ref-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 60px;
  line-height: 1; color: var(--green); opacity: 0.2;
  position: absolute; top: 1rem; left: 1.5rem;
}
.ref-card blockquote {
  font-size: var(--fs-lg); color: var(--ink); line-height: 1.75;
  font-weight: 300; margin-bottom: 1.25rem; padding-top: 1.5rem;
  font-style: italic; font-family: var(--font-display);
}
.ref-cite { display: flex; align-items: center; gap: 10px; }
.ref-cite-line { width: 20px; height: 1px; background: var(--green); flex-shrink: 0; }
.ref-cite-text { font-size: var(--fs-xs); color: var(--ink-60); font-weight: 500; letter-spacing: 0.03em; }

/* Referentie band */
.ref-band { background: var(--navy); padding: 4.5rem 0; }
.ref-band-inner { display: flex; gap: 4rem; align-items: flex-start; }
.ref-band-quote {
  font-family: var(--font-display); font-size: var(--fs-h3);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85);
  flex: 1; line-height: 1.5; letter-spacing: -0.01em;
}
.ref-band-meta { flex-shrink: 0; width: 200px; padding-top: 4px; }
.ref-band-mark {
  font-family: var(--font-display); font-size: 80px;
  font-weight: 300; color: var(--green); line-height: 0.7;
  margin-bottom: 1.5rem; opacity: 0.4;
}
.ref-band-name { font-size: var(--fs-sm); font-weight: 500; color: var(--white); margin-bottom: 3px; letter-spacing: 0.03em; }
.ref-band-org { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════
   NIEUWS
═══════════════════════════════════════════ */
.nieuws-section { background: var(--cream); }
.nieuws-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.nieuws-meer {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-lg); font-weight: 500; color: var(--green);
  text-decoration: none; letter-spacing: 0.04em; white-space: nowrap; transition: gap 0.2s;
}
.nieuws-meer:hover { gap: 10px; }
.nieuws-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.nieuws-card {
  background: var(--warm-white); border: 1px solid var(--ink-10);
  border-radius: 4px; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.nieuws-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,26,26,0.09); }
.nieuws-card-top { height: 4px; background: linear-gradient(90deg, var(--green), #18876A); }
.nieuws-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.nieuws-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.nieuws-datum { font-size: var(--fs-xs); color: var(--ink-30); letter-spacing: 0.04em; }
.nieuws-categorie {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); font-weight: 500; background: var(--green-dim); padding: 2px 8px; border-radius: 2px;
}
.nieuws-card h3 {
  font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400;
  line-height: 1.35; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.nieuws-card p { font-size: var(--fs-lg); font-weight: 300; color: var(--ink-60); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.nieuws-lees {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--green);
  letter-spacing: 0.04em; transition: gap 0.2s; margin-top: auto;
}
.nieuws-card:hover .nieuws-lees { gap: 10px; }

/* Foto in nieuwskaart */
.nieuws-card-foto { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; position: relative; }
.nieuws-card-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.nieuws-card:hover .nieuws-card-foto img { transform: scale(1.04); }
.nieuws-card-foto-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, #EAE8E2 100%);
  display: flex; align-items: center; justify-content: center;
}
.nieuws-card-foto-placeholder span {
  font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-30); font-weight: 500;
}

/* Uitgelicht nieuwsbericht */
.nieuws-uitgelicht {
  grid-column: span 3;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 4px; overflow: hidden; border: 1px solid var(--ink-10);
  text-decoration: none; color: inherit; background: var(--warm-white);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.nieuws-uitgelicht:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,26,26,0.1); }
.nieuws-uitgelicht-links {
  background: var(--navy); padding: 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.nieuws-uitgelicht-links::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  border-radius: 50%; border: 1px solid rgba(200,169,110,0.07);
  top: -150px; right: -100px;
}
.uitgelicht-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.5rem; }
.uitgelicht-titel {
  font-family: var(--font-display); font-size: var(--fs-h2);
  font-weight: 300; color: var(--white); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 1rem;
}
.uitgelicht-datum { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.nieuws-uitgelicht-rechts { padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.uitgelicht-categorie {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); font-weight: 500; background: var(--green-dim);
  padding: 2px 8px; border-radius: 2px; display: inline-block; margin-bottom: 1.5rem;
}
.uitgelicht-tekst { font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60); line-height: 1.8; flex: 1; margin-bottom: 1.5rem; }
.uitgelicht-lees { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-lg); font-weight: 500; color: var(--green); letter-spacing: 0.04em; transition: gap 0.2s; }
.nieuws-uitgelicht:hover .uitgelicht-lees { gap: 13px; }

.nieuws-uitgelicht-foto { grid-column: span 3; height: 320px; overflow: hidden; position: relative; border-radius: 4px 4px 0 0; }
.nieuws-uitgelicht-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.nieuws-uitgelicht:hover .nieuws-uitgelicht-foto img { transform: scale(1.03); }
.nieuws-uitgelicht-foto-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1A1F6B 0%, #243380 100%);
  display: flex; align-items: center; justify-content: center;
}
.nieuws-uitgelicht-foto-placeholder span { font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.2); font-weight: 500; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 6rem 0; align-items: start; }
.contact-block { margin-bottom: 3rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-label {
  font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 10px;
}
.contact-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); flex-shrink: 0; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--ink-10); }
.contact-item:first-of-type { border-top: 1px solid var(--ink-10); }
.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--green-dim); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.contact-item-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-content { flex: 1; }
.contact-item-label { font-size: var(--fs-xs); color: var(--ink-30); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 3px; }
.contact-item-value { font-size: var(--fs-xl); color: var(--ink); font-weight: 400; line-height: 1.5; }
.contact-item-value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--green); }

.map-placeholder { background: var(--cream); border-radius: 4px; border: 1px solid var(--ink-10); overflow: hidden; height: 320px; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 1.5rem; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

.kvk-blok { background: var(--cream); border-radius: 4px; border: 1px solid var(--ink-10); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.kvk-blok-label { font-size: var(--fs-xs); color: var(--ink-30); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 3px; }
.kvk-blok-value { font-size: var(--fs-lg); color: var(--ink); font-weight: 400; }

.scan-cta { background: var(--navy); border-radius: 4px; padding: 2.25rem; position: relative; overflow: hidden; }
.scan-cta::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(200,169,110,0.07); top: -120px; right: -80px; pointer-events: none; }
.scan-cta-badge { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.scan-cta-badge::before { content: ''; display: block; width: 16px; height: 1px; background: var(--green); }
.scan-cta h3 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 0.75rem; }
.scan-cta p { font-size: var(--fs-lg); color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.75rem; font-weight: 300; }

.openingstijden { background: var(--warm-white); border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden; margin-top: 1.5rem; }
.openingstijden-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--ink-10); font-size: var(--fs-lg); }
.openingstijden-row:last-child { border-bottom: none; }
.openingstijden-dag { color: var(--ink-60); font-weight: 400; }
.openingstijden-tijd { color: var(--ink); font-weight: 500; }
.openingstijden-tijd.gesloten { color: var(--ink-30); font-weight: 300; }

/* ═══════════════════════════════════════════
   OVER ONS / TEAM
═══════════════════════════════════════════ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-grid p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.intro-tekst p, .intro-p { font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60); line-height: 1.85; margin-bottom: 1rem; }

.waarden-lijst { display: flex; flex-direction: column; gap: 0; }
.waarde-item { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--ink-10); }
.waarde-item:first-child { border-top: 1px solid var(--ink-10); }
.waarde-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.waarde-item h4 { font-size: var(--fs-lg); font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.waarde-item p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.6; font-weight: 300; }

.team-sectie { background: var(--cream); }
.team-sectie h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.team-sectie p {
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.75;
  max-width: 560px;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.team-card { background: var(--warm-white); border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s var(--ease-out); }
.team-card:hover { box-shadow: 0 12px 36px rgba(36,51,128,0.08); transform: translateY(-3px); }
.team-card-foto { height: 200px; background: linear-gradient(135deg, #1E2D6B 0%, #243380 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card-foto::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); top: -60px; right: -60px; }
.team-card-initiaal { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: -0.02em; }
.team-card-foto img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card-body { padding: 1.5rem; }
.team-card-naam { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.team-card-quote { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60); line-height: 1.65; font-style: italic; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: var(--navy); padding: 7rem 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-section::before {
  content: ''; position: absolute; width: 800px; height: 800px;
  border-radius: 50%; border: 1px solid rgba(200,169,110,0.05);
  top: -400px; right: -200px; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid rgba(29,158,117,0.07);
  bottom: -250px; left: -100px; pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.cta-left .section-tag-line { background: var(--gold); }
.cta-left .section-tag span { color: var(--gold); }
.cta-heading {
  font-family: var(--font-display); font-size: var(--fs-h2);
  font-weight: 300; color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: var(--fs-xl); font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; }
.cta-right {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 2.75rem;
}
.cta-badge {
  display: inline-block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--green-dim); color: var(--green); border: 1px solid var(--green-line);
  padding: 4px 12px; border-radius: 2px; margin-bottom: 1.25rem; font-weight: 500;
}
.cta-right h3 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400; color: var(--white); line-height: 1.3; margin-bottom: 0.75rem; }
.cta-right p { font-size: var(--fs-lg); font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }

/* CTA band (full-width strip) */
.cta-band { background: var(--navy); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(200,169,110,0.05); top: -300px; right: -150px; pointer-events: none; }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 300; color: var(--white); line-height: 1.15; letter-spacing: -0.02em; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: var(--fs-xl); color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 480px; margin-top: 0.75rem; font-weight: 300; }
.cta-band-inner p a {
    color: #1D9E75; /* normale kleur */
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-band-inner p a:hover {
    color: #ccc; /* hoverkleur */
}

/* Meer cases */
.meer-cases { background: var(--cream); padding: 5rem 0; }
.meer-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.meer-case-card {
  background: var(--warm-white); border: 1px solid var(--ink-10);
  border-radius: 4px; padding: 1.5rem; text-decoration: none; color: inherit;
  display: block; transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.meer-case-card:hover { box-shadow: 0 10px 32px rgba(36,51,128,0.08); transform: translateY(-3px); }
.meer-case-org { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 0.5rem; }
.meer-case-titel { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.4; margin-bottom: 0.75rem; }
.meer-case-link { font-size: var(--fs-sm); color: var(--green); font-weight: 500; display: flex; align-items: center; gap: 5px; }


/* UITDAGING */
.uitdaging-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.uitdaging-tekst p { font-size: 15px; font-weight: 300; color: var(--ink-60); line-height: 1.85; margin-bottom: 1rem; }
.patroon-lijst { background: var(--warm-white); border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden; margin-top: 4.5rem; }
.patroon-header { padding: 1rem 1.5rem; background: var(--navy); }
.patroon-header span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; }
.patroon-item { font-size: 13px; font-weight: 300; color: var(--ink-60); padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--ink-10); display: flex; align-items: center; gap: 10px; }
.patroon-item:last-child { border-bottom: none; }
.patroon-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ROLVERDELING */
.rolverdeling-grid { display: grid; grid-template-columns: 1fr auto 1fr; border: 1px solid var(--ink-10); border-radius: 4px; overflow: hidden; margin-top: 3rem; }
.rol-bestuur { background: var(--navy); padding: 2.5rem 2rem; }
.rol-bureau { background: var(--warm-white); padding: 2.5rem 2rem; }
.rol-midden { background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem 1.25rem; gap: 1rem; border-left: 1px solid var(--ink-10); border-right: 1px solid var(--ink-10); }
.rol-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; }
.rol-bestuur .rol-label { color: var(--gold); }
.rol-bureau .rol-label { color: var(--green); }
.rol-titel { font-family: var(--font-display); font-size: 19px; font-weight: 300; line-height: 1.3; margin-bottom: 1.5rem; }
.rol-bestuur .rol-titel { color: var(--white); }
.rol-bureau .rol-titel { color: var(--navy); }
.rol-lijst { list-style: none; padding: 0; }
.rol-lijst li { font-size: 13px; font-weight: 300; padding: 0.55rem 0; display: flex; align-items: center; gap: 8px; }
.rol-bestuur .rol-lijst li { color: rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.07); }
.rol-bureau .rol-lijst li { color: var(--ink-60); border-bottom: 1px solid var(--ink-10); }
.rol-midden-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); font-weight: 500; writing-mode: vertical-rl; }
.rol-pijl-lijn { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--green), transparent); }
.rol-pijl-punt { width: 8px; height: 8px; border-right: 1.5px solid var(--green); border-bottom: 1.5px solid var(--green); transform: rotate(45deg); margin-top: -6px; }


/* PIJLERS */
.pijlers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pijler-card { background: var(--warm-white); border: 1px solid var(--ink-10); border-radius: 4px; padding: 2rem; transition: box-shadow 0.3s, transform 0.3s var(--ease-out); }
.pijler-card:hover { box-shadow: 0 12px 40px rgba(36,51,128,0.08); transform: translateY(-3px); }
.pijler-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--green); opacity: 0.4; line-height: 1; margin-bottom: 0.75rem; }
.pijler-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3; }
.pijler-card p { font-size: 13px; font-weight: 300; color: var(--ink-60); line-height: 1.7; }

/* RESULTATEN */
.resultaten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.resultaten-kolom { border-radius: 4px; border: 1px solid var(--ink-10); overflow: hidden; }
.resultaten-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--ink-10); }
.resultaten-kolom:first-child .resultaten-header { background: var(--navy); }
.resultaten-kolom:last-child .resultaten-header { background: var(--green-dim); }
.resultaten-kolom:first-child .resultaten-header h4 { color: var(--white); }
.resultaten-kolom:last-child .resultaten-header h4 { color: var(--navy); }
.resultaten-header h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.resultaten-lijst { list-style: none; padding: 0; }
.resultaten-lijst li { font-size: 13px; font-weight: 300; color: var(--ink-60); padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--ink-10); display: flex; align-items: center; gap: 10px; }
.resultaten-lijst li:last-child { border-bottom: none; }
.resultaten-lijst li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* WHITEPAPER DOWNLOAD */
.download-band { background: var(--cream); border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); padding: 3rem 0; }
.download-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.download-tekst h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 0.4rem; }
.download-tekst p { font-size: 13px; font-weight: 300; color: var(--ink-60); }
.btn-download { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--navy); color: var(--navy); padding: 12px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border-radius: 2px; transition: background 0.25s, color 0.25s; white-space: nowrap; }
.btn-download:hover { background: var(--navy); color: var(--white); }



/* ═══════════════════════════════════════════
   1-KOLOM LAYOUT
═══════════════════════════════════════════ */
.content-1col {
     max-width: 1200px;
    margin: 0 auto;
           
}

/* ═══════════════════════════════════════════
   PROSE (vrije tekst)
═══════════════════════════════════════════ */
.prose p {
  font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.01em; margin: 2.5rem 0 1rem; line-height: 1.2;
}
.prose h2 em { font-style: italic; color: var(--green); }
.prose h3 {
  font-size: var(--fs-xxl); font-weight: 500; color: var(--navy);
  margin: 2rem 0 0.6rem; letter-spacing: 0.01em;
}
.prose ul { margin: 0 0 1.25rem; padding: 0; list-style: none; }
.prose ul li {
  font-size: var(--fs-xl); font-weight: 300; color: var(--ink-60);
  line-height: 1.75; padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--ink-10); position: relative;
}
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); transform: translateY(-50%);
}

/* ═══════════════════════════════════════════
   SIDEBAR WIDGET
═══════════════════════════════════════════ */
.sidebar-widget {
  background: var(--cream); border-radius: 4px; padding: 2rem;
  border: 1px solid var(--ink-10); margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400;
  color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3;
}
.sidebar-widget p { font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.sidebar-widget-dark { background: var(--navy); border-color: transparent; }
.sidebar-widget-dark h4 { color: var(--white); }
.sidebar-widget-dark p { color: rgba(255,255,255,0.55); }

/* BTN OUTLINE (extra variant) */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--navy); color: var(--navy);
  padding: 12px 24px; font-size: var(--fs-lg); font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none; border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════════
   2-KOLOM LAYOUT
═══════════════════════════════════════════ */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.layout-2col-gelijk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}


/* ======================================
REGIEBESTUUR
=================*/

/* --- REGIEBESTUUR SECTION --- */
.regiebestuur_section {
  background: var(--cream);
  padding: 5rem 0;
}

.regiebestuur_container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header & Intro */
.regiebestuur_header {
  text-align: center;
  margin-bottom: 3rem;
}

.regiebestuur_sublabel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.regiebestuur_line {
  width: 28px;
  height: 1px;
  background: var(--green);
}

.regiebestuur_sublabel span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  font-family: var(--font-ui);
}

.regiebestuur_title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.regiebestuur_intro {
  font-size: 15px;
  color: var(--ink-60);
  font-weight: 300;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* Visueel Grid */
.regiebestuur_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--ink-10);
  border-radius: 4px;
  overflow: hidden;
}

/* Kaarten */
.regiebestuur_card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.regiebestuur_card--navy {
  background: var(--navy);
}

.regiebestuur_card--white {
  background: var(--warm-white);
}

/* Decoratieve cirkel links */
.regiebestuur_circle_bg {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.08);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

/* Badges & Titels binnen kaarten */
.regiebestuur_card_badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: var(--font-ui);
}

.regiebestuur_card_badge--gold { color: var(--gold); }
.regiebestuur_card_badge--green { color: var(--green); }

.regiebestuur_card_title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.regiebestuur_card_title--white { color: var(--white); }
.regiebestuur_card_title--navy { color: var(--navy); }

/* Lijsten & Opsommingen */
.regiebestuur_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.regiebestuur_item {
  font-size: 13px;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.regiebestuur_item:not(:last-child) {
  border-bottom: 1px solid var(--ink-10);
}

/* Specifieke modifiers voor de donkere lijst links */
.regiebestuur_item--light {
  color: rgba(255, 255, 255, 0.55);
}
.regiebestuur_item--light:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Gekleurde bullets */
.regiebestuur_dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.regiebestuur_dot--gold { background: var(--gold); }
.regiebestuur_dot--green { background: var(--green); }

/* Middelste Mijlpaal / Divider */
.regiebestuur_divider {
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  gap: 1rem;
  border-left: 1px solid var(--ink-10);
  border-right: 1px solid var(--ink-10);
}

.regiebestuur_divider_text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  writing-mode: vertical-rl;
}

.regiebestuur_arrow_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.regiebestuur_arrow_line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
}

.regiebestuur_arrow_head {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(45deg);
  margin-top: -6px;
}

/* Ondertitel onderaan */
.regiebestuur_footer_text {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-top: 1.75rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Responsive optimalisatie voor mobiel */
@media (max-width: 768px) {
  .regiebestuur_grid {
    grid-template-columns: 1fr;
  }
  .regiebestuur_divider {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--ink-10);
    border-bottom: 1px solid var(--ink-10);
    padding: 2rem;
  }
  .regiebestuur_divider_text {
    writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
  }
  .regiebestuur_arrow_line {
    height: 25px;
  }
}


/* ═══════════════════════════════════════════
   CONTENT CARD
═══════════════════════════════════════════ */
.content-card {
  border: 1px solid var(--ink-10);
  border-radius: 4px; overflow: hidden;
  background: var(--warm-white);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.content-card:hover { box-shadow: 0 12px 40px rgba(26,26,26,0.08); transform: translateY(-3px); }
.content-card-accent { height: 3px; background: linear-gradient(90deg, var(--navy), var(--navy-mid)); }
.content-card-header { padding: 1.75rem 1.75rem 1.25rem; border-bottom: 1px solid var(--ink-10); }
.content-card-label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); font-weight: 500; margin-bottom: 0.5rem;
}
.content-card-title {
  font-family: var(--font-display);
  font-size: var(--fs-h4); font-weight: 400; font-style: italic;
  color: var(--navy); line-height: 1.4;
}
.content-card-body { padding: 1.5rem 1.75rem; }
.content-card-body p {
  font-size: var(--fs-lg); color: var(--ink-60); line-height: 1.7; font-weight: 300; margin-bottom: 0.9rem;
}
.content-card-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 400; color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-logo em { font-style: normal; color: var(--green); }
.footer-copy { font-size: var(--fs-sm); color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: var(--fs-sm); color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }


/* COPYRIGHT */
.copyright {
  width: 100%;
      background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0; 
  text-align: center;
}

.copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: #999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.copyright a {
  color: #1D9E75;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #94c122;
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1, .reveal-delay-1 { transition-delay: 0.1s; }
.delay-2, .reveal-delay-2 { transition-delay: 0.2s; }
.delay-3, .reveal-delay-3 { transition-delay: 0.3s; }
.delay-4, .reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5               { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap, nav { padding: 0 2.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 10rem 2.5rem 5rem; }
  .hero-right { display: none; }
  .uitleg-grid { grid-template-columns: 1fr; gap: 3rem; }
  .themas-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .themas-grid { grid-template-columns: repeat(2, 1fr); }
  .themas-grid .thema-card:last-child { grid-column: span 2; }
  .vragen-grid { grid-template-columns: 1fr 1fr; }
  .diensten-header, .cases-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .kaartenset-inner, .werkwijze-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .refs-grid { grid-template-columns: 1fr 1fr; }
  .ref-band-inner { flex-direction: column; gap: 1.5rem; }
  .ref-band-meta { width: 100%; }
  .case-layout { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .sticky-sidebar { position: static; }
	
  .meer-cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 54px; }
  .wrap { padding: 0 1.5rem; }
  .page-header-inner { padding: 0 1.5rem; }
  .page-header { padding: 8rem 0 4rem; }
  section { padding: 4rem 0; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.5rem 4rem;  justify-content: flex-end; }
  .hero h1 { font-size: var(--fs-h1); } /* Uses clamp automatically */
  .hero-sub { font-size: var(--fs-xl); max-width: 100%; }
  .hero-right { display: none; }
  .hero-stats { gap: 1.75rem; margin-top: 3rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }

  .uitleg-grid, .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .themas-header, .diensten-header, .cases-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .themas-grid { grid-template-columns: 1fr 1fr; }
  .themas-grid .thema-card:last-child { grid-column: span 2; }
  .vragen-grid, .refs-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-card { padding: 1.5rem 1.25rem; }
  .cases-grid { grid-template-columns: 1fr; }

  .ref-band-inner { flex-direction: column; gap: 1.5rem; }
  .ref-band-meta { width: 100%; display: flex; align-items: center; gap: 1rem; }
  .ref-band-mark { font-size: 48px; margin-bottom: 0; }

  .kaartenset-inner, .werkwijze-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .kaart-row { grid-template-columns: 16px 1fr auto; }
  .kaart-vraag { display: none; }

  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-right { padding: 1.75rem; }
  .cta-band-inner { flex-direction: column; }

	
	  #whitepaper { margin-top: 0 !important; }
  #download-form { margin-top: 0 !important; }
  #download-bevestiging { margin-top: 0 !important; }
  .uitdaging-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .patroon-lijst { margin-top: 0; }
  .rolverdeling-grid { grid-template-columns: 1fr; }
  .rol-midden { display: none; }
  .pijlers-grid { grid-template-columns: 1fr; }
  .resultaten-grid { grid-template-columns: 1fr; }
  .download-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-inner { flex-direction: column; }
	
	
  .nieuws-grid { grid-template-columns: 1fr; }
  .nieuws-header { flex-direction: column; align-items: flex-start; }
  .nieuws-uitgelicht { grid-template-columns: 1fr; grid-column: span 1; }
  .nieuws-uitgelicht-links, .nieuws-uitgelicht-rechts { padding: 2rem; }
  .nieuws-uitgelicht-foto { grid-column: span 1; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .layout-2col, .layout-2col-gelijk { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .meer-cases-grid { grid-template-columns: 1fr; }

  .section-heading { font-size: var(--fs-h2); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .wrap, .page-header-inner { padding: 0 1.25rem; }
  .nav-logo-img { height: 44px; }
  .hero-left { padding: 6rem 1.25rem 3.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; }
  .cta-right, .scan-cta { padding: 1.5rem 1.25rem; }
  .cta-right .btn-primary { width: 100%; justify-content: center; }
  .themas-grid { grid-template-columns: 1fr; }
  .themas-grid .thema-card:last-child { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .cards-stage { gap: 6px; padding: 3rem 1rem; }
  .fan-card { width: 58px; height: 110px; }
  .fan-vraag { font-size: 9px; }
}