/* ============================================================
   CuliQuiz | Huisstijl
   Primary  : #26A8B0  (turquoise)
   Accent 1 : #A91917  (donkerrood)
   Accent 2 : #E15E17  (oranje)
   Accent 3 : #EAB600  (geel/goud)
   Neutral  : #C3CBD0  (lichtgrijs)
   Headings : ROCA One (huisstijl)  fallback: Fraunces
   Body     : Montserrat
   ============================================================ */

/* --- ROCA One @font-face --- */
@font-face {
  font-family: 'ROCA One';
  src: url('assets/fonts/Roca-Bold.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-primary: #26A8B0;
  --c-primary-dark: #1f8a91;
  --c-primary-light: #d6f0f2;
  --c-red: #A91917;
  --c-orange: #E15E17;
  --c-yellow: #EAB600;
  --c-grey: #C3CBD0;
  --c-ink: #1d2b30;
  --c-ink-soft: #4a5a60;
  --c-bg: #ffffff;
  --c-bg-soft: #f6f9fa;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(20, 50, 60, .08);
  --shadow-lg: 0 24px 60px rgba(20, 50, 60, .14);
  --container: 1180px;
  --font-head: 'ROCA One', 'Fraunces', 'Georgia', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-dark); }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.08rem; color: var(--c-ink-soft); }
.lead-strong { color: var(--c-ink); font-weight: 500; margin-top: -.4rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  color: var(--c-primary);
  margin-bottom: .8rem;
}
.eyebrow-stack {
  display: block;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.accent { color: var(--c-primary); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 0;
}
.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(225, 94, 23, .35);
}
.btn-primary:hover { background: #cf5413; color: #fff; transform: translateY(-2px); }

/* App store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 16px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  transition: transform .2s, background .2s;
}
.store-badge:hover { background: #000; color: #fff; transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; fill: currentColor; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge small { font-size: .65rem; opacity: .8; letter-spacing: .04em; }
.store-badge strong { font-size: 1.05rem; font-weight: 700; }
.store-badge.dark { background: #fff; color: #111; }
.store-badge.dark:hover { background: #f0f0f0; color: #111; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #ecf2f3;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo img { height: 42px; width: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list a {
  font-weight: 500;
  color: var(--c-ink);
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav-list a:hover { color: var(--c-primary); }
.nav-list .nav-cta {
  background: var(--c-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-list .nav-cta:hover { background: var(--c-primary-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 3px; width: 24px;
  background: var(--c-ink); border-radius: 2px;
  transition: .3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: var(--c-bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .lead { max-width: 520px; }
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
}
.hero-cta.center { justify-content: center; }

/* phone + floating bullets */
.hero-phone { display: flex; justify-content: center; }
.phone-stage {
  position: relative;
  max-width: 360px;
  width: 100%;
}
.phone-img {
  width: 100%;
}

.float-bullet {
  position: absolute;
  background: #fff;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-ink);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: floaty 5s ease-in-out infinite;
  transition: opacity .35s ease, transform .35s ease;
  opacity: 1;
}
.float-bullet.is-leaving { opacity: 0; transform: translateY(-8px) scale(.95); }
.float-bullet .bullet-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex: 0 0 38px;
}
.float-bullet .bullet-icon svg { width: 20px; height: 20px; }

/* Score / metric chip on the right of the bullet */
.bullet-metric {
  display: inline-block;
  margin-left: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .8rem;
  line-height: 1.1;
  letter-spacing: .02em;
  color: #fff;
  background: var(--c-primary);
  white-space: nowrap;
}

