/* ============================================================
   MOOFPEOPLE - Main Stylesheet
   Dutch Payroll Company Website
   ============================================================ */

/* Self-hosted Montserrat (GDPR-compliant, no external requests) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/montserrat-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/montserrat-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Typography */
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Montserrat", serif;
  --title-size: min(9.7vw, 4.3rem);
  --title-line-height: 1.1;
  --font-size: clamp(1.5rem, 1.5vw, 1.5rem);
  --font-size-large: clamp(1.7rem, 2.2vw, 1.9rem);

  /* Colors - Light */
  --cl-light: #FFFFFF;
  --cl-light-90: rgba(255, 255, 255, 0.9);
  --cl-light-65: rgba(255, 255, 255, 0.65);
  --cl-light-35: rgba(255, 255, 255, 0.35);
  --cl-light-20: rgba(255, 255, 255, 0.2);
  --cl-light-10: rgba(255, 255, 255, 0.1);

  /* Colors - Dark (Moofpeople DNA: #171717) */
  --cl-dark: #171717;
  --cl-dark-90: rgba(23, 23, 23, 0.9);
  --cl-dark-75: rgba(23, 23, 23, 0.75);
  --cl-dark-50: rgba(23, 23, 23, 0.5);
  --cl-dark-20: rgba(23, 23, 23, 0.2);
  --cl-dark-10: rgba(23, 23, 23, 0.1);
  --cl-dark-5: rgba(23, 23, 23, 0.06);
  --cl-dark-light: #393636;
  --cl-dark-light-95: rgba(57, 54, 54, 0.95);

  /* Colors - Grey */
  --cl-grey: #D6D7D8;
  --cl-grey-90: rgba(214, 215, 216, 0.9);

  /* Colors - Brand (LMI Verto: beige vervangen door Ontplooiings-oranje voor frisser palet) */
  --cl-gold: #F0A876;
  --cl-gold-dark: #E08648;
  --cl-gold-light: #FCEAE0;
  --cl-gold-light-75: rgba(252, 234, 224, 0.75);
  --cl-gold-light-95: #FCEAE0;
  --cl-green: #7EC28F;
  --cl-green-light: #C8E5D0;
  --cl-green-light-97: rgba(200, 229, 208, 0.97);
  --cl-green-dark: #5aab7f;
  --cl-orange: #E08648;
  --cl-purple: #918AB7;
  --cl-purple-light: #D5D1E6;
  --cl-purple-light-97: rgba(213, 209, 230, 0.97);
  --cl-purple-dark: #6E6899;
  --cl-footer-purple: #8C8CB9;
  --cl-footer-green: #74C694;
  --cl-orange: #DB864E;
  --cl-orange-light: #FACCB9;

  /* Layout */
  --radius: 1.4rem;
  --radius-large: 2rem;
  --radius-small: 1rem;
  --space-grid: 2.5rem;
  --space-container: 2.5rem;
  --space-nav: 9.3rem;
  --overlap-height: 5em;

  /* Transitions */
  --trns-timing: 0.3s;
  --trns-ease: cubic-bezier(0.43, 0.06, 0.44, 0.99);
}

@media (min-width: 992px) {
  :root {
    --title-size: min(4vw, 5rem);
    --radius: 1.5rem;
    --radius-large: 3rem;
  }
}

@media (min-width: 1600px) {
  :root {
    --radius: 1.6rem;
  }
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--cl-dark);
  background-color: var(--cl-light);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trns-timing) var(--trns-ease);
}

ul,
ol {
  list-style: none;
}

