/* ============================================================
   MOMENTUM EMEA - CATO CONTENT CLUSTER
   Naadloos geintegreerd met gomomentum.eu (Maxbizz theme)
   Build v2 - getrouwe reproductie van de live styling
   ============================================================ */

/* ---------- 0. AVENIR WEBFONT ---------- */
/* Gehost op gomomentum.com (US-moederbedrijf met Avenir-licentie). CORS open. */
@font-face {
  font-family: "Avenir";
  src: local("Avenir Light"), local("Avenir-Light"),
       url("https://gomomentum.com/wp-content/uploads/2024/02/Avenir-Light-07.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir Roman"), local("Avenir-Roman"), local("Avenir Book"),
       url("https://gomomentum.com/wp-content/uploads/2024/02/Avenir-Roman-12.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir Medium"), local("Avenir-Medium"),
       url("https://gomomentum.com/wp-content/uploads/2024/02/Avenir-Medium-09.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir Heavy"), local("Avenir-Heavy"),
       url("https://gomomentum.com/wp-content/uploads/2024/02/Avenir-Heavy-05.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: local("Avenir Black"), local("Avenir-Black"),
       url("https://gomomentum.com/wp-content/uploads/2024/02/Avenir-Black-03.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand frame (gomomentum.eu globaal) */
  --c-dark:        #1b1d21;        /* Heading + button-bg uit Maxbizz */
  --c-text:        #5f5f5f;        /* Body-tekst uit Maxbizz */
  --c-heading:     #1b1d21;
  --c-navy:        #001d49;        /* Utility bar + footer */
  --c-navy-deep:   #00153a;
  --c-white:       #ffffff;
  --c-muted:       #9b9da3;
  --c-line:        #e6e8ec;
  --c-bg-soft:     #f7f8fa;
  --c-lime:        #afd600;        /* Momentum brand-accent (logo) */

  /* Secure palet (Cato content-thema) */
  --c-secure-deep:    #4A0A1A;
  --c-secure:         #E01A4F;
  --c-secure-soft:    #F5847A;
  --c-secure-pale:    #FBDCDA;

  /* Typografie - Avenir is het brand-font (gehost door Momentum US) */
  --f-heading: "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-body:    "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Schaal */
  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-md:   18px;
  --fs-lg:   20px;
  --fs-xl:   24px;
  --fs-2xl:  30px;
  --fs-3xl:  36px;
  --fs-4xl:  44px;
  --fs-5xl:  56px;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --radius: 3px;
  --ease: cubic-bezier(.4,.0,.2,1);

  --container: 1200px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.875;
  color: var(--c-text);
  background: var(--c-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-secure); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-secure-deep); }
strong, b { font-weight: 700; color: var(--c-heading); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  color: var(--c-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--sp-5);
}
h1 { font-size: clamp(36px, 4vw + 12px, 56px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 2vw + 12px, 40px); }
h3 { font-size: clamp(20px, 1vw + 12px, 24px); }
h4 { font-size: var(--fs-lg); }
p  { margin: 0 0 var(--sp-5); }

ul, ol { margin: 0 0 var(--sp-5); padding-left: 22px; }
li { margin-bottom: var(--sp-2); }

::selection { background: var(--c-secure); color: #fff; }

/* ---------- 3. LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
section { padding: clamp(60px, 6vw, 100px) 0; }
.section-soft { background: var(--c-bg-soft); }

/* ---------- 4. CATEGORIE EYEBROW (1-op-1 reproductie .ot-heading > span) ---------- */
.ot-eyebrow {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--c-secure);
  margin-bottom: var(--sp-4);
}

/* ---------- 5. BUTTONS (1-op-1 reproductie van gomomentum.eu .octf-btn) ---------- */
.octf-btn {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 15px;
  padding: 12px 20px 10px 20px;
  border-radius: var(--radius);
  border: 0;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s linear;
}
.octf-btn-dark,
.octf-btn-main {
  background: var(--c-secure);
  color: #fff;
}
.octf-btn-dark:hover,
.octf-btn-dark:focus,
.octf-btn-main:hover,
.octf-btn-main:focus {
  background: var(--c-secure-soft);
  color: #000;
}
.octf-btn-light {
  background: #fff;
  color: var(--c-secure);
}
.octf-btn-light:hover {
  background: var(--c-secure-soft);
  color: #000;
}
.octf-btn-border {
  background: transparent;
  color: var(--c-secure);
  box-shadow: inset 0 0 0 2px var(--c-secure);
}
.octf-btn-border:hover {
  background: var(--c-secure);
  color: #fff;
}
.octf-btn-border-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}
.octf-btn-border-light:hover {
  background: #fff;
  color: var(--c-dark);
  box-shadow: inset 0 0 0 2px #fff;
}