/* Theme variants for the icon-circle */
.bullet-icon.theme-teal   { background: var(--c-primary-light); color: var(--c-primary); }
.bullet-icon.theme-orange { background: #fde2d2;               color: var(--c-orange);  }
.bullet-icon.theme-yellow { background: #fdf3cc;               color: #b08800;          }
.bullet-icon.theme-red    { background: #f8d8d7;               color: var(--c-red);     }

/* Theme variants for the metric chip (matches icon color) */
.bullet-metric.metric-teal   { background: var(--c-primary); }
.bullet-metric.metric-orange { background: var(--c-orange);  }
.bullet-metric.metric-yellow { background: #c79b00;          color: #fff; }
.bullet-metric.metric-red    { background: var(--c-red);     }

.bullet-1 { top: 8%;     left: -22%; }
.bullet-2 { top: 46%;    right: -24%; animation-delay: -1.6s; }
.bullet-3 { bottom: 8%;  left: -12%;  animation-delay: -3.2s; }

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

/* ============ CHALLENGE ============ */
.challenge {
  padding: 100px 0 60px;
  background: var(--c-bg-soft);
}
.challenge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.challenge-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.check-list {
  margin: 18px 0 28px;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: var(--c-ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ VOOR WIE / SECTORS ============ */
.sectors { padding: 40px 0 100px; background: var(--c-bg-soft); }
.sectors .section-head { margin-bottom: 36px; }
.section-head { max-width: 960px; margin: 0 auto 50px; }
.section-head.center { text-align: center; }
.section-head .lead { margin: 0 auto; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sector-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef2f3;
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sector-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--c-primary);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sector-card h3 {
  margin: 0 0 .5em;
  color: var(--c-ink);
  font-size: 1.35rem;
}
.sector-card p {
  color: var(--c-ink-soft);
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
}

/* CuliQuiz brand-kleuren over de 6 kaarten */
.sector-card:nth-child(1)::before { background: var(--c-primary); }
.sector-card:nth-child(2)::before { background: var(--c-orange); }
.sector-card:nth-child(3)::before { background: var(--c-yellow); }
.sector-card:nth-child(4)::before { background: var(--c-red); }
.sector-card:nth-child(5)::before { background: var(--c-primary-dark); }
.sector-card:nth-child(6)::before { background: var(--c-ink); }

.sector-card:nth-child(1) h3 { color: var(--c-primary); }
.sector-card:nth-child(2) h3 { color: var(--c-orange); }
.sector-card:nth-child(3) h3 { color: #b08800; }
.sector-card:nth-child(4) h3 { color: var(--c-red); }
.sector-card:nth-child(5) h3 { color: var(--c-primary-dark); }
.sector-card:nth-child(6) h3 { color: var(--c-ink); }

@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sectors { padding: 70px 0; }
  .sector-grid { grid-template-columns: 1fr; gap: 16px; }
  .sector-card { padding: 28px 24px; }
}

/* ============ PARTNERS ============ */
.partners {
  padding: 100px 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--c-primary-light) 100%);
}
.partner-slider {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.partner-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: slide 45s linear infinite;
}
.partner-logo {
  flex: 0 0 auto;
  height: 110px;
  width: 200px;
  background: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 14px 22px;
  transition: transform .25s, box-shadow .25s;
}
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ TOP 100 ============ */
.top100 {
  background: var(--c-bg-soft);
  padding: 90px 0;
}
.top100-inner {
  max-width: 960px;
  margin: 0 auto;
}
.top100-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.top100-hero h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 10px 0 18px;
}
.top100-hero .lead {
  margin: 0 auto 28px;
}
.top100-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
}
.top100-intro p {
  margin: 0 0 14px;
}
.top100-intro .top100-claim {
  color: var(--c-ink);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 20px;
}
.top100-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 28px;
}
.top100-block h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  margin: 0 0 14px;
  color: var(--c-ink);
}
.top100-block p {
  margin: 0 0 12px;
  color: var(--c-ink-soft);
}
.top100-block p:last-child {
  margin-bottom: 0;
}
.top100-deadline {
  display: inline-block;
  margin-top: 10px !important;
  padding: 10px 16px;
  background: var(--c-primary-light);
  color: var(--c-primary-dark) !important;
  border-radius: var(--radius);
  font-weight: 600;
}
.top100-note {
  font-style: italic;
  color: var(--c-ink) !important;
  margin-top: 16px !important;
}
.top100-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 28px;
}
.top100-grid .top100-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.top100-grid .top100-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: var(--c-primary);
}
.top100-grid .top100-card p {
  margin: 0 0 10px;
  color: var(--c-ink-soft);
}
.top100-close {
  text-align: center;
  max-width: 720px;
  margin: 50px auto 40px;
  font-size: 1.15rem;
  color: var(--c-ink);
}
.top100-close strong {
  display: block;
  margin-top: 6px;
  color: var(--c-primary);
  font-weight: 700;
}