/* ===== SPEELSE TEXT ACCENTEN ===== */
.text-accent {
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -0.05em;
  right: -0.05em;
  height: 0.32em;
  border-radius: 0.2em;
  z-index: -1;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.text-accent--green::after { background-color: var(--cl-green); }
.text-accent--orange::after { background-color: var(--cl-orange); }
.text-accent--purple::after { background-color: var(--cl-purple); }
.text-accent--gold::after { background-color: var(--cl-gold); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: var(--title-line-height);
}

h1 {
  font-size: var(--title-size);
}

h2 {
  font-size: calc(var(--title-size) * 0.9);
}

h3 {
  font-size: calc(var(--title-size) * 0.72);
}

/* ============================================================
   Page Loader
   ============================================================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--cl-gold-light-95), var(--cl-gold-light-95)), url(../images/texture-gold.jpg);
  background-position: center;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 99999;
  transition: opacity 0.6s var(--trns-ease), visibility 0.6s var(--trns-ease);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__words {
  position: relative;
  height: 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__word {
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 700;
  color: var(--cl-dark);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0;
  animation: loaderWordCycle 3s var(--trns-ease) infinite;
}

.page-loader__word:nth-child(1) {
  animation-delay: 0s;
}

.page-loader__word:nth-child(2) {
  animation-delay: 1s;
}

.page-loader__word:nth-child(3) {
  animation-delay: 2s;
}

@keyframes loaderWordCycle {
  0% {
    opacity: 0;
    transform: translate(-50%, 20%);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  40% {
    opacity: 0;
    transform: translate(-50%, -120%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -120%);
  }
}

.page-loader__spinner {
  width: 44px;
  height: 44px;
}

.page-loader__spinner svg {
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ============================================================
   Layout & Container
   ============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section {
  padding: 10rem 0;
}

.section--no-pad-top {
  padding-top: 0;
}

.section--no-pad-bottom {
  padding-bottom: 0;
}

.grid {
  display: grid;
  gap: var(--space-grid);
}

.grid--2-col {
  grid-template-columns: 1fr 1fr;
}

.grid--3-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-col {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   Typography
   ============================================================ */
.title-xl {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: var(--title-line-height);
  letter-spacing: -0.02em;
}

.title-lg {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  letter-spacing: -0.02em;
}

.title-md {
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.title-sm {
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-lg {
  font-size: var(--font-size-large);
  line-height: 1.5;
}

.text-md {
  font-size: var(--font-size);
  line-height: 1.6;
}

.text-sm {
  font-size: 1.4rem;
  line-height: 1.5;
}

.text-muted {
  color: var(--cl-dark-50);
}

.text-muted-light {
  color: var(--cl-light-35);
}

.section-label {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--cl-green);
}

.link--green {
  color: var(--cl-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.link--green:hover {
  color: var(--cl-dark);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9em 4.2em 0.9em 1.6em;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--trns-timing) var(--trns-ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn__arrow {
  position: absolute;
  right: 0.62em;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 3.2em;
  height: 3.2em;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  transition: transform var(--trns-timing) var(--trns-ease);
}

.btn:hover .btn__arrow {
  transform: translate3d(0, -50%, 0) scale(1.1);
}

/* Primary - Orange CTA */
.btn--primary {
  background-color: var(--cl-orange);
  color: var(--cl-light);
}

.btn--primary:hover {
  background-color: #c97540;
  padding-right: 3.4rem;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 134, 72, 0.35);
}

/* Dark button */
.btn--dark {
  background-color: var(--cl-dark);
  color: var(--cl-light);
}

.btn--dark:hover {
  background-color: var(--cl-dark-light);
  padding-right: 4.6em;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 23, 23, 0.25);
}

/* Light/outline button */
.btn--outline {
  background-color: transparent;
  color: var(--cl-dark);
  border: 2px solid var(--cl-dark);
}

.btn--outline:hover {
  background-color: var(--cl-dark);
  color: var(--cl-light);
  transform: scale(1.03);
}

/* Light button on dark bg */
.btn--light {
  background-color: var(--cl-light);
  color: var(--cl-dark);
}

.btn--light .btn__arrow {
  background-color: var(--cl-dark-10);
}

.btn--light:hover {
  background-color: var(--cl-light-90);
  transform: scale(1.03);
}

/* Small button */
.btn--sm {
  padding: 1rem 2rem;
  font-size: 1.4rem;
}

/* Link style button */
.btn--link {
  padding: 0;
  background: none;
  color: var(--cl-dark);
  font-weight: 600;
  gap: 0.8rem;
}

.btn--link:hover {
  transform: none;
}

.btn--link .btn__arrow {
  position: static;
  transform: none;
  width: auto;
  height: auto;
  font-size: 1.8rem;
  border-radius: 0;
  background-color: transparent;
}

.btn--link:hover .btn__arrow {
  transform: translateX(6px);
}

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
  background-color: transparent;
  color: var(--cl-dark);
  padding: 1.4rem 0;
  font-size: calc(var(--font-size) * 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-bar.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.top-bar__link {
  color: var(--cl-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  transition: color var(--trns-timing) var(--trns-ease);
}

.top-bar__link:hover {
  color: var(--cl-dark-75);
}

.top-bar__link svg,
.top-bar__link i {
  font-size: 1.4rem;
}

.top-bar__divider {
  width: 1px;
  height: 1.4rem;
  background-color: var(--cl-dark-20);
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  top: 3.2em;
  left: 0;
  width: 100%;
  background-color: var(--cl-light);
  z-index: 999;
  transition: all var(--trns-timing) var(--trns-ease);
  box-shadow: none;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.header.scrolled {
  box-shadow: 0 15px 25px var(--cl-dark-5);
  top: 0;
  border-radius: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  transition: padding var(--trns-timing) var(--trns-ease);
}

.header.scrolled .header__inner {
  padding: 1.2rem 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 5.6rem;
  width: auto;
  transition: height var(--trns-timing) var(--trns-ease);
}

.header.scrolled .header__logo img {
  height: 4.2rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 3rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.nav__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cl-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cl-dark);
  transition: width var(--trns-timing) var(--trns-ease);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Login item */
.nav__item--login .nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--cl-dark-20);
  border-radius: var(--radius-small);
  font-size: 1.3rem;
  transition: all var(--trns-timing) var(--trns-ease);
}

.nav__item--login .nav__link:hover {
  background-color: var(--cl-dark);
  color: var(--cl-light);
  border-color: var(--cl-dark);
}

.nav__item--login .nav__link::after {
  display: none;
}

.nav__item--login svg {
  flex-shrink: 0;
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__dropdown-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.nav__item--dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 22rem;
  background-color: var(--cl-light);
  border-radius: var(--radius-small);
  box-shadow: 0 10px 40px var(--cl-dark-10);
  padding: 1.2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--trns-timing) var(--trns-ease);
  pointer-events: none;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav__dropdown-link {
  display: block;
  padding: 0.8rem 2rem 0.8rem 3.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cl-dark-75);
  transition: all var(--trns-timing) var(--trns-ease);
  position: relative;
}

.nav__dropdown-link::before {
  content: '';
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/diamant-kleur.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.55;
  transition: opacity var(--trns-timing) var(--trns-ease), transform var(--trns-timing) var(--trns-ease);
}

.nav__dropdown-link:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.15) rotate(6deg);
}

.nav__dropdown-link:hover {
  color: var(--cl-dark);
  background-color: var(--cl-dark-10);
}

.nav__dropdown-label {
  display: block;
  padding: 0.8rem 2rem 0.2rem 3.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cl-dark-75);
  margin-top: 0.2rem;
  position: relative;
}

.nav__dropdown-label::before {
  content: '';
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/diamant-kleur.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.55;
}

.nav__dropdown-link--indent {
  padding-left: 4.4rem;
}

.nav__dropdown-link--indent::before {
  left: 2.8rem;
  width: 0.5rem;
  height: 0.5rem;
  background-image: none;
  background-color: var(--cl-dark-20);
  border-radius: 50%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__search {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid var(--cl-dark-20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trns-timing) var(--trns-ease);
}

.header__search:hover {
  background-color: var(--cl-dark);
  border-color: var(--cl-dark);
  color: var(--cl-light);
}

.header__search svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
}

/* btn__arrow-icon handled by .btn__arrow */

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1002;
}

.nav__toggle-bar {
  width: 2.4rem;
  height: 2px;
  background-color: var(--cl-dark);
  transition: all var(--trns-timing) var(--trns-ease);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  background: linear-gradient(var(--cl-gold-light-95), var(--cl-gold-light-95)), url(../images/texture-gold.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: calc(var(--space-nav) + 8rem) 0 0;
  overflow: hidden;
  position: relative;
}

/* Diamant watermark in hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(5deg);
  width: 60rem;
  height: 60rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='%23D7C69A' fill-opacity='0.09'/%3E%3Cpath d='M50 12 L90 55 L50 108 L10 55 Z' fill='none' stroke='%23D7C69A' stroke-width='0.5' stroke-opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  animation: diamant-float 6s ease-in-out infinite;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  padding: 4rem 0 6rem;
}

.hero__title {
  font-size: var(--title-size);
  font-weight: 500;
  line-height: var(--title-line-height);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--cl-dark);
}

.hero__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  margin-bottom: 3.5rem;
  max-width: 50rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  align-self: end;
}

.hero__image img {
  width: 100%;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  object-fit: cover;
}

/* News Card Overlay - Dark slider */
.hero__news-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--cl-dark);
  color: var(--cl-light);
  border-radius: 0 0 0 0;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: all var(--trns-timing) var(--trns-ease);
  z-index: 10;
}

.hero__news-card:hover {
  background-color: var(--cl-dark-light);
}

