/* ============================================
   HART — Heldere Aanpak. Rechtvaardige Toekomst.
   Brand Style System
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Symbols+Rounded');

:root {
  /* Brand Colors */
  --blue-1000: #031025;
  --blue-900: #051E46;
  --bynder-blue: #126DFE;
  --mild-purple: #A1ACFF;
  --light-purple: #CDCCFF;
  --light-blue: #ECF3FF;
  --white: #FFFFFF;
  --green: #0E6765;
  --violet: #B080EF;
  --yellow: #FCD640;

  /* Semantic */
  --bg-dark: var(--blue-1000);
  --bg-medium: var(--blue-900);
  --bg-light: var(--light-blue);
  --bg-white: var(--white);
  --text-primary-dark: var(--white);
  --text-secondary-dark: var(--light-purple);
  --text-primary-light: var(--blue-900);
  --text-secondary-light: var(--bynder-blue);

  /* Corner Radii */
  --radius-micro: 4px;
  --radius-button: 8px;
  --radius-container: 12px;
  --radius-large: 16px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary-light);
  background: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  line-height: 1.6;
  max-width: 65ch;
}

.caption {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.highlight-box {
  display: inline-block;
  background: var(--bynder-blue);
  color: var(--white);
  padding: 0.15em 0.5em;
  border-radius: var(--radius-micro);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

section {
  padding: var(--space-2xl) 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 16, 37, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(161, 172, 255, 0.1);
  transition: background 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo svg,
.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  color: var(--light-purple);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bynder-blue);
  transition: width 0.2s ease;
}

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

/* Language switch (NL <-> FR) */
.nav__link--lang {
  border: 1px solid rgba(161, 172, 255, 0.35);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.nav__link--lang:hover {
  border-color: var(--bynder-blue);
  color: var(--white);
}

.nav__link--lang::after {
  display: none;
}

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-button);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--bynder-blue);
  color: var(--white);
}

.btn--primary:hover {
  background: #0f5fd6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 109, 254, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--bynder-blue);
  border: 2px solid var(--bynder-blue);
}