/* ============ TOP 100 FORMULIER ============ */
.top100-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 100px;
}
.top100-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin: 0 0 26px;
  text-align: center;
  color: var(--c-ink);
}
.top100-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.top100-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.top100-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .92rem;
  color: var(--c-ink);
  font-weight: 500;
}
.top100-form label span {
  letter-spacing: .01em;
}
.top100-form input,
.top100-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--c-grey);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s;
}
.top100-form input:focus,
.top100-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(38, 168, 176, .18);
}
.top100-form textarea {
  resize: vertical;
  min-height: 90px;
}
.top100-form .form-divider {
  border: 0;
  border-top: 1px solid var(--c-grey);
  margin: 10px 0;
  opacity: .5;
}
.top100-form button {
  margin-top: 10px;
  align-self: center;
  min-width: 220px;
}

@media (max-width: 720px) {
  .top100 { padding: 60px 0; }
  .top100-block { padding: 26px 22px; }
  .top100-grid { grid-template-columns: 1fr; gap: 18px; }
  .top100-grid .top100-card { padding: 24px 22px; }
  .top100-form-wrap { padding: 28px 22px; }
  .top100-form .form-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ TOP 100 | BANNER + INITIATIEF + BADGE ============ */
.top100-banner {
  background: var(--c-orange);
  color: #fff;
  padding: 90px 0 110px;
}
.top100-banner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 18px;
  max-width: 900px;
}
.top100-banner p {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  max-width: 680px;
}

.top100-initiatief {
  background: #fff;
  padding: 70px 0 40px;
}
.top100-initiatief-label {
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 32px;
  font-size: 1.05rem;
}
.top100-initiatief-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.initiatief-logo {
  width: 100%;
  max-width: 280px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.initiatief-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.initiatief-logo.placeholder {
  border: 2px dashed var(--c-grey);
  border-radius: var(--radius);
  color: var(--c-ink-soft);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 18px;
}

/* --- Top 100 intro split (tekst + badge) --- */
.top100-intro-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.top100-intro-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}
.top100-intro-copy p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
}
.top100-intro-copy .top100-deadline {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
  border-radius: var(--radius);
  font-weight: 700;
}

.top100-intro-visual {
  display: flex;
  justify-content: center;
}
.top100-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.top100-badge-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: var(--c-primary);
  letter-spacing: -.02em;
  line-height: .95;
}
.top100-badge-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-orange);
  letter-spacing: -.01em;
  margin-top: 4px;
}
.top100-badge-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* --- Top 100 steps (genummerde lijst) --- */
.top100-steps {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.top100-steps li {
  position: relative;
  padding: 6px 0 6px 56px;
  color: var(--c-ink);
  font-weight: 500;
  counter-increment: step;
}
.top100-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .top100-intro-split { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .top100-intro-copy .top100-deadline { margin-left: auto; margin-right: auto; }
  .top100-intro-visual { justify-content: center; }
  .top100-badge { align-items: center; }
  .top100-initiatief-logos { gap: 30px; }
  .initiatief-logo { height: 100px; }
}
@media (max-width: 640px) {
  .top100-banner h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .top100-banner p { font-size: 1rem; }
  .top100-initiatief-logos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .initiatief-logo { height: auto; max-height: 110px; padding: 6px 0; }
  .top100-block { padding: 26px 22px; }
  .top100-banner { padding: 60px 0 70px; }
  .top100-steps li { padding-left: 52px; }
  .top100-steps li::before { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--c-primary);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255, 255, 255, .9); font-size: 1.05rem; }
.cta-inner { max-width: 720px; margin: 0 auto; }

/* ============ FOOTER ============ */
.site-footer {
  background: #eef3f5;
  color: var(--c-ink-soft);
  border-top: 1px solid #dfe6ea;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 64px 24px 40px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p { color: var(--c-ink-soft); max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  color: var(--c-ink);
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--c-ink-soft); }
.footer-col a:hover { color: var(--c-primary); }