.hero__news-card-label {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cl-grey);
  margin-bottom: 0.6rem;
}

.hero__news-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: var(--cl-light);
  flex: 1;
}

.hero__news-card-date {
  font-size: 1.2rem;
  color: var(--cl-light-35);
  display: inline-block;
  background-color: var(--cl-grey);
  color: var(--cl-light);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-small);
  font-weight: 600;
}

.hero__news-card-arrow {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  border: 2px solid var(--cl-light-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-light);
  flex-shrink: 0;
  transition: all var(--trns-timing) var(--trns-ease);
}

.hero__news-card:hover .hero__news-card-arrow {
  border-color: var(--cl-light-35);
}

.hero__news-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ============================================================
   Partners / About Section (same gold bg)
   ============================================================ */
.partners {
  background: linear-gradient(var(--cl-gold-light-95), var(--cl-gold-light-95)), url(../images/texture-gold.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: 10rem 0 12rem;
}

.partners .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.partners__image {
  border-radius: var(--radius-large);
  overflow: hidden;
}

.partners__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.partners__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-bottom: 1.6rem;
}

.partners__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 2.4rem;
}

.partners__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ============================================================
   Services Section
   ============================================================ */
.services {
  padding: 12rem 0;
  background: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.services__diamant {
  position: absolute;
  right: -30rem;
  top: 50%;
  transform: translateY(-50%);
  width: 80rem;
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.services__box {
  background-color: var(--cl-light);
  border-radius: var(--radius-large);
  padding: 4rem;
  box-shadow: 0px 0px 35px var(--cl-dark-10);
  position: relative;
  z-index: 1;
}

.services__header {
  margin-bottom: 3rem;
}

.services__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
}

.services__list {
  border-top: none;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1.5px solid var(--cl-dark-20);
  cursor: pointer;
  transition: all var(--trns-timing) var(--trns-ease);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  padding-left: 1rem;
}

.service-item__number {
  width: auto;
  height: auto;
  min-width: auto;
  border-radius: var(--radius-small);
  background-color: var(--cl-green-light);
  color: var(--cl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.3em 0.7em;
  transition: background-color var(--trns-timing) var(--trns-ease);
}

.service-item:hover .service-item__number {
  background-color: var(--cl-green);
  color: var(--cl-light);
}

.service-item__title {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  flex: 1;
  line-height: 1.4;
}

.service-item__arrow {
  width: 3.2em;
  height: 3.2em;
  border-radius: 50%;
  background-color: var(--cl-green-light);
  color: var(--cl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all var(--trns-timing) var(--trns-ease);
  flex-shrink: 0;
}

.service-item:hover .service-item__arrow {
  background-color: var(--cl-green);
  color: var(--cl-light);
  transform: translateX(4px);
}

/* ============================================================
   Audience / Segments Section (Green)
   ============================================================ */
.audience {
  background: linear-gradient(var(--cl-green-light-97), var(--cl-green-light-97)), url(../images/texture-green-purple.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: 12rem 0;
  position: relative;
}

/* Diamant watermark in audience sectie */
.audience::after {
  content: '';
  position: absolute;
  bottom: -10rem;
  left: -8%;
  width: 42rem;
  height: 42rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='%237EC28F' fill-opacity='0.07'/%3E%3Cpath d='M50 10 L90 55 L50 110 L10 55 Z' fill='none' stroke='%237EC28F' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  animation: diamant-drift 10s ease-in-out infinite;
}

.audience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.audience__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-bottom: 1.6rem;
}

.audience__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 2.4rem;
}

.audience__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.audience__list {
  border-top: 1px solid var(--cl-dark-20);
}

.audience__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cl-dark-20);
  cursor: pointer;
  transition: all var(--trns-timing) var(--trns-ease);
}

.audience__list-item:hover {
  padding-left: 1rem;
}

.audience__list-item-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.audience__list-number {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-small);
  background-color: var(--cl-grey);
  color: var(--cl-dark);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.audience__list-item:nth-child(1):hover .audience__list-number {
  background-color: var(--cl-green);
  color: white;
  transform: scale(1.1);
}
.audience__list-item:nth-child(2):hover .audience__list-number {
  background-color: var(--cl-orange);
  color: white;
  transform: scale(1.1);
}
.audience__list-item:nth-child(3):hover .audience__list-number {
  background-color: var(--cl-purple);
  color: white;
  transform: scale(1.1);
}
.audience__list-item:nth-child(4):hover .audience__list-number {
  background-color: var(--cl-gold-dark);
  color: white;
  transform: scale(1.1);
}

.audience__list-title {
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 600;
}

.audience__list-arrow {
  font-size: 2rem;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.audience__list-item:hover .audience__list-arrow {
  transform: translateX(8px);
}

.audience__image {
  border-radius: var(--radius-large);
  overflow: hidden;
}

.audience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-large);
}

/* ============================================================
   Values Section (3 Tiles)
   ============================================================ */
.values {
  padding: 12rem 0;
  background: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}

/* Diamant watermark bij kernwaarden */
.values::before {
  content: '';
  position: absolute;
  top: -5rem;
  right: 5%;
  width: 30rem;
  height: 30rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg' opacity='0.035'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='%23918AB7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.values__header {
  text-align: center;
  margin-bottom: 5rem;
}

.values__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
}

.value-card {
  position: relative;
  color: var(--cl-light);
  border-radius: var(--radius-large);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42rem;
  overflow: hidden;
  transition: transform var(--trns-timing) var(--trns-ease);
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.20);
}

.value-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(0.5deg);
}

.value-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.value-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26,24,24,0.85) 30%, rgba(26,24,24,0.2) 100%);
  z-index: -1;
}

.value-card__number {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.3em 0.7em;
  border-radius: var(--radius-small);
  background-color: var(--cl-purple-light);
  color: var(--cl-purple);
  margin-bottom: 2rem;
  align-self: flex-start;
}

.value-card__title {
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 1.6rem;
  color: var(--cl-light);
}

.value-card__text {
  font-size: 1.5rem;
  line-height: 1.72;
  color: var(--cl-light-90);
}

/* ============================================================
   Testimonials Section (Purple)
   ============================================================ */
.testimonials {
  background: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: 10rem 0;
}

.testimonials__header {
  margin-bottom: 5rem;
}

.testimonials__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-bottom: 1.6rem;
}

.testimonials__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-grid);
}

.testimonial-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.testimonial-card:hover img {
  transform: scale(1.03);
}

.testimonial-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, var(--cl-dark-90), transparent);
  color: var(--cl-light);
}