.btn--outline:hover {
  background: var(--bynder-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn .material-symbols-rounded {
  font-size: 1.25rem;
}


/* ============================================
   B. HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Datastream animation */
.hero__stream-row {
  position: absolute;
  left: 0;
  display: flex;
  gap: 20px;
  will-change: transform;
  transform: rotate(-5deg);
  animation: streamFlow var(--row-speed) linear infinite;
}

.hero__stream-row:nth-child(1) { top: 4%;  --row-speed: 32s; }
.hero__stream-row:nth-child(2) { top: 17%; --row-speed: 38s; }
.hero__stream-row:nth-child(3) { top: 30%; --row-speed: 26s; }
.hero__stream-row:nth-child(4) { top: 43%; --row-speed: 42s; }
.hero__stream-row:nth-child(5) { top: 56%; --row-speed: 30s; }
.hero__stream-row:nth-child(6) { top: 69%; --row-speed: 36s; }
.hero__stream-row:nth-child(7) { top: 82%; --row-speed: 28s; }

.hero__stream-row:nth-child(even) {
  animation-direction: reverse;
}

@keyframes streamFlow {
  from { transform: rotate(-5deg) translateX(0); }
  to   { transform: rotate(-5deg) translateX(-50%); }
}

.hero__datablock {
  flex-shrink: 0;
  animation: blockPump var(--pump-speed) ease-in-out infinite var(--pump-delay);
}

@keyframes blockPump {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2xl);
  width: 100%;
}

.hero__text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: -40px -60px;
  background: radial-gradient(ellipse at 30% 50%, rgba(3, 16, 37, 0.85) 0%, rgba(3, 16, 37, 0.5) 60%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}

.hero__logo {
  width: clamp(300px, 35vw, 500px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(18, 109, 254, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__badge {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__title span {
  color: var(--bynder-blue);
}

.hero__subtitle {
  color: var(--light-purple);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================
   C. VERGELIJK CAROUSEL (België vs. buitenland)
   ============================================ */

.vergelijk {
  background: var(--bg-white);
  position: relative;
  overflow: hidden; /* hides cards sliding out + prevents horizontal scrollbar */
}

.vergelijk__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.vergelijk__header h2 {
  color: var(--blue-900);
  margin-top: var(--space-xs);
}

.vergelijk__track-wrapper {
  overflow: hidden;
}

.vergelijk__track {
  --marquee-gap: 16px;
  display: flex;
  gap: var(--marquee-gap);
  width: max-content;
  animation: marquee var(--marquee-duration, 60s) linear infinite;
}

.vergelijk__track-wrapper:hover .vergelijk__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--marquee-gap) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  .vergelijk__track { animation-play-state: paused; }
}

.vergelijk__card {
  width: 280px;
  min-height: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-large);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-decoration: none;
  box-sizing: border-box;
}

.vergelijk__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.vergelijk__card--blue { background: var(--bynder-blue); color: var(--white); }
.vergelijk__card--dark { background: var(--blue-900); color: var(--white); }
.vergelijk__card--violet { background: var(--violet); color: var(--white); }
.vergelijk__card--yellow { background: var(--yellow); color: var(--blue-900); }
.vergelijk__card--green { background: var(--green); color: var(--white); }

.vergelijk__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-button);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vergelijk__card--yellow .vergelijk__icon { background: rgba(5,30,70,0.1); }

.vergelijk__icon .material-symbols-rounded {
  font-size: 1.25rem;
}

.vergelijk__theme {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.vergelijk__be {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.vergelijk__big {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.vergelijk__be span:last-child {
  font-size: 0.8125rem;
  opacity: 0.8;
  line-height: 1.4;
}

.vergelijk__vs {
  font-size: 0.8125rem;
  font-weight: 500;
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(255,255,255,0.2);
  line-height: 1.4;
}

.vergelijk__card--yellow .vergelijk__vs { border-color: rgba(5,30,70,0.15); }


@media (max-width: 768px) {
  .vergelijk__card { flex: 0 0 260px; }
}


/* ============================================
   D. HOOFDPUNTEN SECTION
   ============================================ */

.hoofdpunten {
  background: var(--bg-medium);
  position: relative;
  overflow: hidden;
}

.hoofdpunten__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.hoofdpunten__header h2 {
  color: var(--white);
  margin-top: var(--space-xs);
}

.hoofdpunten__header p {
  color: var(--light-purple);
  margin: var(--space-sm) auto 0;
}

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

.hoofdpunt-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(161, 172, 255, 0.1);
  border-radius: var(--radius-large);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hoofdpunt-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(161, 172, 255, 0.25);
  transform: translateY(-4px);
}

.hoofdpunt-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-container);
  background: var(--bynder-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.hoofdpunt-card__icon .material-symbols-rounded {
  font-size: 1.75rem;
}

.hoofdpunt-card__icon--green { background: var(--green); }
.hoofdpunt-card__icon--yellow { background: rgba(252, 214, 64, 0.2); }
.hoofdpunt-card__icon--yellow .material-symbols-rounded { color: var(--yellow); }
.hoofdpunt-card__icon--violet { background: var(--violet); }

.hoofdpunt-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mild-purple);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.hoofdpunt-card__stinger {
  color: var(--white);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.hoofdpunt-card p {
  color: var(--light-purple);
  font-size: 0.9375rem;
  line-height: 1.5;
  flex: 1;
}

.hoofdpunt-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--bynder-blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: var(--space-md);
  transition: gap 0.2s ease;
}

.hoofdpunt-card__cta .material-symbols-rounded {
  font-size: 1.125rem;
}

.hoofdpunt-card:hover .hoofdpunt-card__cta {
  gap: 0.75rem;
}


/* Extra cards under hoofdpunten */
.hoofdpunten__extra {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-xl);
}

.extra-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(161, 172, 255, 0.15);
  color: var(--light-purple);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.extra-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--bynder-blue);
  color: var(--white);
}

.extra-card .material-symbols-rounded {
  font-size: 1.125rem;
  color: var(--bynder-blue);
}


