/* ============================================================
   Something For Nothing — Stylesheet v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Tokens ---- */
:root {
  --pink:        #fd6874;
  --pink-dark:   #e8505c;
  --pink-light:  rgba(253,104,116,.10);
  --pink-mid:    rgba(253,104,116,.18);
  --text:        #4d4d4d;
  --text-muted:  #888;
  --bg:          #fff4f4;
  --white:       #ffffff;
  --line:        #edd8d8;
  --shadow-sm:   0 2px 12px rgba(77,77,77,.07);
  --shadow-md:   0 8px 32px rgba(77,77,77,.10);
  --shadow-lg:   0 20px 60px rgba(253,104,116,.15);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 999px;
  --max:         1160px;
  --nav-h:       72px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* ---- Type scale ---- */
h1,h2,h3,h4 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

p { max-width: 640px; }

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

.section          { padding: 88px 0; }
.section--bg      { background: var(--bg); }
.section--dark    { background: var(--text); }
.section--pink    { background: var(--pink); }

/* ---- Label pill ---- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--pink-light);
  color: var(--pink);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.section--dark .label,
.section--pink .label {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.section--dark .label::before,
.section--pink .label::before { background: #fff; }

/* ---- Headings on dark/pink ---- */
.section--dark h2, .section--dark h3, .section--dark p,
.section--pink h2, .section--pink h3, .section--pink p { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(253,104,116,.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 8px 28px rgba(253,104,116,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--pink);
  color: var(--pink);
}

.btn-white {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.btn-outline-white:hover { box-shadow: inset 0 0 0 2px #fff; }

.btn svg { flex-shrink: 0; }

/* ---- Arrow icon ---- */
.arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9h12M10 5l4 4-4 4' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  /* Blur via ::before zodat fixed kinderen (nav__menu) niet gevangen zitten */
}
/* Glasmorfisme-achtergrond op pseudo-element — laat position:fixed kinderen vrij */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.nav__logo-icon--fb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  display: none;
  align-items: center;
  justify-content: center;
}
.nav__logo-text {
  width: 260px;
  height: 30px;
  object-fit: cover;
  object-position: center 47%;
}
.nav__logo-text--fb {
  display: none;
  font-weight: 900;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav__menu a {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  white-space: nowrap;   /* voorkomt dat woorden als "Hoe het werkt" afbreken */
  transition: color .15s, background .15s;
}
.nav__menu a:hover { color: var(--pink); background: var(--pink-light); }
.nav__menu a.active { color: var(--pink); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: 96px 32px 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* subtle decorative blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(253,104,116,.09) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,104,116,.06) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--pink-light);
  border-radius: var(--radius-full);
  color: var(--pink);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 32px;
  max-width: 100%;
  white-space: nowrap;       /* nooit wrappen — op mobiel worden we kleiner */
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero h1 {
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 28px auto 0;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__proof-item span {
  font-weight: 800;
  color: var(--text);
}
.hero__proof-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--line);
}

/* ============================================================
   STEPS — horizontal (adsonpads style)
   ============================================================ */
.steps-section { background: var(--bg); padding: 88px 0; }

.steps-header {
  text-align: center;
  margin-bottom: 52px;
}
.steps-header p {
  margin: 16px auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

/* connecting line between steps */
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 36px);
  right: calc(16.666% + 36px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0,
    var(--pink) 8px,
    transparent 8px,
    transparent 18px
  );
  pointer-events: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
}

.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(253,104,116,.35);
  margin-bottom: 28px;
}

.step__icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
  line-height: 1;
}

.step__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.step p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.steps-note {
  text-align: center;
  margin-top: 48px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   FEATURE SPLIT (alternating image + text)
   ============================================================ */
.split { padding: 80px 0; }
.split--flip .split__inner { direction: rtl; }
.split--flip .split__body { direction: ltr; }
.split--flip .split__visual { direction: ltr; }

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;   /* verticaal centreren: foto en tekst op gelijke hoogte */
}

.split__body { display: flex; flex-direction: column; gap: 0; }
.split__body h2 { margin-bottom: 20px; }
.split__body p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; max-width: 100%; }
.split__body .btn { margin-top: 24px; align-self: flex-start; }

.split__visual {
  border-radius: 20px;
  overflow: hidden;     /* knipt de hoekpixels van de foto zelf af */
}

.split__img {
  width: 100%;
  aspect-ratio: 3/4;    /* staand formaat voor portretfoto's */
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

/* Consument: inzoomen op doosje, hand onderaan wegsnijden */
.split__img--doosje {
  object-fit: cover;
  object-position: center 10%;
}

/* Uitgezoomed variant — portret verhouding voor staande foto's */
.split__visual--loose .split__img {
  aspect-ratio: 3/4;
  width: 85%;
  margin: 0 auto;
  border-radius: 24px;
  display: block;
  overflow: hidden;
}

.split__visual--loose {
  padding: 20px;
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
}

.split__img--contain {
  /* legacy — gedrag identiek aan split__img */
}

.split__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: .9rem;
}
.split__placeholder-icon { font-size: 2.5rem; opacity: .4; }