.testimonial-card__title {
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.testimonial-card__date {
  font-size: 1.3rem;
  display: inline-block;
  background-color: var(--cl-purple-light);
  color: var(--cl-purple);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-small);
  font-weight: 600;
}

/* ============================================================
   About / Oog voor de mens Section (Purple continued)
   ============================================================ */
.about-people {
  background: linear-gradient(var(--cl-purple-light-97), var(--cl-purple-light-97)), url(../images/texture-green-purple.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: 10rem 0;
}

.about-people .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-people__image {
  border-radius: var(--radius-large);
  overflow: hidden;
}

.about-people__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.about-people__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-bottom: 1.6rem;
}

.about-people__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 2.4rem;
}

.about-people__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ============================================================
   Blog / Kennis & Inspiratie Section
   ============================================================ */
.blog {
  padding: 12rem 0;
  background: linear-gradient(rgba(255,255,255,0.97), rgba(255,255,255,0.97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
}

.blog .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.blog__header {
  position: sticky;
  top: 14rem;
}

.blog__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-bottom: 1.6rem;
}

.blog__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 3rem;
}

.blog__cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-card {
  display: flex;
  gap: 0;
  align-items: stretch;
  cursor: pointer;
  transition: transform var(--trns-timing) var(--trns-ease);
  background-color: var(--cl-light);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0px 0px 25px var(--cl-dark-5);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__image {
  border-radius: var(--radius);
  overflow: hidden;
  width: 40%;
  min-width: 40%;
  flex-shrink: 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2.4rem;
  flex: 1;
}

.blog-card__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}

.blog-card__tag--wet {
  background-color: rgba(135, 140, 180, 0.12);
  color: #878CB4;
}

.blog-card__tag--cao {
  background-color: rgba(112, 206, 155, 0.12);
  color: #5aab7f;
}

.blog-card__tag--blog {
  background-color: rgba(188, 173, 117, 0.12);
  color: var(--cl-gold-dark);
}

.blog-card__title {
  font-size: clamp(1.6rem, 1.3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 1.4rem;
  color: var(--cl-dark-75);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.blog-card__date {
  font-size: 1.3rem;
  display: inline-block;
  background-color: var(--cl-green-light);
  color: var(--cl-green);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-small);
  font-weight: 600;
}

.blog-card__arrow {
  font-size: 2rem;
  transition: transform var(--trns-timing) var(--trns-ease);
}

.blog-card:hover .blog-card__arrow {
  transform: translateX(6px);
}

/* Blog Quick Links */
.blog__quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.blog__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cl-dark-75);
  padding: 1rem 1.6rem;
  border: 1px solid var(--cl-dark-10);
  border-radius: var(--radius-small);
  transition: all var(--trns-timing) var(--trns-ease);
}

.blog__quick-link:hover {
  color: var(--cl-dark);
  border-color: var(--cl-dark-20);
  background: var(--cl-dark-5);
  transform: translateX(4px);
}

.blog__quick-link svg {
  flex-shrink: 0;
  color: var(--cl-green);
}

/* ============================================================
   Team Section
   ============================================================ */
.team {
  padding: 12rem 0;
  background: linear-gradient(var(--cl-purple-light-97), var(--cl-purple-light-97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%) rotate(-8deg);
  width: 28rem;
  height: 28rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg' opacity='0.04'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='%23918AB7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.team__header {
  text-align: center;
  margin-bottom: 5rem;
}

.team__title {
  font-size: clamp(3rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cl-dark);
  margin-bottom: 1.5rem;
}

.team__intro {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.7;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.team__avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cl-green) 0%, var(--cl-purple) 50%, var(--cl-gold) 100%);
  opacity: 0.85;
  transition: all var(--trns-timing) var(--trns-ease);
}