/* ---------- 6. TOP UTILITY BAR ---------- */
.utility-bar {
  background: var(--c-navy);
  color: #fff;
  font-size: 12px;
  font-family: var(--f-heading);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 0;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
}
/* Scope alleen op de directe contact-lijst, niet op het lang-switcher dropdown */
.utility-bar > .container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  text-transform: uppercase;
}
.utility-bar > .container > ul > li { margin: 0; }
.utility-bar a {
  color: #fff;
  font-weight: 500;
  transition: opacity .2s var(--ease);
}
.utility-bar a:hover { opacity: .7; color: #fff; }
.utility-bar .lang-switcher__menu a { color: var(--c-dark); }
.utility-bar .lang-switcher__menu a:hover { color: var(--c-secure); opacity: 1; }

/* Taalswitcher */
.lang-switcher { position: relative; }
.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.lang-switcher__toggle::before {
  content: "\25BC";
  font-size: 9px;
  margin-right: 4px;
}
.lang-switcher__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 1px;
  display: inline-block;
}
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,29,73,.15);
  padding: 8px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 1000;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__menu li { margin: 0; }
.lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-dark);
  padding: 8px 12px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  transition: background .15s var(--ease);
}
.lang-switcher__menu a:hover { background: var(--c-bg-soft); color: var(--c-secure); }

/* ---------- 7. HOOFD-NAVIGATIE (matcht gomomentum.eu hoofdmenu) ---------- */
.sticky-stack {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: var(--sp-8);
}
.site-header__logo img { height: 38px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav li { margin: 0; }
.main-nav a {
  color: var(--c-dark);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--c-secure); }
.main-nav .has-caret::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  display: inline-block;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-search {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--c-dark);
  transition: color .2s var(--ease);
}
.nav-search:hover { color: var(--c-secure); }
.nav-search svg { width: 18px; height: 18px; fill: currentColor; }

/* Lime CONTACT US-knop (zoals op live homepage) - dezelfde octf-btn maatvoering */
.octf-btn-lime {
  display: inline-block;
  background: var(--c-lime);
  color: var(--c-dark);
  border: 0;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 15px;
  text-transform: uppercase;
  padding: 12px 20px 10px 20px;
  border-radius: var(--radius);
  transition: all .3s linear;
}
.octf-btn-lime:hover,
.octf-btn-lime:focus {
  background: var(--c-dark);
  color: var(--c-lime);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-dark);
  margin: 6px 0;
  transition: all .25s var(--ease);
}

/* ---------- 7b. CLUSTER SUB-NAV (zit onder hoofdnav, sticky via .sticky-stack parent) ---------- */
.cluster-nav {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
}
.cluster-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 var(--sp-6);
  max-width: var(--container);
  margin: 0 auto;
}
.cluster-nav__label {
  flex-shrink: 0;
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secure);
  border: 1.5px solid var(--c-secure);
  border-radius: 999px;
  padding: 5px 12px 4px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}
