/* Basisstijl — wordt uitgewerkt in Blok 2 (designsysteem).
   Houd alle kleuren/typografie via tokens.css. */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space); }
h1, h2, h3 { font-family: var(--font-display); text-transform: var(--kop-transform); font-weight: var(--kop-weight); line-height: 1.1; }
a { color: var(--color-primary); }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* === TYPOGRAFIESCHAAL === */
h1, .display { font-size: clamp(2rem,   5vw,   3.5rem); }
h2           { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3           { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4           { font-size: clamp(1rem,   2vw,   1.25rem); font-weight: 700; font-family: var(--font-display); }
.lead        { font-size: clamp(1rem,   1.5vw, 1.2rem); }
.small       { font-size: 0.875rem; }

/* === KNOPPEN === */
.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary       { background: var(--mint);    color: var(--petrol); border-color: var(--mint);   }
.btn--primary:hover { opacity: 0.88; }
.btn--outline       { background: transparent;     color: var(--petrol); border-color: var(--petrol); }
.btn--outline:hover { background: var(--petrol);   color: var(--white);  border-color: var(--petrol); }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none !important; }
}

/* === HEXAGON-UTILITY === */
/* clip-path staat in tokens.css — hier alleen aanvullingen */
.hex         { aspect-ratio: 1 / 1; }
.hex--mint   { background: var(--mint);   color: var(--petrol); }
.hex--petrol { background: var(--petrol); color: var(--white);  }
.hex--teal   { background: var(--teal);   color: var(--white);  }
.hex--mist   { background: var(--mist);   color: var(--petrol); }

/* === SECTIE-RITME === */
.section        { padding: 5rem 0; }
.section--alt   { background: var(--color-bg-alt); }
.section__title { margin-bottom: 1rem; }
.section__lead  {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-muted);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--petrol);
  color: var(--white);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 64px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}
.site-header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.site-header__nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] { border-bottom-color: var(--mint); }

.site-header__cta {
  flex-shrink: 0;
  display: inline-block;
  background: var(--mint);
  color: var(--petrol);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.site-header__cta:hover { opacity: 0.88; }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  color: var(--white);
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobiel overlay-menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--petrol);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.mobile-nav__links {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.mobile-nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.mobile-nav__links a[aria-current="page"] { color: var(--mint); }
.mobile-nav__cta {
  display: block;
  background: var(--mint);
  color: var(--petrol);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
}

@media (max-width: 767px) {
  .site-header__nav,
  .site-header__cta { display: none; }
  .site-header__burger { display: flex; }
  .mobile-nav.is-open { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav__panel,
  .site-header__nav a,
  .site-header__cta { transition: none !important; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--petrol);
  color: var(--white);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 200px;
}
.cookie-banner__link { color: var(--mint); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner__btn { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* === FOOTER === */
.site-footer {
  background: var(--petrol);
  color: var(--white);
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  flex-wrap: wrap;
}
.site-footer__tagline {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}
.site-footer__social {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__social a:hover { color: var(--mint); }
.site-footer__social svg { width: 24px; height: 24px; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-on-dark);
}
.site-footer__col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1rem;
}
.site-footer__col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__col-links a {
  color: var(--sage);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.site-footer__col-links a:hover { color: var(--white); }
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--sage);
  flex-wrap: wrap;
}
.site-footer__legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__legal-links a {
  color: var(--sage);
  text-decoration: none;
}
.site-footer__legal-links a:hover { color: var(--white); }
@media (prefers-reduced-motion: reduce) {
  .site-footer__social a,
  .site-footer__col-links a,
  .site-footer__legal-links a { transition: none !important; }
}

/* === HERO === */
.hero {
  background: var(--petrol);
  color: var(--white);
  overflow: hidden;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 480px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero__text { flex: 6; min-width: 0; }
.hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: pre-line;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__lead {
  color: var(--mist);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--outline-white { color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--petrol); border-color: var(--white); }
.hero__media { flex: 4; min-width: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
@media (max-width: 767px) {
  .hero__inner { flex-direction: column; min-height: auto; padding-top: 2rem; padding-bottom: 2rem; }
  .hero__media { width: 100%; }
  .hero__img { max-height: 260px; }
}

/* === STATS === */
.stats { padding: 4rem 0; background: var(--color-bg); }
.stats--petrol { background: var(--petrol); }
.stats--mist   { background: var(--mist); }
.stats__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.stats__item { width: 140px; }
.stats__hex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.5rem 0.5rem;
}
.stats__value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
}
.stats__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === METHODES === */
.methodes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.methodes__card {
  background: var(--color-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.methodes__hex { width: 72px; flex-shrink: 0; }
.methodes__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-ink);
}
.methodes__desc { color: var(--color-muted); font-size: 0.95rem; flex: 1; }
.methodes__link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.methodes__link:hover { color: var(--petrol); }

/* === PRICING === */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}
.pricing__card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing__card--featured { border-color: var(--mint); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.pricing__badge {
  display: inline-block;
  background: var(--mint);
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
}
.pricing__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
}
.pricing__price-wrap { display: flex; align-items: baseline; gap: 0.5rem; }
.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--petrol);
}
.pricing__unit { font-size: 0.875rem; color: var(--color-muted); }
.pricing__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pricing__features li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.pricing__cta { align-self: stretch; text-align: center; }