/* ============================================
   F. HERVORMING SECTION (eerst hervormen)
   ============================================ */

.hervorming {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hervorming__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.hervorming__text h2 {
  color: var(--white);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.hervorming__text p {
  color: var(--light-purple);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.hervorming__text blockquote {
  border-left: 3px solid var(--bynder-blue);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0 0;
}

.hervorming__text blockquote p {
  color: var(--white);
  font-size: 1.125rem;
  font-style: italic;
  margin: 0;
}

.hervorming__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hervorming__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(161, 172, 255, 0.1);
  border-radius: var(--radius-container);
}

.hervorming__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bynder-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hervorming__step h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.hervorming__step p {
  color: var(--light-purple);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

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


/* ============================================
   G. PARTIJPUNTEN TEASER
   ============================================ */

.punten-teaser {
  background: var(--bg-white);
}

.punten-teaser__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.punten-teaser__header h2 {
  color: var(--blue-900);
  margin-top: var(--space-xs);
}

.punten-teaser__header p {
  color: var(--text-secondary-light);
  margin: var(--space-sm) auto 0;
}

.punten-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.punt-card {
  background: var(--light-blue);
  border-radius: var(--radius-large);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.punt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 30, 70, 0.1);
  border-color: var(--bynder-blue);
  background: var(--white);
}

.punt-card__number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bynder-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.punt-card h3 {
  color: var(--blue-900);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.punt-card p {
  color: var(--text-primary-light);
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.8;
}

.punt-card__arrow {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--bynder-blue);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: var(--space-sm);
  transition: gap 0.2s ease;
}

.punt-card:hover .punt-card__arrow {
  gap: 0.625rem;
}

.punten-teaser__cta {
  text-align: center;
  margin-top: var(--space-xl);
}


/* ============================================
   G. SAM SECTION
   ============================================ */

.sam {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.sam__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

.sam__text h2 {
  color: var(--white);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.sam__text p {
  color: var(--light-purple);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.sam__quote {
  color: var(--white) !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  font-style: italic;
  border-left: 3px solid var(--bynder-blue);
  padding-left: var(--space-md);
  margin-top: var(--space-md) !important;
}

.sam__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sam__image {
  width: clamp(180px, 25vw, 300px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(18, 109, 254, 0.2));
}


/* ============================================
   H. DOE MEE SECTION
   ============================================ */

.doe-mee {
  background: var(--bg-medium);
  position: relative;
  overflow: hidden;
}

.doe-mee__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.doe-mee__header h2 {
  color: var(--white);
  margin-top: var(--space-xs);
}

.doe-mee__header p {
  color: var(--light-purple);
  margin: var(--space-sm) auto 0;
}

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

.doe-mee__col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(161, 172, 255, 0.1);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
}

.doe-mee__col h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.doe-mee__col p {
  color: var(--light-purple);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.doe-mee__col--action {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doe-mee__form {
  display: flex;
  gap: 0.75rem;
}

.doe-mee__input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-button);
  border: 1px solid rgba(161, 172, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
}

.doe-mee__input::placeholder {
  color: var(--light-purple);
  opacity: 0.5;
}

.doe-mee__input:focus {
  border-color: var(--bynder-blue);
}

.doe-mee__privacy {
  color: var(--light-purple) !important;
  font-size: 0.75rem !important;
  margin-top: var(--space-sm) !important;
  margin-bottom: 0 !important;
  opacity: 0.6;
}


/* ============================================
   I. CONTACT SECTION
   ============================================ */

.contact {
  background: var(--bg-white);
}

.contact__header {
  margin-bottom: var(--space-sm);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-lg);
}

.contact__info > p {
  color: var(--text-primary-light);
  opacity: 0.7;
  margin-bottom: var(--space-lg);
}

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-primary-light);
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.9375rem;
}

.contact__social-link:hover {
  color: var(--bynder-blue);
}

.contact__social-link .material-symbols-rounded {
  font-size: 1.25rem;
  color: var(--bynder-blue);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-900);
}

.form__input,
.form__textarea {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-button);
  border: 1px solid rgba(5, 30, 70, 0.15);
  background: var(--light-blue);
  color: var(--text-primary-light);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--bynder-blue);
  box-shadow: 0 0 0 3px rgba(18, 109, 254, 0.1);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}