.cluster-nav__label .cluster-nav__arrow {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}
.cluster-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.cluster-nav__list::-webkit-scrollbar { height: 4px; }
.cluster-nav__list::-webkit-scrollbar-thumb { background: var(--c-secure-pale); border-radius: 4px; }
.cluster-nav__list li { margin: 0; flex-shrink: 0; }
.cluster-nav__list a {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  padding: 16px 14px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.cluster-nav__list a:hover {
  color: var(--c-secure);
}
.cluster-nav__list a.is-active {
  color: var(--c-secure);
  border-bottom-color: var(--c-secure);
}

/* ---------- 8. HERO (Secure-thema, twee-koloms zoals origineel) ---------- */
.c-hero {
  position: relative;
  background-color: #F7F7F7;
  background-image: url("/assets/img/hero/secure-hero-bg.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(60px, 6vw, 90px) 0 clamp(70px, 7vw, 115px);
  overflow: hidden;
}
.c-hero .container { position: relative; z-index: 1; }
.c-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.c-hero__content { max-width: 560px; }
.c-hero h1 {
  margin-bottom: var(--sp-6);
}
.c-hero__lead {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.c-hero__lead:last-of-type { margin-bottom: var(--sp-8); }
.c-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.c-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
/* Cluster-page hero photo: aspect-ratio crop voor consistente weergave bij gemixte portrait/landscape foto's */
.c-hero__media img[src*="/photos/"] {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.c-unified__media img[src*="/photos/"] {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* ---------- 9. SECTION HEADER (eyebrow + heading) ---------- */
.section-header {
  margin-bottom: var(--sp-12);
}
.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-bottom: var(--sp-5);
}
.section-header__lead {
  font-size: var(--fs-md);
  color: var(--c-text);
  margin: 0;
}

/* ---------- 10. UNIFIED SECTION (2-kol: image + feature list) ---------- */
.c-unified {
  background: #fff;
}
.c-unified__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.c-unified__media img { width: 100%; border-radius: 4px; }

/* Feature lijst met ronde wijnrode bullet + checkmark */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  position: relative;
  padding: 12px 0 12px 44px;
  margin: 0;
  border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-text);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-secure);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.feature-list li strong {
  color: var(--c-heading);
  font-weight: 600;
}

/* ---------- 11. THRIVE FEATURES (3-koloms cards) ---------- */
.c-thrive {
  background: #fff;
}
.c-thrive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.thrive-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}
.thrive-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-secure);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.thrive-card__icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.thrive-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}
.thrive-card p {
  font-size: var(--fs-base);
  margin: 0;
}
.c-thrive__cta {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ---------- 12. WIJNRODE CATEGORIE-BAND (met rozige waas-texture) ---------- */
.c-category-band {
  background-color: var(--c-secure-deep);
  background-image: url("/assets/img/hero/cato-large-red-texture.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 110px 0;
}
.c-category-band .ot-eyebrow {
  color: var(--c-secure-soft);
}
.c-category-band h2 {
  color: #fff;
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 2vw + 14px, 40px);
}
.c-category-band .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

/* ---------- 13. TABLE OF CONTENTS ---------- */
.c-toc {
  background: var(--c-bg-soft);
}
.c-toc__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.c-toc p {
  font-weight: 600;
  color: var(--c-heading);
  font-family: var(--f-heading);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-md);
}
.c-toc ol {
  counter-reset: toc;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.c-toc li {
  padding: 16px 24px 16px 64px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  margin: 0;
}
.c-toc li:last-child { border-bottom: 0; }
.c-toc li::before {
  counter-increment: toc;
  content: "0" counter(toc);
  position: absolute;
  left: 24px;
  top: 16px;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-secure);
  letter-spacing: 0.04em;
}
.c-toc a {
  color: var(--c-heading);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: var(--fs-base);
}
.c-toc a:hover { color: var(--c-secure); }