/* === CASES === */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.cases__card {
  background: var(--color-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cases__sport {
  display: inline-block;
  background: var(--petrol);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
}
.cases__field { display: flex; flex-direction: column; gap: 0.25rem; }
.cases__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}
.cases__value { font-size: 0.95rem; }
.cases__measurements {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
}
.cases__measurements li::before { content: "— "; color: var(--color-muted); }

/* === CTA-BLOCK === */
.cta-block {
  background: var(--petrol);
  color: var(--white);
  padding: 5rem 0;
}
.cta-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.cta-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.cta-block__lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--mist);
  max-width: 50ch;
}

/* === PARTNERS === */
.partners { padding: 3rem 0; }
.partners__heading { margin-bottom: 2rem; }
.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  flex-shrink: 0;
}
.partners__logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.partners__logo:hover img { filter: grayscale(0%); opacity: 1; }

/* === AANGESLOTEN BEDRIJVEN === */
.aangesloten__grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.aangesloten__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
}
.aangesloten__logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.aangesloten__name {
  font-weight: 600;
  color: var(--petrol);
  font-size: 0.95rem;
}
.aangesloten__link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.25rem;
}

/* === PAGE-HEADER === */
.page-header {
  background: var(--petrol);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.page-header__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-header__lead {
  max-width: 58ch;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--mist);
  line-height: 1.6;
}

/* === SESSION-STEPS === */
.session-steps__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.session-steps__item {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.session-steps__number {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.session-steps__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.4rem;
  text-transform: none;
}
.session-steps__description {
  font-size: 0.9rem;
  color: var(--teal);
  line-height: 1.6;
}

/* === FAQ === */
.faq__list {
  display: grid;
  gap: 1.5rem;
  max-width: 72ch;
  margin: 2rem auto 0;
}
.faq__item {
  border-left: 4px solid var(--mint);
  padding-left: 1.5rem;
}
.faq__question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.faq__answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--teal);
}

/* === METHODE-UITLEG === */
.methode-uitleg__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
.methode-uitleg__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--teal);
}
.methode-uitleg__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.methode-uitleg__spec {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--petrol);
}
.methode-uitleg__spec::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
@media (max-width: 767px) {
  .methode-uitleg__body { grid-template-columns: 1fr; }
}

/* === METHODE-VOOR-WIE === */
.methode-voor-wie__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.methode-voor-wie__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--mint);
}
.methode-voor-wie__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.methode-voor-wie__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
}

/* === METHODE-RAPPORT === */
.methode-rapport__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
}
.methode-rapport__item {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.methode-rapport__item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.methode-rapport__cta {
  display: inline-block;
  margin-top: 2rem;
}

/* === DOELGROEPEN-HUB === */
.doelgroepen { /* block hook */ }
.doelgroepen__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.doelgroepen__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--line);
}
.doelgroepen__hex {
  width: 2.5rem;
  height: 2.5rem;
}
.doelgroepen__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: none;
}
.doelgroepen__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
  flex: 1;
}
.doelgroepen__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
}
.doelgroepen__link:hover { text-decoration: underline; }

/* === DOELGROEP-VOORDELEN === */
.doelgroep-voordelen { /* block hook */ }
.doelgroep-voordelen__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.doelgroep-voordelen__item {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--mint);
}
.doelgroep-voordelen__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.doelgroep-voordelen__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
}

/* === DOELGROEP-METHODES === */
.doelgroep-methodes { /* block hook */ }
.doelgroep-methodes__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.doelgroep-methodes__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.doelgroep-methodes__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: none;
}
.doelgroep-methodes__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
  flex: 1;
}
.doelgroep-methodes__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
}
.doelgroep-methodes__link:hover { text-decoration: underline; }

/* === DOELGROEP-AANBOD === */
.doelgroep-aanbod { /* block hook */ }
.doelgroep-aanbod__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.doelgroep-aanbod__item {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--mint);
}
.doelgroep-aanbod__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.25rem;
}
.doelgroep-aanbod__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.doelgroep-aanbod__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
}
.doelgroep-aanbod__note {
  font-size: 0.85rem;
  color: var(--teal);
  margin-top: 1rem;
  font-style: italic;
}

/* === SPORTEN-HUB === */
.sporten { /* block hook */ }
.sporten__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.sporten__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--line);
}
.sporten__hex {
  width: 2.5rem;
  height: 2.5rem;
}
.sporten__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: none;
}
.sporten__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
  flex: 1;
}
.sporten__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
}
.sporten__link:hover { text-decoration: underline; }