.team__member:nth-child(1) .team__avatar { background: linear-gradient(135deg, var(--cl-orange), #d4a26a); }
.team__member:nth-child(2) .team__avatar { background: linear-gradient(135deg, var(--cl-green), #a8d9b6); }
.team__member:nth-child(3) .team__avatar { background: linear-gradient(135deg, var(--cl-purple), #b8b3d1); }
.team__member:nth-child(4) .team__avatar { background: linear-gradient(135deg, var(--cl-gold), #e5dcc0); }
.team__member:nth-child(5) .team__avatar { background: linear-gradient(135deg, var(--cl-green), #6db88a); }
.team__member:nth-child(6) .team__avatar { background: linear-gradient(135deg, var(--cl-orange), #c97a3e); }

.team__member:hover .team__avatar {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.team__initial {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cl-light);
  letter-spacing: -0.02em;
}

.team__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cl-dark);
}

.team__name a {
  color: inherit;
  text-decoration: none;
}

.team__name a:hover {
  color: var(--cl-green);
}

.team__avatar-link {
  display: block;
  text-decoration: none;
}

.team__email {
  font-size: 1.2rem;
  color: var(--cl-dark-50);
  transition: color var(--trns-timing) var(--trns-ease);
}

.team__email:hover {
  color: var(--cl-purple);
}

.team__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  color: var(--cl-dark-50);
  transition: all var(--trns-timing) var(--trns-ease);
}

.team__linkedin:hover {
  color: #0A66C2;
  background: rgba(10, 102, 194, 0.08);
}

.team__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Volg ons op */
.team__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--cl-dark-10);
}

.team__social-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cl-dark-75);
}

.team__social-links {
  display: flex;
  gap: 1.5rem;
}

.team__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cl-dark-50);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--cl-dark-10);
  border-radius: 2rem;
  transition: all var(--trns-timing) var(--trns-ease);
}

.team__social-link:hover {
  color: var(--cl-dark);
  border-color: var(--cl-dark-20);
  background: var(--cl-light);
}

/* Responsive team grid */
@media (max-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .team__social {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ============================================================
   Page Hero (subpages)
   ============================================================ */
.page-hero {
  padding: 16rem 0 8rem;
  background: var(--cl-dark-5);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: 60rem;
  height: 60rem;
  background-image: url("../images/diamant-kleur.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: diamant-float 8s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -6rem;
  left: -4rem;
  width: 28rem;
  height: 28rem;
  background-image: url("../images/diamant-kleur.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.page-hero__content {
  max-width: 70rem;
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cl-dark);
  margin-bottom: 2rem;
}

.page-hero__text {
  font-size: var(--font-size-large);
  color: var(--cl-dark-75);
  line-height: 1.72;
}

.page-hero__diamant {
  width: 7rem;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: diamant-float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

@keyframes diamant-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* ============================================================
   About Mission Section
   ============================================================ */
.about-mission {
  padding: 12rem 0;
}

.about-mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-mission__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-mission__title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cl-dark);
  margin-bottom: 2rem;
}

.about-mission__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about-mission .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   About Values Section
   ============================================================ */
.about-values {
  padding: 12rem 0;
  background: var(--cl-dark-5);
  position: relative;
}

.about-values::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -3%;
  width: 30rem;
  height: 30rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,10 190,100 100,190 10,100' fill='none' stroke='%237EC28F' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.about-values__header {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 6rem;
  position: relative;
  z-index: 1;
}

.about-values__title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cl-dark);
  margin-bottom: 2rem;
}

.about-values__intro {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  line-height: 1.72;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.about-values__item {
  text-align: center;
}

.about-values__icon {
  width: 13rem;
  height: 13rem;
  border-radius: 1.6rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-values__item:hover .about-values__icon {
  transform: translateY(-6px) rotate(3deg);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.about-values__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values__icon--pattern {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-values__icon--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.about-values__icon-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.about-values__icon-symbol {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.about-values__item {
  transition: transform 0.3s ease;
  cursor: default;
}

.about-values__name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

/* Kernwaarden kleuren bij hover */
.about-values__item:nth-child(1):hover .about-values__name { color: var(--cl-green); }
.about-values__item:nth-child(2):hover .about-values__name { color: var(--cl-green); }
.about-values__item:nth-child(3):hover .about-values__name { color: var(--cl-gold-dark); }
.about-values__item:nth-child(4):hover .about-values__name { color: var(--cl-purple); }
.about-values__item:nth-child(5):hover .about-values__name { color: var(--cl-orange); }

.about-values__desc {
  font-size: 1.3rem;
  color: var(--cl-dark-50);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
  }
}

@media (max-width: 576px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

/* ============================================================
   About Careers Section
   ============================================================ */
.about-careers {
  padding: 12rem 0;
}

.about-careers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-careers__title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cl-dark);
  margin-bottom: 2rem;
}

.about-careers__text {
  font-size: var(--font-size);
  color: var(--cl-dark-75);
  line-height: 1.72;
  margin-bottom: 3rem;
}

.about-careers__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
  .about-careers .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-careers__image {
    order: -1;
  }
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta {
  background: linear-gradient(var(--cl-dark-light-95), var(--cl-dark-light-95)), url(../images/texture-gold.jpg);
  background-position: center;
  background-repeat: repeat;
  color: var(--cl-light);
  padding: 8rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Speelse diamant-decoratie in CTA */
.cta::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 20rem;
  height: 20rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='none' stroke='%23D7C69A' stroke-width='1.5' stroke-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  animation: diamant-float 6s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -6rem;
  left: -5rem;
  width: 16rem;
  height: 16rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 55 L50 120 L0 55 Z' fill='none' stroke='%237EC28F' stroke-width='1.5' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  animation: diamant-float 8s ease-in-out infinite reverse;
}

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

.cta__title {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  font-weight: 500;
  line-height: var(--title-line-height);
  margin-bottom: 0;
  flex: 1;
  min-width: 25rem;
}

.cta__text {
  font-size: var(--font-size);
  color: var(--cl-light-90);
  margin-bottom: 0;
  flex: 1;
  min-width: 25rem;
  line-height: 1.72;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta__icon-btn {
  width: 4.25em;
  height: 4.25em;
  border-radius: 50%;
  background-color: var(--cl-grey);
  color: var(--cl-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trns-timing) var(--trns-ease);
}

.cta__icon-btn:hover {
  background-color: var(--cl-light);
  transform: scale(1.05);
}

.cta__icon-btn svg {
  width: 2rem;
  height: 2rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: linear-gradient(rgba(214,215,216,0.97), rgba(214,215,216,0.97)), url(../images/texture-white.jpg);
  background-position: center;
  background-repeat: repeat;
  color: var(--cl-light);
  padding: 0;
  overflow: hidden;
}

.footer__inner {
  background: linear-gradient(var(--cl-dark-light-95), var(--cl-dark-light-95)), url(../images/texture-gold.jpg);
  background-position: center;
  background-repeat: repeat;
  padding: 8rem 0 0;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding-bottom: 6rem;
}

.footer__brand {
  padding-right: 4rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo img {
  height: 4rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  font-size: 1.4rem;
  color: var(--cl-light-90);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

.footer__social-link {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: var(--cl-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-dark);
  font-size: 1.6rem;
  transition: all var(--trns-timing) var(--trns-ease);
}

.footer__social-link:hover {
  background-color: var(--cl-light);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--cl-light);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__link {
  font-size: 1.4rem;
  color: var(--cl-light-90);
  transition: all var(--trns-timing) var(--trns-ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__link:hover {
  color: var(--cl-light);
  transform: translateX(4px);
}

/* Footer bottom bar */
.footer__bottom {
  background-color: var(--cl-dark-light);
  color: var(--cl-light-90);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer__copyright {
  font-size: 1.3rem;
  color: var(--cl-light-90);
}

.footer__bottom-links {
  display: flex;
  gap: 2.4rem;
}

.footer__bottom-link {
  font-size: 1.3rem;
  color: var(--cl-light-90);
  transition: color var(--trns-timing) var(--trns-ease);
}

.footer__bottom-link:hover {
  color: var(--cl-light);
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--trns-ease), transform 0.8s var(--trns-ease);
}

.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate--delay-1 {
  transition-delay: 0.1s;
}

.animate--delay-2 {
  transition-delay: 0.2s;
}

.animate--delay-3 {
  transition-delay: 0.3s;
}

.animate--delay-4 {
  transition-delay: 0.4s;
}

.animate--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--trns-ease), transform 0.8s var(--trns-ease);
}

.animate--scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   Utility Classes
   ============================================================ */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
  display: none !important;
}

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

/* ============================================================
   Responsive: Tablet (max-width: 1200px)
   ============================================================ */
@media (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 8rem 0;
  }

  .nav__list {
    gap: 2.4rem;
  }

  .hero .container {
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .values__grid {
    gap: 1.4rem;
  }

  .value-card {
    padding: 3rem 2.5rem;
    min-height: 34rem;
  }

  .services__box {
    padding: 3rem;
  }
}

/* ============================================================
   Responsive: Tablet Portrait (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .section {
    padding: 6rem 0;
  }

  /* Navigation mobile */
  .nav__toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 40rem;
    height: 100vh;
    background-color: var(--cl-light);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10rem 4rem 4rem;
    transform: translateX(100%);
    transition: transform var(--trns-timing) var(--trns-ease);
    box-shadow: -10px 0 40px var(--cl-dark-10);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 1.4rem 0;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--cl-dark-10);
    width: 100%;
  }

  .nav__link::after {
    display: none;
  }

  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0 0 0 2rem;
    display: none;
  }

  .nav__item--dropdown.open .nav__dropdown {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .header__cta--mobile {
    display: block;
    margin-top: 3rem;
    width: 100%;
  }

  .header__cta--mobile .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero__content {
    padding: 2rem 0 0;
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    max-width: 60rem;
    margin: 0 auto;
  }

  .hero__news-card {
    left: 2rem;
    bottom: 3rem;
  }

  /* 2-column grids become 1 */
  .partners .container,
  .audience .container,
  .about-people .container,
  .blog .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .blog__header {
    position: static;
  }

  /* Values grid */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .value-card {
    min-height: auto;
    padding: 3.5rem;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

/* ============================================================
   Responsive: Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  html {
    font-size: 58%;
  }

  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  /* Top bar */
  .top-bar {
    font-size: 1.2rem;
  }

  .top-bar .container {
    gap: 1.6rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-bar__divider {
    display: none;
  }

  /* Header */
  .header__inner {
    padding: 1.4rem 0;
  }

  .header__logo img {
    height: 4.2rem;
  }

  .header.scrolled .header__logo img {
    height: 3.4rem;
  }

  /* Hero */
  .hero {
    padding: 3rem 0 0;
  }

  .hero__title {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .hero__news-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -3rem 2rem 0;
  }

  /* Service items */
  .service-item {
    gap: 2rem;
    padding: 2rem 0;
  }

  .service-item__number {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    font-size: 1.5rem;
  }

  /* Blog cards */
  .blog-card {
    flex-direction: column;
  }

  .blog-card__image {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* CTA section */
  .cta {
    padding: 5rem 0;
  }

  .cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta__title {
    font-size: clamp(2.6rem, 6vw, 3.5rem);
  }

  .cta__actions {
    justify-content: center;
  }

  /* Footer */
  .footer__inner {
    padding: 5rem 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Buttons */
  .btn {
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
  }

  /* Audience list */
  .audience__list-item {
    padding: 1.6rem 0;
  }
}

/* ============================================================
   Responsive: Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1.6rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .top-bar .container {
    gap: 1rem;
    font-size: 1.1rem;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
  .page-loader,
  .top-bar,
  .header,
  .cta,
  .footer {
    display: none;
  }

  .section {
    padding: 2rem 0;
  }

  .animate {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}

/* ===== QUALITIES SECTION ===== */
.qualities-section {
  position: relative;
  overflow: hidden;
}

/* Diamant-honingraat patroon — brochure-stijl hexagonal tessellation */
.qualities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Tessellating diamond honeycomb: two offset rows creating seamless pattern */
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='120' viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L96 30 L96 90 L50 118 L4 90 L4 30 Z' fill='%23918AB7' fill-opacity='0.35' stroke='%23918AB7' stroke-width='1' stroke-opacity='0.6'/%3E%3Cpath d='M50 10 L88 34 L88 86 L50 110 L12 86 L12 34 Z' fill='none' stroke='%23918AB7' stroke-width='0.5' stroke-opacity='0.3'/%3E%3C/svg%3E");
  background-size: 8rem 9.6rem;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Grote decoratieve diamant — half in beeld rechtsonder */
.qualities-section::after {
  content: '';
  position: absolute;
  bottom: -12rem;
  right: -10rem;
  width: 40rem;
  height: 40rem;
  background-image: url("../images/diamant-kleur.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ===== QUALITIES GRID ===== */
.qualities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.quality-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 3.2rem 2.4rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--trns-timing) var(--trns-ease), box-shadow var(--trns-timing) var(--trns-ease);
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

/* Kleuraccent per kaart — de 5 Moofpeople kleuren */
.quality-card:nth-child(1) { border-top-color: var(--cl-green); }
.quality-card:nth-child(2) { border-top-color: var(--cl-orange); }
.quality-card:nth-child(3) { border-top-color: var(--cl-purple); }
.quality-card:nth-child(4) { border-top-color: var(--cl-gold); }
.quality-card:nth-child(5) { border-top-color: var(--cl-green); }
/* Laatste rij: 2 kaarten gecentreerd */

/* Subtiele grote diamant in de achtergrond van elke kaart */
.quality-card::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background-image: url("../images/diamant-kleur.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.quality-card:hover::after {
  opacity: 0.08;
  transform: scale(1.1) rotate(5deg);
}

.quality-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.quality-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1deg);
}

.quality-card__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.quality-card__diamant {
  width: 5.6rem;
  height: auto;
  margin-bottom: 2rem;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.06));
}

.quality-card:hover .quality-card__diamant {
  transform: scale(1.15) rotate(12deg);
  opacity: 1;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.10));
}

.quality-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cl-dark);
  margin-bottom: 1rem;
}