/* ============================================
   J. FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  color: var(--light-purple);
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col a {
  color: var(--light-purple);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(161, 172, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  color: var(--light-purple);
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  color: var(--light-purple);
  font-size: 0.8125rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__legal a:hover {
  opacity: 1;
}


/* ============================================
   PARTIJPUNTEN PAGE
   ============================================ */

.page-header {
  background: var(--bg-dark);
  padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--light-purple);
  font-size: 1.125rem;
}

/* Search & Filter */
.punten-filter {
  background: var(--bg-light);
  padding: var(--space-md) 0;
  position: sticky;
  top: 72px;
  z-index: 100;
  border-bottom: 1px solid rgba(5, 30, 70, 0.06);
}

.punten-filter__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.punten-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.punten-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bynder-blue);
  font-size: 1.25rem;
}

.punten-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: var(--radius-button);
  border: 1px solid rgba(5, 30, 70, 0.1);
  background: var(--white);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text-primary-light);
  outline: none;
  transition: border-color 0.2s ease;
}

.punten-search__input:focus {
  border-color: var(--bynder-blue);
}

.punten-count {
  color: var(--text-secondary-light);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Punten Grid */
.punten-list {
  background: var(--bg-white);
  padding: var(--space-xl) 0 var(--space-2xl);
}

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

.punten-card {
  background: var(--light-blue);
  border-radius: var(--radius-large);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.punten-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(5, 30, 70, 0.08);
  border-color: var(--bynder-blue);
  background: var(--white);
}

.punten-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-button);
  background: var(--bynder-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.punten-card h3 {
  color: var(--blue-900);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.punten-card p {
  color: var(--text-primary-light);
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.5;
  flex: 1;
}

.punten-card__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--bynder-blue);
  font-weight: 600;
  font-size: 0.8125rem;
  margin-top: var(--space-sm);
  transition: gap 0.2s ease;
}

.punten-card:hover .punten-card__link {
  gap: 0.625rem;
}

/* Chapter detail overlay */
.chapter-detail {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 16, 37, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
}