/* ---------- 14. BODY CONTENT ---------- */
.c-body {
  background: #fff;
}
.c-body__inner {
  max-width: 820px;
  margin: 0 auto;
}
.c-body h2 {
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-5);
}
.c-body h2:first-child { margin-top: 0; }
.c-body h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  color: var(--c-heading);
}
.c-body p {
  font-size: var(--fs-base);
  line-height: 1.875;
  color: var(--c-text);
}
.c-body a {
  color: var(--c-secure);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.c-body a:hover {
  color: var(--c-secure-deep);
}

/* ---------- 15. EXPERT INSIGHT (callout, sober B2B) ---------- */
.c-expert {
  background: var(--c-bg-soft);
  padding: 70px 0;
}
.c-expert__wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-left: 4px solid var(--c-secure);
  padding: 32px 40px;
}
.c-expert__label {
  font-family: var(--f-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-secure);
  margin-bottom: var(--sp-3);
  display: block;
}
.c-expert p {
  font-size: var(--fs-md);
  color: var(--c-heading);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.c-expert__attribution {
  font-size: var(--fs-sm);
  color: var(--c-text);
  font-style: normal;
  margin: 0;
}

/* ---------- 16. CTA SECTIE (wijnrood met rozige waas-texture) ---------- */
.c-cta {
  background-color: var(--c-secure-deep);
  background-image: url("/assets/img/hero/cato-large-red-texture.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 130px 0;
}
.c-cta h2 {
  color: #fff;
  max-width: 24ch;
  margin: 0 auto var(--sp-5);
}
.c-cta p {
  color: rgba(255,255,255,.75);
  font-size: var(--fs-md);
  max-width: 60ch;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}
.c-cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.c-cta__sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
  margin: 0;
}
.c-cta__sub a {
  color: var(--c-secure-soft);
}
.c-cta__sub a:hover { color: #fff; }

/* ---------- 17. FAQ (1-op-1 reproductie van .ot-accordions van gomomentum.eu) ---------- */
.c-faq {
  background: var(--c-bg-soft);
}
.c-faq__list {
  max-width: 860px;
  margin: 0 auto;
}
.c-faq details {
  margin-bottom: 10px;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.c-faq details:last-child { margin-bottom: 0; }
.c-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 20px;
  font-family: var(--f-heading);
  font-size: 16px;
  font-weight: 600;
  color: #1b1d21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.5;
  transition: color .2s var(--ease);
}
.c-faq summary::-webkit-details-marker,
.c-faq summary::marker { display: none; }
.c-faq summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  margin-left: auto;
}
.c-faq details[open] {
  background: var(--c-secure);
  border-color: var(--c-secure);
}
.c-faq details[open] summary {
  color: #fff;
}
.c-faq details[open] summary::after {
  transform: rotate(45deg);
}
.c-faq details > div {
  padding: 20px 20px 12px;
  line-height: 30px;
  color: var(--c-text);
  font-size: 16px;
  background: #fff;
}
.c-faq details > div p:last-child { margin-bottom: 0; }

/* ---------- 18. RELATED ARTICLES (3-kol) ---------- */
.c-related {
  background: #fff;
}
.c-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.c-related__card {
  display: block;
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 32px;
  color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.c-related__card:hover {
  border-color: var(--c-secure);
  color: inherit;
  transform: translateY(-2px);
}
.c-related__card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}
.c-related__card p {
  color: var(--c-text);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}
.c-related__card .arrow {
  color: var(--c-secure);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- 19. FOOTER (1-op-1 reproductie van gomomentum.eu) ---------- */
.site-footer {
  background: #fff;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Footer top (wit) --- */
.footer-top { padding: 60px 0 30px; }
.footer-top__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}
.footer-top__logo img { height: 60px; width: auto; }
.footer-top__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.footer-help {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-dark);
  margin: 0;
}
.footer-help a {
  color: #7657F2;
  font-weight: 700;
  margin-left: 8px;
}
.footer-help a:hover { color: #4A0A1A; }

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-social li { margin: 0; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-lime);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.footer-social a:hover { transform: translateY(-2px); background: var(--c-secure); }
.footer-social svg { width: 18px; height: 18px; fill: var(--c-dark); }
.footer-social a:hover svg { fill: #fff; }

/* --- 5-koloms link-grid met gekleurde categorie-balkjes --- */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 30px;
}
.footer-col h4 {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-dark);
  margin: 0 0 16px;
  padding-bottom: 8px;
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--c-dark);
}
.footer-col--connect h4::after     { background: linear-gradient(90deg, var(--c-lime), rgba(175, 214, 0, 0)); }
.footer-col--collaborate h4::after { background: linear-gradient(90deg, #7657F2, rgba(118, 87, 242, 0)); }
.footer-col--engage h4::after      { background: linear-gradient(90deg, #2176FF, rgba(33, 118, 255, 0)); }
.footer-col--secure h4::after      { background: linear-gradient(90deg, var(--c-secure), rgba(224, 26, 79, 0)); }

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--c-text);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--c-secure); }

.footer-lang-row {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0 0;
}
.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}
.footer-lang img { width: 22px; height: 16px; }

/* --- Footer bottom (donker navy band) --- */
.footer-bottom {
  background: #001D4A;
  color: rgba(255,255,255,.85);
  padding: 28px 0;
}
.footer-bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-bottom__badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom__badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-bottom__badge img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-bottom__legal {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.footer-bottom__legal p { margin: 0; }
.footer-bottom__legal a {
  color: var(--c-lime);
  transition: opacity .2s var(--ease);
}
.footer-bottom__legal a:hover { opacity: .8; color: var(--c-lime); }

/* ---------- 20. SKIP LINK + A11Y ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-dark);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .c-hero__grid,
  .c-unified__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .c-hero__content { max-width: 100%; }
  .c-thrive__grid,
  .c-related__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.75; }
  html, body { overflow-x: hidden; }
  /* Slank utility-bar: alleen lang-switcher zichtbaar, contact-info en login-link verborgen */
  .utility-bar { padding: 6px 0; }
  .utility-bar .container { justify-content: flex-end; }
  .utility-bar > .container > ul { display: none; }
  .utility-bar .lang-switcher__menu { right: 0; min-width: 180px; }
  .brand-stripe { display: none; }
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    background: #fff;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,29,73,.15);
    transform: translateY(calc(-100% - 74px));
    transition: transform .3s var(--ease);
    z-index: 998;
    visibility: hidden;
  }
  .main-nav.is-open { transform: translateY(0); visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav-toggle { display: block; }
  .site-header__cta .octf-btn,
  .site-header__cta .octf-btn-lime { display: none; }
  .site-header { position: relative; z-index: 1000; background: #fff; }
  .site-header .container { gap: var(--sp-4); padding-top: 14px; padding-bottom: 14px; }

  .c-thrive__grid,
  .c-related__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  section { padding: 50px 0; }
  .c-cta { padding: 60px 0; }
}

/* ---------- 22. PRINT ---------- */
@media print {
  .utility-bar, .site-header, .site-footer, .c-cta, .c-related { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