.quality-card p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--cl-dark-75);
}

/* Laatste rij: 2 items gecentreerd bij 3-kolom grid */
.qualities-grid .quality-card:nth-child(4) {
  grid-column: 1 / 2;
}
.qualities-grid .quality-card:nth-child(5) {
  grid-column: 2 / 3;
}

@media (max-width: 1024px) {
  .qualities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .qualities-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .quality-card {
    padding: 2.4rem 2rem;
  }
}

/* ===== DECORATIEVE DIAMANTEN — Globaal herbruikbaar ===== */
/* Grote diamant die half uit beeld steekt — voor op elke sectie */
.deco-diamant {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: url("../images/diamant-kleur.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.deco-diamant--left {
  left: -10rem;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 32rem;
  height: 32rem;
  opacity: 0.07;
  animation: diamant-drift 8s ease-in-out infinite;
}

.deco-diamant--right {
  right: -10rem;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 32rem;
  height: 32rem;
  opacity: 0.07;
  animation: diamant-drift 8s ease-in-out infinite reverse;
}

.deco-diamant--top-right {
  right: -8rem;
  top: -8rem;
  width: 28rem;
  height: 28rem;
  opacity: 0.06;
  animation: diamant-drift 10s ease-in-out infinite;
}

.deco-diamant--bottom-left {
  left: -8rem;
  bottom: -8rem;
  width: 28rem;
  height: 28rem;
  opacity: 0.06;
  animation: diamant-drift 10s ease-in-out infinite reverse;
}

@keyframes diamant-drift {
  0%, 100% { transform: translateY(-50%) rotate(-8deg) scale(1); }
  50% { transform: translateY(-52%) rotate(-5deg) scale(1.04); }
}

/* ===== HERBRUIKBAAR HONINGRAAT-PATROON ===== */
/* Voeg .honeycomb-bg toe aan elke sectie voor het diamant-honingraat effect */
.honeycomb-bg {
  position: relative;
  overflow: hidden;
}

.honeycomb-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='120' viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L96 30 L96 90 L50 118 L4 90 L4 30 Z' fill='%23918AB7' fill-opacity='0.35' stroke='%23918AB7' stroke-width='1' stroke-opacity='0.6'/%3E%3Cpath d='M50 10 L88 34 L88 86 L50 110 L12 86 L12 34 Z' fill='none' stroke='%23918AB7' stroke-width='0.5' stroke-opacity='0.3'/%3E%3C/svg%3E");
  background-size: 8rem 9.6rem;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* ===== DIAMANT SECTIE-DIVIDER ===== */
.section-divider-diamant {
  text-align: center;
  padding: 2rem 0;
  position: relative;
}

.section-divider-diamant::before {
  content: '';
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background-image: url("../images/diamant-kleur.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  animation: diamant-float 4s ease-in-out infinite;
}

/* Kleurvarianten van het honingraat-patroon */
.honeycomb-bg--green::before {
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='120' viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L96 30 L96 90 L50 118 L4 90 L4 30 Z' fill='%237EC28F' fill-opacity='0.3' stroke='%237EC28F' stroke-width='1' stroke-opacity='0.5'/%3E%3Cpath d='M50 10 L88 34 L88 86 L50 110 L12 86 L12 34 Z' fill='none' stroke='%237EC28F' stroke-width='0.5' stroke-opacity='0.25'/%3E%3C/svg%3E");
}

.honeycomb-bg--orange::before {
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='120' viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L96 30 L96 90 L50 118 L4 90 L4 30 Z' fill='%23E08648' fill-opacity='0.3' stroke='%23E08648' stroke-width='1' stroke-opacity='0.5'/%3E%3Cpath d='M50 10 L88 34 L88 86 L50 110 L12 86 L12 34 Z' fill='none' stroke='%23E08648' stroke-width='0.5' stroke-opacity='0.25'/%3E%3C/svg%3E");
}

.honeycomb-bg--gold::before {
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='120' viewBox='0 0 100 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L96 30 L96 90 L50 118 L4 90 L4 30 Z' fill='%23D7C69A' fill-opacity='0.3' stroke='%23D7C69A' stroke-width='1' stroke-opacity='0.5'/%3E%3Cpath d='M50 10 L88 34 L88 86 L50 110 L12 86 L12 34 Z' fill='none' stroke='%23D7C69A' stroke-width='0.5' stroke-opacity='0.25'/%3E%3C/svg%3E");
}

/* ===== KERNWAARDEN DECORATIEVE VISUALS ===== */
/* Subtiele kernwaarde-iconen als achtergrond-decoratie */
.deco-kernwaarde {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.04;
}

.deco-kernwaarde--passie   { background-image: url("../images/kernwaarde-passie.jpg"); }
.deco-kernwaarde--ambitie  { background-image: url("../images/kernwaarde-ambitie.jpg"); }
.deco-kernwaarde--delen    { background-image: url("../images/kernwaarde-delen.jpg"); }
.deco-kernwaarde--karakter { background-image: url("../images/kernwaarde-karakter.jpg"); }
.deco-kernwaarde--samen    { background-image: url("../images/kernwaarde-samen.jpg"); }

.deco-kernwaarde--lg {
  width: 28rem;
  height: 28rem;
}

.deco-kernwaarde--md {
  width: 18rem;
  height: 18rem;
}

.deco-kernwaarde--sm {
  width: 12rem;
  height: 12rem;
}

/* ===== NIEUWS PAGINA — Redesign ===== */

/* Featured article — groot uitgelicht boven de grid */
.news-featured {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--cl-dark);
  margin-bottom: 4rem;
  min-height: 42rem;
  display: flex;
  align-items: flex-end;
}

.news-featured__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-featured:hover .news-featured__image img {
  transform: scale(1.04);
}

.news-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 23, 23, 0.92) 0%,
    rgba(23, 23, 23, 0.6) 40%,
    rgba(23, 23, 23, 0.15) 100%
  );
  z-index: 1;
}