.split__video {
  display: block;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.cards-section { padding: 88px 0; }
.cards-header { margin-bottom: 40px; }
.cards-header p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
}

.card h3 { font-size: 1rem; margin-bottom: 10px; }
.card p  { font-size: .95rem; color: var(--text-muted); line-height: 1.65; max-width: 100%; }

/* cards on dark bg */
.section--dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.section--dark .card:hover { border-color: rgba(255,255,255,.2); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.section--dark .card__icon { background: rgba(255,255,255,.1); }
.section--dark .card h3 { color: #fff; }
.section--dark .card p  { color: rgba(255,255,255,.6); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--pink);
  padding: 56px 0;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat {
  text-align: center;
  padding: 8px 32px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.25);
}

.stat__num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.stat__label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

/* ============================================================
   QUOTE / HIGHLIGHT
   ============================================================ */
.quote-section {
  padding: 112px 0;
  text-align: center;
}

.quote-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 72px 80px;
  position: relative;
}
.quote-box::before {
  content: '\201C';
  position: absolute;
  top: 24px; left: 48px;
  font-size: 8rem;
  line-height: 1;
  color: var(--pink);
  opacity: .15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.quote-box blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.35;
  color: var(--text);
  max-width: 740px;
  margin: 0 auto;
}

.quote-box cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--text);
  padding: 96px 32px;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  max-width: 620px;
  margin: 0 auto;
}

.cta-banner p {
  color: rgba(255,255,255,.55);
  margin: 18px auto 40px;
  font-size: 1.05rem;
  max-width: 500px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { padding: 88px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-aside h2 { margin-bottom: 20px; }
.contact-aside p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; max-width: 100%; }

.contact-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-top: 36px;
}
.contact-badge__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.contact-badge__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-badge h4 {
  font-size: .88rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-badge p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
}

/* form */
.form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234d4d4d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--pink-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #c8b0b0; }
.form-group textarea { resize: vertical; min-height: 136px; }

.form__submit { margin-top: 6px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 2px solid var(--pink);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { color: var(--text); margin-bottom: 8px; font-size: 1.1rem; }
.form-success p { color: var(--text-muted); font-size: .95rem; max-width: 100%; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer__main {
  padding: 56px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-icon {
  width: 32px; height: 32px;
  object-fit: contain;
}
.footer__logo-icon--fb {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__logo-name {
  font-weight: 900;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  display: block;
}

.footer__logo-img {
  width: 200px;
  height: 24px;
  object-fit: cover;
  object-position: center 47%;
}

.footer__tagline {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
}

.footer__col h4 {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text);
  margin-bottom: 18px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer__col ul a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .15s;
}
.footer__col ul a:hover { color: var(--pink); }

.footer__bar {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: .78rem;
  color: var(--text-muted);
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.footer__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg);
  padding: 72px 32px 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 720px; margin: 0 auto; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p {
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ============================================================
   OVER ONS — person card
   ============================================================ */
.person {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  padding: 88px 0;
}
.person--flip { direction: rtl; }
.person--flip > * { direction: ltr; }

.person__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;              /* foto netjes afgerond in de container */
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: .85rem;
  /* geen stippellijn, geen achtergrond — foto vult de ruimte */
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* hele foto zichtbaar, geen bijsnijden */
  object-position: center top;
  border-radius: var(--radius-lg);
}
.person__photo-icon { font-size: 3rem; opacity: .3; }

.person__body h2 { margin-bottom: 6px; }
.person__role {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pink);
  margin-bottom: 24px;
}
.person__body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 100%;
}

.person__quote {
  background: var(--bg);
  border-left: 3px solid var(--pink);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
}
.person__quote p {
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  margin: 0;
}

/* values list */
.values-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.values-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .97rem; line-height: 1.6; color: var(--text-muted);
}
.values-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 8px;
}
.values-list li div { display: flex; flex-direction: column; gap: 3px; }
.values-list li strong { display: block; color: var(--text); font-size: 1rem; }
.values-list li p { margin: 0; }

/* ============================================================
   GRATIS AANVRAGEN — aanvraagformulier
   ============================================================ */
.aanvraag-section { padding: 72px 0 112px; }
.aanvraag-inner { max-width: 640px; margin: 0 auto; }