.footer-address { line-height: 1.5; margin-top: 12px; color: var(--c-ink-soft); }
.footer-meta { font-size: .8rem; color: #8a97a0; line-height: 1.5; margin-top: 6px; }

/* Social icons in footer (kleur per kanaal) */
.social-list { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: color .2s, transform .2s;
}
.social-link:hover { transform: translateX(3px); }
.social-link svg {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  padding: 4px;
  fill: var(--c-ink);
  transition: background .25s, fill .25s, transform .25s;
}
/* Default state: ink icon on subtle chip; hover = full brand color with white fill. */
.social-link svg { background: rgba(29, 43, 48, .06); }
.social-instagram:hover { color: var(--c-ink); }
.social-instagram:hover svg {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  fill: #fff;
}
.social-linkedin:hover  { color: var(--c-ink); }
.social-linkedin:hover svg  { background: #0A66C2; fill: #fff; }
.social-tiktok:hover    { color: var(--c-ink); }
.social-tiktok:hover svg    { background: #000; fill: #fff; box-shadow: 2px 0 0 #ff0050, -2px 0 0 #25f4ee; }

.footer-bottom {
  border-top: 1px solid #dfe6ea;
  font-size: .85rem;
  color: #8a97a0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #8a97a0; }
.footer-bottom a:hover { color: var(--c-primary); }

/* ============================================================
   PAGE: Wat leveren we?
   ============================================================ */

.page-hero {
  padding: 60px 0 50px;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(38, 168, 176, .14), transparent 60%),
    var(--c-bg);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .3em;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Pillar 1: Bouwstenen --- */
.pillars { padding: 56px 0 80px; background: var(--c-bg-soft); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid #eef2f3;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--card-accent, var(--c-primary));
}
.pillar-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--card-accent, var(--c-primary));
  opacity: .08;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: var(--card-accent, var(--c-primary));
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
}
.pillar-tag {
  font-weight: 600;
  color: var(--card-accent, var(--c-primary));
  font-size: .95rem;
  margin-bottom: .6rem;
}

/* Per-card huisstijl-kleur */
.pillar-grid > .pillar-card:nth-child(1) { --card-accent: var(--c-primary); }
.pillar-grid > .pillar-card:nth-child(2) { --card-accent: var(--c-red);     }
.pillar-grid > .pillar-card:nth-child(3) { --card-accent: #c79b00;          }
.pillar-grid > .pillar-card:nth-child(4) { --card-accent: var(--c-orange);  }

/* --- Pillar 2: Menukaart -> vloerkennis --- */
.menu2floor { padding: 110px 0; }
.m2f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto repeat(3, 1fr);
  gap: 16px 32px;
  margin-top: 40px;
}
.m2f-col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: 16px;
}
.m2f-col-title {
  text-align: center;
  margin: 0 0 8px;
}
.m2f-col-title span {
  display: inline-block;
  padding: 8px 22px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}
.m2f-col:nth-child(2) .m2f-col-title span { background: var(--c-orange); }
.m2f-col:nth-child(3) .m2f-col-title span { background: #c79b00;          }
.m2f-card {
  background: #fff;
  border: 1px solid #eef2f3;
  border-left: 4px solid var(--c-primary);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 0;
  transition: transform .2s, box-shadow .2s;
}
.m2f-card.alt   { border-left-color: var(--c-orange); }
.m2f-card.brand { border-left-color: #c79b00;          }
.m2f-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.m2f-card h4 {
  margin: 0 0 .25em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
  text-transform: none;
  letter-spacing: 0;
}
.m2f-card p {
  margin: 0;
  color: var(--c-ink-soft);
  font-size: .95rem;
}

/* --- Pillar 3: Onboarding --- */
.onboarding {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--c-primary-light), #fff);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}
.stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-weight: 500;
  color: var(--c-ink-soft);
  font-size: .95rem;
}
.onb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.onb-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid #eef2f3;
}
.onb-card h3 { color: var(--c-primary); margin-bottom: .35em; }
.onb-tag {
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: .8rem;
}

/* --- Pillar 4: ROE --- */
.roe { padding: 110px 0; background: var(--c-bg-soft); }
.roe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.roe-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  border-top: 4px solid var(--c-primary);
  transition: transform .25s, box-shadow .25s;
}
.roe-card:nth-child(2) { border-top-color: var(--c-orange); }
.roe-card:nth-child(3) { border-top-color: var(--c-yellow); }
.roe-card:nth-child(4) { border-top-color: var(--c-red); }
.roe-card:nth-child(5) { border-top-color: var(--c-primary); }
.roe-card:nth-child(6) { border-top-color: var(--c-orange); }
.roe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.roe-card h3 {
  font-size: 1.1rem;
  margin-bottom: .35em;
}
.roe-card p {
  color: var(--c-ink-soft);
  font-size: .95rem;
  margin: 0;
}

/* ============================================================
   PAGE: Ambassadeurs
   ============================================================ */