.news-featured__content {
  position: relative;
  z-index: 2;
  padding: 4rem 4.8rem;
  max-width: 70rem;
}

.news-featured__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 1.4rem;
  border-radius: 2rem;
  background: var(--cl-green);
  color: var(--cl-light);
  margin-bottom: 1.6rem;
}

.news-featured__title {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--cl-light);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.news-featured__excerpt {
  font-size: 1.6rem;
  color: var(--cl-light-90);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 56rem;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.news-featured__date {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cl-light-35);
}

.news-featured__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cl-green);
  transition: gap 0.3s ease;
}

.news-featured:hover .news-featured__read-more {
  gap: 1rem;
}

/* Categorie filter tags */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  align-items: center;
}

.news-filters__label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cl-dark-50);
  margin-right: 0.8rem;
}

.news-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 10rem;
  border: 1.5px solid var(--cl-dark-10);
  background: var(--cl-light);
  color: var(--cl-dark-75);
  cursor: pointer;
  transition: all 0.25s ease;
}

.news-filter:hover {
  border-color: var(--cl-dark-20);
  color: var(--cl-dark);
  background: var(--cl-dark-5);
}

.news-filter.active {
  background: var(--cl-dark);
  color: var(--cl-light);
  border-color: var(--cl-dark);
}

.news-filter__count {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--cl-dark-10);
  color: var(--cl-dark-50);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-filter.active .news-filter__count {
  background: var(--cl-light-20);
  color: var(--cl-light-90);
}

/* News grid — visueel rijkere kaarten */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--cl-light);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.news-card__image {
  position: relative;
  overflow: hidden;
  height: 22rem;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.06);
}

/* Kleur-accent lijn onder afbeelding */
.news-card__accent {
  height: 3px;
  background: var(--cl-green);
}

.news-card--wet .news-card__accent { background: var(--cl-purple); }
.news-card--hr .news-card__accent { background: var(--cl-orange); }
.news-card--intl .news-card__accent { background: var(--cl-gold); }
.news-card--payroll .news-card__accent { background: var(--cl-green); }

.news-card__body {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.2rem;
}

.news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-card__tag {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}

.news-card__tag--wet {
  background: rgba(145, 138, 183, 0.12);
  color: var(--cl-purple);
}

.news-card__tag--hr {
  background: rgba(224, 134, 72, 0.12);
  color: var(--cl-orange);
}

.news-card__tag--intl {
  background: rgba(224, 134, 72, 0.12);
  color: #E08648;
}

.news-card__tag--payroll {
  background: rgba(126, 194, 143, 0.12);
  color: #5aab7f;
}