/* === SPORT-MEETFOCUS === */
.sport-meetfocus { /* block hook */ }
.sport-meetfocus__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--teal);
  margin-bottom: 2rem;
  max-width: 65ch;
}
.sport-meetfocus__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.sport-meetfocus__item {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--mint);
}
.sport-meetfocus__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
  text-transform: none;
}
.sport-meetfocus__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
}

/* === SPORT-METHODES === */
.sport-methodes { /* block hook */ }
.sport-methodes__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.sport-methodes__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sport-methodes__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: none;
}
.sport-methodes__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--teal);
  flex: 1;
}
.sport-methodes__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
}
.sport-methodes__link:hover { text-decoration: underline; }

/* === RESULTATEN === */
.resultaten { /* block hook */ }
.resultaten__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 0;
  padding: 0;
}
.resultaten__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
}
.resultaten__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.resultaten__sport {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--petrol);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
}
.resultaten__tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--petrol);
  background: var(--mist);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
}
.resultaten__partner {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
}
.resultaten__situatie {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--teal);
}
.resultaten__metingen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.resultaten__meting {
  font-size: 0.875rem;
  color: var(--petrol);
  padding-left: 1.25rem;
  position: relative;
}
.resultaten__meting::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.resultaten__kernresultaat {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.5;
  border-left: 4px solid var(--mint);
  padding-left: 0.75rem;
}
.resultaten__advies {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--teal);
}

/* === PARTNERS === */
.partners-map-section {
  margin: 0;
  padding: 2rem 0 0;
}
.partners-map-section .wrap {
  padding-bottom: 1.25rem;
}
.partners-map__canvas {
  width: 100%;
  height: 500px;
  display: block;
}
@media (max-width: 680px) {
  .partners-map__canvas { height: 320px; }
}
.map-popup {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: inherit;
  min-width: 160px;
  padding: 0.25rem 0.25rem 0.5rem;
}
.map-popup__type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  font-weight: 600;
}
.map-popup__name {
  font-size: 0.95rem;
  color: var(--petrol);
  font-weight: 700;
}
.map-popup__city {
  font-size: 0.85rem;
  color: #666;
}
.map-popup__link {
  font-size: 0.82rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: 0.25rem;
}
.map-popup__link:hover { text-decoration: underline; }
.partners__intro {
  font-size: 0.95rem;
  color: var(--teal);
  margin: 0.5rem 0 0;
  line-height: 1.65;
}
.partners__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.partners__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--line);
}
.partners__card .partners__logo {
  display: block;
  max-width: 120px;
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.partners__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--petrol);
  text-transform: none;
  margin: 0;
}
.partners__city {
  font-size: 0.875rem;
  color: var(--teal);
  margin: 0;
}
.partners__link {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
}
.partners__link:hover {
  color: var(--petrol);
}

/* =====================================================================
   FLEX-BLOCKS — flexibele pagina-blokken (tekst, tekst+foto, hexagonen)
   ===================================================================== */

/* --- Basis --- */
.flex-block { padding: 5rem 0; }
.flex-block__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.flex-block__body { max-width: 68ch; line-height: 1.75; }
.flex-block__body p  { margin-bottom: 1rem; }
.flex-block__body ul,
.flex-block__body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.flex-block__body li { margin-bottom: 0.4rem; }
.flex-block__cta { margin-top: 2rem; }

/* --- Tekst + foto layout --- */
.flex-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.flex-block--text .flex-block__inner { grid-template-columns: 1fr; }
.flex-block--text .flex-block__body { max-width: 72ch; }

/* Foto rechts (standaard) */
.flex-block__inner--rechts .flex-block__content { order: 1; }
.flex-block__inner--rechts .flex-block__media   { order: 2; }

/* Foto links */
.flex-block__inner--links .flex-block__content { order: 2; }
.flex-block__inner--links .flex-block__media   { order: 1; }

.flex-block__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 680px) {
  .flex-block__inner {
    grid-template-columns: 1fr;
  }
  .flex-block__inner--links .flex-block__content,
  .flex-block__inner--rechts .flex-block__content { order: 1; }
  .flex-block__inner--links .flex-block__media,
  .flex-block__inner--rechts .flex-block__media   { order: 2; }
}

/* --- Hexagonen blok (groter dan stats) --- */
.flex-hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}
.flex-hex-item {
  width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-hex {
  width: 200px;
  aspect-ratio: 1 / 1;
  background: var(--mint);
  -webkit-clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
          clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  position: absolute;
  top: 0;
  left: 0;
}
.flex-hex-item__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  aspect-ratio: 1 / 1;
  padding: 1.5rem 0.75rem;
  text-align: center;
  color: var(--petrol);
}
.flex-hex-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.flex-hex-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
  display: block;
}
.flex-block__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}
.flex-block__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.flex-block__caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--teal);
  text-align: center;
}