.ambassadeurs { padding: 70px 0 110px; background: var(--c-bg-soft); }
.amb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amb-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transform-origin: center center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  will-change: transform;
}
.amb-card:hover {
  transform: scale(1.5);
  box-shadow: var(--shadow-lg);
  z-index: 20;
}
.amb-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-primary-light);
}
.amb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Anker de hoek-kaarten zodat ze niet uit het scherm springen bij de vergroting */
.amb-grid > .amb-card:nth-child(4n+1) { transform-origin: left center; }
.amb-grid > .amb-card:nth-child(4n)   { transform-origin: right center; }
.amb-grid > .amb-card:first-child     { transform-origin: top left; }
.amb-grid > .amb-card:nth-child(4)    { transform-origin: top right; }
.amb-grid > .amb-card:nth-last-child(-n+4):nth-child(4n+1) { transform-origin: bottom left; }
.amb-grid > .amb-card:nth-last-child(-n+4):nth-child(4n)   { transform-origin: bottom right; }
.amb-body {
  padding: 20px 22px 24px;
}
.amb-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 6px;
}
.amb-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
  margin: 0;
}
/* Roteer accent-kleur per kaart */
.amb-grid .amb-card:nth-child(4n+1) .amb-role { color: var(--c-primary); }
.amb-grid .amb-card:nth-child(4n+2) .amb-role { color: var(--c-orange);  }
.amb-grid .amb-card:nth-child(4n+3) .amb-role { color: #c79b00;          }
.amb-grid .amb-card:nth-child(4n)   .amb-role { color: var(--c-red);     }

/* ============================================================
   PAGE / BLOK: Nieuws
   ============================================================ */
.news { padding: 90px 0 110px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eef2f3;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-photo {
  aspect-ratio: 16 / 10;
  background: var(--c-bg-soft);
  overflow: hidden;
}
.news-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
/* For logo-style thumbnails: contain instead of cover, with padding.
   Higher specificity via !important to win from base .news-photo img rule. */
.news-photo.news-photo-contain,
.news-photo-contain {
  background: var(--c-bg-soft);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-photo-contain img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
}
.news-card:hover .news-photo-contain img { transform: none; }
@media (max-width: 720px) {
  .news-photo-contain { padding: 32px 40px; }
}
.news-card:hover .news-photo img { transform: scale(1.04); }
.news-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-date {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.news-body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  flex: 1;
}
.news-more {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--c-primary);
  margin-top: 6px;
  transition: color .2s, transform .2s;
}
.news-card:hover .news-more { color: var(--c-orange); transform: translateX(2px); }

/* ============================================================
   PAGE: Nieuws detail (artikel)
   ============================================================ */
.article { padding: 70px 0 110px; background: var(--c-bg-soft); }
.article-inner { max-width: 820px; margin: 0 auto; }
.back-link {
  color: var(--c-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
}
.back-link:hover { color: var(--c-orange); }
.article-date {
  margin: 22px 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.article h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 28px;
}
.article-hero {
  margin: 0 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.article-body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--c-text);
}
.article-body p { margin: 0 0 20px; }
/* Links inside article-body should not style .btn elements */
.article-body a.btn,
.article-body a.btn-primary {
  color: #fff;
  text-decoration: none;
}
.article-body a.btn:hover,
.article-body a.btn-primary:hover { color: #fff; }

.article-body a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--c-orange); }
.article-body strong { font-weight: 600; color: var(--c-text-strong, #1a1a1a); }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.article-body ul, .article-body ol { margin: 0 0 20px 20px; padding: 0; }
.article-body li { margin: 0 0 8px; }
.article-author {
  margin: 40px 0 30px;
  font-family: var(--font-body);
  font-style: italic;
  color: #777;
  font-size: .95rem;
}
.article-back { margin-top: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding: 50px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-phone { order: -1; }
  .phone-stage { max-width: 300px; margin: 0 auto; }

  /* Tekst centreren op tablet / mobiel */
  .hero-copy { text-align: center; }
  .hero-copy h1,
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-copy .lead { max-width: 560px; }
  .hero-cta { justify-content: center; }

  /* Bullets dichter bij de telefoon */
  .bullet-1 { top: 6%;  left: -12%; }
  .bullet-2 { top: 44%; right: -12%; }
  .bullet-3 { bottom: 6%; left: -4%; }

  .challenge-inner { grid-template-columns: 1fr; gap: 40px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 50px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid #ecf2f3;
    box-shadow: var(--shadow-sm);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list a { padding: 12px 0; border-bottom: 1px solid #f1f5f6; }
  .nav-list .nav-cta { text-align: center; margin-top: 8px; border: 0; }

  .sector-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .m2f-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat-row { grid-template-columns: 1fr; gap: 14px; }
  .onb-grid { grid-template-columns: 1fr; }
  .roe-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .roe-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 70px 0 50px; }
}

/* Ambassadeurs + Nieuws responsive */
@media (max-width: 1100px) {
  .amb-grid { grid-template-columns: repeat(3, 1fr); }
  .amb-card:hover { transform: scale(1.35); }
  .amb-grid > .amb-card { transform-origin: center center; }
  .amb-grid > .amb-card:nth-child(3n+1) { transform-origin: left center; }
  .amb-grid > .amb-card:nth-child(3n)   { transform-origin: right center; }
}
@media (max-width: 820px)  {
  .amb-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .amb-card:hover { transform: scale(1.2); }
  .amb-grid > .amb-card:nth-child(2n+1) { transform-origin: left center; }
  .amb-grid > .amb-card:nth-child(2n)   { transform-origin: right center; }
}
@media (max-width: 520px)  {
  .amb-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .amb-card:hover { transform: scale(1.05); }
  .amb-grid > .amb-card { transform-origin: center center; }
}

/* ============================================================
   MOBIEL OPTIMALISATIES
   ============================================================ */
@media (max-width: 720px) {
  .container { padding: 0 18px; }

  /* Typografie iets compacter */
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.6rem); line-height: 1.18; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; }
  .lead { font-size: 1rem; }

  /* Hero */
  .hero { padding: 40px 0 70px; }
  .hero-inner { gap: 28px; }
  .hero-copy h1 { margin-bottom: .4em; }
  .hero-cta { gap: 10px; margin-top: 22px; justify-content: center; }
  .hero-cta.center { justify-content: center; }
  .phone-stage { max-width: 250px; }
  .eyebrow-stack { font-size: .72rem; line-height: 1.55; }

  /* Bullets compacter op mobiel */
  .float-bullet {
    padding: 8px 14px 8px 8px;
    font-size: .78rem;
    gap: 8px;
    max-width: 62vw;
  }
  .float-bullet .bullet-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .float-bullet .bullet-icon { width: 30px; height: 30px; flex: 0 0 30px; }
  .float-bullet .bullet-icon svg { width: 16px; height: 16px; }
  .bullet-metric { font-size: .68rem; padding: 3px 7px; }
  .bullet-1 { top: 4%;   left: -8%; }
  .bullet-2 { top: 44%;  right: -8%; }
  .bullet-3 { bottom: 4%; left: -2%; }

  /* App store knoppen netter laten ademen */
  .store-badge { padding: 9px 16px 9px 14px; }
  .store-badge svg { width: 22px; height: 22px; }
  .store-badge strong { font-size: .95rem; }
  .store-badge small { font-size: .6rem; }

  /* Challenge */
  .challenge { padding: 60px 0 30px; }
  .challenge-inner { gap: 28px; }
  .challenge-image img { aspect-ratio: 4/3; }

  /* Voor wie / Sectors al via 560px-breakpoint geregeld */
  .sectors { padding: 30px 0 60px; }
  .sectors .section-head { margin-bottom: 28px; }

  /* Partners */
  .partners { padding: 60px 0; }
  .partner-logo { height: 90px; width: 160px; padding: 12px 18px; }
  .partner-logo img { max-height: 56px; }

  /* CTA strip */
  .cta-strip { padding: 60px 0; }
  .cta-strip h2 { font-size: 1.5rem; }
  .cta-inner { padding: 0 8px; }
  .hero-cta.center { gap: 10px; }

  /* Footer netter op telefoon */
  .footer-cols { grid-template-columns: 1fr; gap: 28px; padding-top: 30px; }
  .footer-brand { padding-top: 20px; }
  .footer-meta { font-size: .85rem; }

  /* Article (nieuwsdetail) */
  .article { padding: 50px 0 60px; }
  .article h1 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
  .article-hero img { border-radius: 14px; }
  .article-body p { font-size: 1rem; line-height: 1.65; }
  .article-body h2 { margin-top: 1.4em; }

  /* Section heads niet te ruim */
  .section-head { margin-bottom: 30px; }

  /* News grid: kleinere kaarten */
  .news-card .news-body { padding: 18px 18px 22px; }
}

@media (max-width: 520px) {
  .phone-stage { max-width: 220px; }
  .float-bullet {
    padding: 6px 11px 6px 6px;
    font-size: .7rem;
    gap: 6px;
    max-width: 58vw;
  }
  .float-bullet .bullet-icon { width: 26px; height: 26px; flex: 0 0 26px; }
  .float-bullet .bullet-icon svg { width: 13px; height: 13px; }
  /* Metric-chip verbergen op heel kleine schermen om overlap te voorkomen */
  .bullet-metric { display: none; }
  .bullet-1 { top: 2%;   left: -4%; }
  .bullet-2 { top: 46%;  right: -4%; }
  .bullet-3 { bottom: 2%; left: 0; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }

  /* Stack store-badges onder elkaar op heel kleine schermen */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta.center { align-items: center; }
  .store-badge { width: 100%; max-width: 260px; justify-content: center; }

  .hero { padding: 32px 0 56px; }
  .phone-stage { max-width: 200px; }

  .float-bullet { font-size: .66rem; padding: 5px 10px 5px 5px; }
  .float-bullet .bullet-icon { width: 24px; height: 24px; flex: 0 0 24px; }
  .float-bullet .bullet-icon svg { width: 12px; height: 12px; }
  .bullet-1 { top: 0; left: -2%; }
  .bullet-2 { top: 48%; right: -2%; }
  .bullet-3 { bottom: 0; left: 2%; }

  .partner-logo { height: 80px; width: 140px; padding: 10px 14px; }
  .partner-logo img { max-height: 48px; }

  .cta-strip h2 { font-size: 1.35rem; }
}

/* Heel kleine schermen: bullets weg om de telefoon mooi te laten ademen */
@media (max-width: 360px) {
  .float-bullet { display: none; }
  .phone-stage { max-width: 190px; }
}

/* ============ PARTNERS | WTOL tweak ============ */
.partner-logo.is-wtol img {
  max-height: 90px;
}

/* ============ WAT LEVEREN WE | CONTACT FORM ============ */
.wlw-contact {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.wlw-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  align-items: start;
}
.wlw-contact-copy .eyebrow {
  color: var(--c-primary);
  font-weight: 600;
}
.wlw-contact-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--c-ink);
}
.wlw-contact-copy p {
  color: var(--c-ink-soft);
  margin: 0;
}
.wlw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wlw-contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wlw-contact-form label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-ink);
}
.wlw-contact-form label span {
  color: var(--c-primary);
}
.wlw-contact-form input,
.wlw-contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--c-grey);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.wlw-contact-form input:focus,
.wlw-contact-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(38, 168, 176, .18);
}
.wlw-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.wlw-contact-form .form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.wlw-contact-form .btn {
  align-self: flex-start;
  min-width: 220px;
}
.wlw-contact-form .form-status {
  margin: 0;
  font-size: .9rem;
  color: var(--c-ink-soft);
  min-height: 1.4em;
}
.wlw-contact-form .form-status.is-error {
  color: #b3261e;
}
.wlw-contact-form.is-submitting button[type="submit"] {
  opacity: .6;
  cursor: wait;
}
.wlw-contact-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 30px;
  background: rgba(38, 168, 176, .08);
  border: 1.5px solid var(--c-primary);
  border-radius: var(--radius-lg);
}
.wlw-contact-success h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.wlw-contact-success p {
  margin: 0;
  color: var(--c-ink-soft);
}