.news-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cl-dark);
  margin: 0;
}

.news-card__excerpt {
  font-size: 1.4rem;
  color: var(--cl-dark-75);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cl-dark-5);
  margin-top: auto;
}

.news-card__date {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cl-dark-50);
}

.news-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cl-green);
  transition: gap 0.3s ease;
}

.news-card:hover .news-card__read {
  gap: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }

  .news-featured__content {
    padding: 3rem;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .news-featured {
    min-height: 34rem;
  }

  .news-featured__content {
    padding: 2.4rem;
  }

  .news-featured__title {
    font-size: 2.2rem;
  }

  .news-filters {
    gap: 0.6rem;
  }

  .news-filter {
    font-size: 1.2rem;
    padding: 0.5rem 1.2rem;
  }
}

/* ============================================================
   TRUST BAR (Homepage)
   ============================================================ */
.trust-bar {
  background: var(--cl-dark);
  padding: 3rem 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar__stat {
  text-align: center;
  flex: 1;
  min-width: 12rem;
}

.trust-bar__number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cl-green);
  line-height: 1.2;
}

.trust-bar__label {
  display: block;
  font-size: 1.2rem;
  color: var(--cl-light-65);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── USP Bar ── */
.usp-bar {
  padding: 3rem 0;
  background: var(--cl-light);
  border-bottom: 1px solid rgba(26,24,24,0.06);
}
.usp-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.usp-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.usp-bar__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-bar__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--cl-dark);
}
.usp-bar__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cl-dark-75);
  margin: 0;
}
@media (max-width: 768px) {
  .usp-bar__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Photo placeholder suggestion */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  background: linear-gradient(135deg, #FCEAE0 0%, #FBDCCA 100%);
  border: 2px dashed var(--cl-dark-25);
  border-radius: 1.2rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid var(--cl-dark-10);
  opacity: 0.5;
  z-index: 0;
}
.photo-placeholder__text {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--cl-dark-75);
  font-style: italic;
  max-width: 28rem;
}
.photo-placeholder__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cl-green);
  margin-bottom: 0.8rem;
  font-style: normal;
}

/* Values strip - kernwaarden patronen */
.values-strip {
  margin-top: 4rem;
  width: 100%;
  opacity: 0.35;
}
.values-strip__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Audience list description */
.audience__list-desc {
  display: block;
  font-size: 1.3rem;
  color: var(--cl-dark-50);
  margin-top: 0.3rem;
  font-weight: 400;
}

.audience__list-item:hover .audience__list-desc {
  color: var(--cl-dark-75);
}

@media (max-width: 768px) {
  .trust-bar__inner {
    justify-content: center;
    gap: 2.5rem 1.5rem;
  }

  .trust-bar__stat {
    min-width: 10rem;
    flex: 0 0 calc(50% - 1rem);
  }
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  padding: 6rem 0;
}
.contact-info .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-info__card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 2.4rem;
  box-shadow: 0 2px 16px rgba(26, 24, 24, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 24, 24, 0.10);
}
.contact-info__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cl-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-info__card-title svg {
  flex-shrink: 0;
  color: var(--cl-green);
}
.contact-info__card p,
.contact-info__card a {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cl-dark-65);
}
.contact-info__card a {
  color: var(--cl-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info__card a:hover {
  color: var(--cl-dark);
}
.contact-info__general {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-info__general-item {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 16px rgba(26, 24, 24, 0.06);
}
.contact-info__general-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cl-dark-35);
  margin-bottom: 0.5rem;
}
.contact-info__general-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cl-dark);
}
.contact-info__general-value a {
  color: var(--cl-green);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info__general-value a:hover {
  color: var(--cl-dark);
}

/* Contact form */
.contact-form {
  padding: 6rem 0;
  background: var(--cl-light);
}
.contact-form .container {
  max-width: 720px;
}
.contact-form__header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-form__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cl-dark);
  margin-bottom: 1rem;
}
.contact-form__header p {
  font-size: 1.1rem;
  color: var(--cl-dark-65);
  line-height: 1.7;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cl-dark);
}
.contact-form__label span {
  color: var(--cl-green);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0ddd8;
  border-radius: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--cl-dark);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--cl-green);
  box-shadow: 0 0 0 3px rgba(126, 194, 143, 0.15);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--cl-dark-35);
}
.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231A1818' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.8rem;
}
.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form__submit {
  align-self: flex-start;
}

/* Map placeholder */
.contact-map {
  padding: 0 0 6rem;
}
.contact-map__placeholder {
  background: #e8e5e0;
  border-radius: 1.2rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-dark-35);
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-map__placeholder svg {
  margin-right: 0.6rem;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-info .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info__general {
    grid-template-columns: 1fr;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-map__placeholder {
    height: 280px;
  }
}

/* ===== QUOTE BLOCK =====
   Bestaande quotes van bekende denkers, te plaatsen tussen secties.
   Varianten: green (do good), orange (medewerker), gold (klanten), purple (werkgever/over ons/wat we doen)
*/
.quote-block {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block .container {
  max-width: 80rem;
  position: relative;
}
.quote-block__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12rem;
  line-height: 0.8;
  font-weight: 700;
  display: block;
  margin-bottom: -2rem;
  opacity: 0.35;
  user-select: none;
}
.quote-block__text {
  font-size: 2.4rem;
  line-height: 1.45;
  font-weight: 500;
  font-style: italic;
  margin: 0 auto 2rem;
  max-width: 70rem;
  color: var(--cl-dark);
}
.quote-block__author {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cl-dark-75);
  display: inline-block;
  position: relative;
  padding-top: 1.2rem;
}
.quote-block__author::before {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 0 auto 1.2rem;
  background: currentColor;
  opacity: 0.4;
}

/* Color variants */
.quote-block--green {
  background: var(--cl-green-light);
}
.quote-block--green .quote-block__mark { color: var(--cl-green-dark); }

.quote-block--orange {
  background: rgba(224, 134, 72, 0.10);
}
.quote-block--orange .quote-block__mark { color: var(--cl-orange); }

.quote-block--purple {
  background: var(--cl-purple-light);
}
.quote-block--purple .quote-block__mark { color: var(--cl-purple); }

.quote-block--gold {
  background: var(--cl-gold-light);
}
.quote-block--gold .quote-block__mark { color: var(--cl-gold-dark); }

@media (max-width: 768px) {
  .quote-block { padding: 4rem 0; }
  .quote-block__mark { font-size: 8rem; margin-bottom: -1.2rem; }
  .quote-block__text { font-size: 1.8rem; }
  .quote-block__author { font-size: 1.15rem; }
}