.form-section { margin-bottom: 36px; }
.form-section__title {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

/* Product option cards */
.product-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-option {
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 14px 18px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  text-align: center;
  position: relative;
  user-select: none;
}
.product-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-option:hover:not(.is-disabled) {
  border-color: var(--pink);
  background: var(--pink-light);
}
.product-option.is-selected {
  border-color: var(--pink);
  background: var(--pink-light);
}
.product-option.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}
.product-option__name {
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 6px;
}
.product-option__stock {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-option__stock--out {
  color: var(--pink);
  font-weight: 700;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  appearance: auto;     /* override global appearance:none van .form-group input */
  accent-color: var(--pink);
  cursor: pointer;
}
.link-pink { color: var(--pink); text-decoration: underline; }

/* Feedback messages in form */
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.form-msg--error   { background: #fff0f0; border: 1.5px solid #ffc0c0; color: #c0392b; }
.form-msg--warning { background: #fffbea; border: 1.5px solid #ffe082; color: #7a5f00; }

/* Success screen */
.aanvraag-success {
  text-align: center;
  padding: 64px 32px 112px;
  max-width: 540px;
  margin: 0 auto;
}
.aanvraag-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}
.aanvraag-success h2 { margin-bottom: 16px; }
.aanvraag-success p { color: var(--text-muted); margin: 0 auto; }

/* Disable button during loading */
.btn:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

/* ── Footer social media ────────────────────────────────── */
.footer__social { margin-top: 24px; }
.footer__social-text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.footer__social-icons { display: flex; gap: 12px; align-items: center; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: opacity .15s, transform .15s;
}
.footer__social-link:hover { opacity: .75; transform: translateY(-2px); }
.footer__social-icon { width: 32px; height: 32px; object-fit: contain; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .person { grid-template-columns: 1fr 1fr; gap: 56px; }
  .person--flip { direction: ltr; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .steps-section { padding: 64px 0; }
  .split { padding: 56px 0; }
  .cards-section { padding: 64px 0; }

  .steps-header { margin-bottom: 36px; }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-row::before { display: none; }
  .step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child { border-bottom: none; }
  .step__num { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.2rem; }
  .step p { margin: 0; max-width: 100%; }

  .split__inner { grid-template-columns: 1fr; gap: 32px; }
  .split--flip .split__inner { direction: ltr; }
  /* Op tablet/mobiel: foto boven de tekst */
  .split__visual { order: -1; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-header { margin-bottom: 28px; }
  .stats__row { grid-template-columns: 1fr; gap: 0; }
  .stat:not(:last-child)::after { display: none; }
  .stat { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat:last-child { border-bottom: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 64px 0; }
  .person { grid-template-columns: 1fr; padding: 64px 0; gap: 40px; }
  .person__photo { aspect-ratio: 4/3; }  /* breder op tablet = minder hoog */
  .quote-box { padding: 40px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }

  /* Nav: logo gecentreerd, hamburger absoluut rechts */
  .nav__inner {
    padding: 0 20px;
    justify-content: center;
    position: relative;
  }
  .nav__logo {
    gap: 8px;
  }
  .nav__logo-icon {
    width: 30px;
    height: 30px;
  }
  .nav__logo-text {
    display: block;          /* zichtbaar op mobiel */
    width: 150px;
    height: 18px;
    object-fit: cover;
    object-position: center 47%;
  }
  .nav__burger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    z-index: 199;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 48px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
  }
  .nav__menu.open { display: flex; }

  /* Elke menuknop als grote, klikbare rij */
  .nav__menu li {
    border-bottom: 1px solid var(--line);
  }
  .nav__menu li:last-child {
    border-bottom: none;
    margin-top: 16px;
  }
  .nav__menu a {
    display: flex;
    align-items: center;
    padding: 20px 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    border-radius: var(--radius-sm);
    color: var(--text);
  }
  .nav__menu a:hover { background: var(--bg); }
  .nav__menu a.active { color: var(--pink); }

  /* 'Gratis aanvragen' knop vol-breed en goed zichtbaar */
  .nav__menu .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-full);
    padding: 18px 24px;
    font-size: 1rem;
  }

  .nav__burger { display: flex; }

  .hero { padding: 48px 20px 40px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__proof { flex-direction: column; gap: 10px; }
  .hero__proof-dot { display: none; }

  /* Liggend maandverband: zelfde grootte als andere foto's op mobiel */
  .split__img--liggend {
    aspect-ratio: 3/4;
    object-fit: contain;
    border-radius: 16px;
  }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-options { grid-template-columns: 1fr; }

  .quote-box { padding: 32px 20px; }
  .quote-box::before { font-size: 4rem; top: 12px; left: 20px; }

  .cta-banner { padding: 56px 20px; }
  .btn { padding: 14px 26px; }

  .person { gap: 24px; }
  .person__photo { aspect-ratio: 1/1; }   /* vierkant op kleine schermen */
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
}