.chapter-detail.active {
  display: flex;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.chapter-detail__inner {
  background: var(--white);
  border-radius: var(--radius-large);
  max-width: 800px;
  width: 100%;
  padding: var(--space-xl);
  position: relative;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.chapter-detail__close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.chapter-detail__close:hover {
  background: var(--bynder-blue);
  color: var(--white);
}

.chapter-detail__content h2 {
  color: var(--blue-900);
  margin-bottom: var(--space-md);
  padding-right: 3rem;
}

.chapter-detail__content h3 {
  color: var(--blue-900);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.chapter-detail__content p {
  color: var(--text-primary-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.chapter-detail__content ul, .chapter-detail__content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.chapter-detail__content li {
  color: var(--text-primary-light);
  line-height: 1.6;
  margin-bottom: 0.375rem;
  list-style: disc;
}

.chapter-detail__content strong {
  color: var(--blue-900);
}

.chapter-detail__content blockquote {
  border-left: 3px solid var(--bynder-blue);
  padding: var(--space-sm) var(--space-md);
  background: var(--light-blue);
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
  margin: var(--space-md) 0;
}

.chapter-detail__content blockquote p {
  color: var(--text-secondary-light);
  font-style: italic;
  margin: 0;
}


/* ============================================
   PARTIJPUNT DETAIL PAGE
   ============================================ */

.detail-header {
  background: var(--bg-dark);
  padding: calc(72px + var(--space-xl)) 0 var(--space-2xl);
}

.detail-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-purple);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  transition: color 0.2s ease;
}

.detail-header__back:hover {
  color: var(--white);
}

.detail-header__back .material-symbols-rounded {
  font-size: 1.125rem;
}

.detail-header__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bynder-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}

.detail-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.detail-header__intro {
  color: var(--light-purple);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 720px;
}

/* Detail body — light content area */
.detail-body {
  background: var(--bg-white);
  padding: var(--space-2xl) 0;
}

.detail-content h2 {
  color: var(--blue-900);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--light-blue);
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content h3 {
  color: var(--blue-900);
  font-size: 1.25rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.detail-content p {
  color: var(--text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.detail-content ul,
.detail-content ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.detail-content li {
  color: var(--text-primary-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.detail-content strong {
  color: var(--blue-900);
}

.detail-content blockquote {
  border-left: 3px solid var(--bynder-blue);
  padding: var(--space-md) var(--space-lg);
  background: var(--light-blue);
  border-radius: 0 var(--radius-container) var(--radius-container) 0;
  margin: var(--space-lg) 0;
}

.detail-content blockquote p {
  color: var(--text-secondary-light);
  font-size: 1.0625rem;
  font-style: italic;
  margin: 0;
  max-width: none;
}

/* Facts table in detail */
.detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.9375rem;
}

.detail-content thead th {
  background: var(--blue-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-content thead th:first-child {
  border-radius: var(--radius-button) 0 0 0;
}

.detail-content thead th:last-child {
  border-radius: 0 var(--radius-button) 0 0;
}

.detail-content tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(5, 30, 70, 0.08);
  vertical-align: top;
  line-height: 1.5;
}

.detail-content tbody tr:nth-child(even) {
  background: var(--light-blue);
}

.detail-content tbody tr:hover {
  background: rgba(18, 109, 254, 0.05);
}

.detail-content tbody td strong {
  color: var(--bynder-blue);
}

/* Prev / Next navigation */
.detail-nav {
  background: var(--bg-light);
  padding: var(--space-lg) 0;
}

.detail-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.detail-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-container);
  background: var(--white);
  border: 1px solid rgba(5, 30, 70, 0.08);
  transition: all 0.2s ease;
  min-width: 0;
  flex: 1;
  max-width: 280px;
}

.detail-nav__link:hover {
  border-color: var(--bynder-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 30, 70, 0.08);
}

.detail-nav__link .material-symbols-rounded {
  color: var(--bynder-blue);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.detail-nav__link--next {
  text-align: right;
  justify-content: flex-end;
}

.detail-nav__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bynder-blue);
  margin-bottom: 0.125rem;
}

.detail-nav__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-nav__overview {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bynder-blue);
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.detail-nav__overview:hover {
  color: var(--blue-900);
}

.detail-nav__link[style*="display: none"] + .detail-nav__overview {
  margin-left: auto;
}

@media (max-width: 768px) {
  .detail-nav__inner {
    flex-direction: column;
  }

  .detail-nav__link {
    max-width: none;
    width: 100%;
  }

  .detail-nav__link--next {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE
   ============================================ */

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

  .hoofdpunten__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bewijs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .punten-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .punten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sam__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sam__text .caption {
    display: inline-block;
  }

  .sam__quote {
    text-align: left;
  }

  .sam__image {
    width: clamp(140px, 30vw, 200px);
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid rgba(161, 172, 255, 0.1);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link--lang {
    align-self: flex-start;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    align-items: center;
    text-align: center;
  }

  .hero__logo {
    order: -1;
    width: clamp(140px, 40vw, 200px);
    margin: 0 auto;
  }

  .hero__title {
    font-size: 2.25rem;
  }

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

  .hero__actions .btn {
    justify-content: center;
  }

  .killerfacts__grid {
    grid-template-columns: 1fr;
  }

  .hoofdpunten__grid {
    grid-template-columns: 1fr;
  }

  .bewijs__grid {
    grid-template-columns: 1fr;
  }

  .punten-teaser__grid {
    grid-template-columns: 1fr;
  }

  .punten-grid {
    grid-template-columns: 1fr;
  }

  .doe-mee__grid {
    grid-template-columns: 1fr;
  }

  .doe-mee__form {
    flex-direction: column;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .punten-filter__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .punten-search {
    max-width: none;
  }
}

@media (max-width: 480px) {
  section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(72px + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .killerfacts__number {
    font-size: 2rem;
  }

  .bewijs__comparison {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .bewijs__arrow {
    display: none;
  }
}