@media (max-width: 960px) {
  .wlw-contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 40px 30px;
  }
  .wlw-contact-form .btn { min-width: 0; width: 100%; }
}

/* ============ SCHOLEN PAGE ============ */
.scholen-hero {
  background: linear-gradient(135deg, #26A8B0 0%, #1f8a91 55%, #0f6f76 100%);
  color: #fff;
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
}
.scholen-hero::before,
.scholen-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.scholen-hero::before {
  width: 360px; height: 360px;
  background: var(--c-yellow);
  top: -120px; right: -80px;
}
.scholen-hero::after {
  width: 320px; height: 320px;
  background: var(--c-orange);
  bottom: -160px; left: -60px;
}
.scholen-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.scholen-hero .eyebrow {
  color: rgba(255, 255, 255, .85);
  letter-spacing: .12em;
  font-weight: 600;
}
.scholen-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 14px 0 22px;
  color: #fff;
}
.scholen-hero h1 .accent {
  color: var(--c-yellow);
  font-style: italic;
}
.scholen-hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .92);
  margin: 0 auto;
  max-width: 640px;
}

.scholen-duo {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.duo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.duo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.duo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 8px;
}
.duo-app::before { background: var(--c-primary); }
.duo-live::before { background: var(--c-orange); }

.duo-card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.duo-app .duo-card-tag {
  background: var(--c-primary-light);
  color: var(--c-primary-dark);
}
.duo-live .duo-card-tag {
  background: rgba(225, 94, 23, .12);
  color: var(--c-orange);
}
.duo-card h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--c-ink);
}
.duo-card p {
  color: var(--c-ink-soft);
  margin: 0 0 20px;
}
.duo-card .check-list {
  margin-bottom: 28px;
}
.duo-card-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.duo-secondary {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.duo-secondary:hover {
  color: var(--c-primary);
}

/* Waarom-sectie */
.scholen-why {
  padding: 90px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s;
}
.why-card:hover {
  transform: translateY(-3px);
}
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 28px;
  height: 28px;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.why-card p {
  font-size: .95rem;
  color: var(--c-ink-soft);
  margin: 0;
}

/* Hoe werkt het */
.scholen-how {
  padding: 90px 0;
  background: var(--c-bg-soft);
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 44px auto 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  counter-reset: step;
}
.how-steps li {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 30px 26px 100px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.how-num {
  position: absolute;
  left: 26px;
  top: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.how-steps li:nth-child(2) .how-num { background: var(--c-orange); }
.how-steps li:nth-child(3) .how-num { background: var(--c-yellow); color: var(--c-ink); }
.how-steps h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.how-steps p {
  margin: 0;
  color: var(--c-ink-soft);
}

/* Responsive */
@media (max-width: 960px) {
  .duo-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .scholen-hero { padding: 80px 0 90px; }
  .scholen-duo, .scholen-why, .scholen-how { padding: 60px 0; }
  .duo-card { padding: 32px 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps li { padding: 22px 22px 22px 82px; }
  .how-num { width: 44px; height: 44px; left: 20px; top: 22px; font-size: 1.25rem; }
}

/* ============ TOP 100 | NOMINATIEFORMULIER ============ */
.top100-form-block {
  scroll-margin-top: 100px;
}
.nominate-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.nominate-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nominate-form label {
  font-size: .92rem;
  color: var(--c-ink);
  font-weight: 600;
}
.nominate-form label span {
  color: var(--c-primary);
  font-weight: 700;
}
.nominate-form input,
.nominate-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--c-grey);
  border-radius: var(--radius);
  background: #fff;
  color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.nominate-form input:focus,
.nominate-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(38, 168, 176, .18);
}
.nominate-form textarea {
  resize: vertical;
  min-height: 140px;
}
.nominate-form .form-hint {
  font-size: .82rem;
  color: var(--c-ink-soft);
  margin-top: 2px;
}
.nominate-form .form-fieldset {
  border: 1.5px solid var(--c-grey);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nominate-form .form-fieldset legend {
  font-size: .92rem;
  color: var(--c-ink);
  font-weight: 600;
  padding: 0 6px;
}
.nominate-form .form-fieldset legend span {
  color: var(--c-primary);
  font-weight: 700;
}
.nominate-form .form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}
.nominate-form .form-radio input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: var(--c-primary);
}
.nominate-form .form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
.nominate-form .form-actions .btn {
  min-width: 240px;
}
.nominate-form .form-status {
  margin: 0;
  font-size: .92rem;
  color: var(--c-ink-soft);
  min-height: 1.4em;
  text-align: center;
}
.nominate-form .form-status.is-error {
  color: #b3261e;
}
.nominate-form.is-submitting button[type="submit"] {
  opacity: .6;
  cursor: wait;
}
.nominate-form .form-row.has-error input,
.nominate-form .form-row.has-error textarea {
  border-color: #b3261e;
}

.nominate-success {
  background: rgba(38, 168, 176, .08);
  border: 1.5px solid var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  text-align: center;
  margin-top: 8px;
}
.nominate-success h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.nominate-success p {
  margin: 0 0 18px;
  color: var(--c-ink-soft);
}

@media (max-width: 720px) {
  .nominate-form .form-actions .btn { min-width: 0; width: 100%; }
}
