:root {
  --sm-bg:          rgb(255, 255, 227);
  --sm-paper:       rgb(255, 255, 215);
  --sm-ink:         #152b47;
  --sm-ink-2:       rgba(21, 43, 71, .62);
  --sm-ink-3:       rgba(21, 43, 71, .38);
  --sm-hi:          #152b47;
  --sm-hi-soft:     rgba(21, 43, 71, .06);
  --sm-sage-1:      rgba(21, 43, 71, .05);
  --sm-sage-2:      rgba(21, 43, 71, .08);
  --sm-glass:       rgba(255, 255, 255, .42);
  --sm-glass-bdr:   rgba(21, 43, 71, .12);
  --sm-font:        'Satoshi', system-ui, sans-serif;
  --sm-font-title:  'Sen', system-ui, sans-serif;
  --sm-r-pill:      100px;
  --sm-t:           150ms ease;
  --sm-type-xs:     clamp(.5rem, .9vw, .625rem);
  --sm-type-xl:     clamp(1.25rem, 2.5vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html, body { margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: #152b47 }
body {
  font-family: var(--sm-font);
  background: var(--sm-bg);
  color: var(--sm-ink);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; cursor: pointer }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0 }

.btn {
  display: inline-block;
  font-family: var(--sm-font);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--sm-r-pill);
  border: 1px solid var(--sm-ink);
  transition: background var(--sm-t), color var(--sm-t), border-color var(--sm-t);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--sm-ink);
  color: var(--sm-bg);
}
.btn-primary:hover {
  background: #1e3a5f;
  border-color: #1e3a5f;
  color: rgb(255, 255, 227);
}
.btn-ghost {
  background: transparent;
  color: var(--sm-ink);
  border-color: var(--sm-ink);
}
.btn-ghost:hover {
  background: rgba(21,43,71,.06);
}
.btn-ghost--light {
  background: transparent;
  color: rgb(255,255,227);
  border-color: rgba(255,255,227,.35);
}
.btn-ghost--light:hover {
  background: rgba(255,255,227,.08);
  border-color: rgba(255,255,227,.55);
}

.hero {
  min-height: 100svh;
  padding: clamp(80px,8vw,80px) 0;
  background: var(--sm-bg);
  border-radius: 0 0 35px 35px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
  gap: 48px;
  align-items: stretch;
}
.hero__content { display: flex; flex-direction: column; gap: 24px; justify-content: center; padding-top: 40px }
@media (min-width: 860px) { .hero__content { padding-top: 0 } }
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sm-ink);
  margin-bottom: -14px;
}
.hero__h1 {
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
}
.h1-plain {
  display: block;
  color: var(--sm-ink);
}
.h1-underline {
  display: block;
  color: var(--sm-ink);
  text-decoration: underline;
  text-decoration-color: rgba(21, 43, 71, .28);
  text-decoration-thickness: .06em;
  text-underline-offset: .1em;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.4vw, 1.375rem);
  font-weight: 700;
  color: var(--sm-ink);
  line-height: 1.4;
  max-width: 440px;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; align-items: flex-start }

.hero__blob-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(220px, 50vw, 360px);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-image: url('../img/dog.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero__blob-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 43, 71, 0) 0%,
    rgba(21, 43, 71, .05) 45%,
    rgba(21, 43, 71, .62) 72%,
    rgba(21, 43, 71, .88) 100%
  );
}

.hero__kaart {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.bewijs__tag {
  font-size: var(--sm-type-xs);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgb(255, 255, 227);
  color: #152b47;
  padding: 3px 10px;
  border-radius: var(--sm-r-pill);
  display: inline-block;
  width: fit-content;
}
.bewijs__naam {
  font-size: 1.425rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: rgb(255, 255, 227);
}
.bewijs__tekst {
  font-size: 1.125rem;
  color: rgb(255,255,227);
  line-height: 1.5;
  margin-top: -4px;
}
.bewijs__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 14px;
  margin-top: 4px;
}
.bewijs__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,.15);
  align-items: center;
  text-align: center;
}
.bewijs__stat:last-child { border-right: none }
.bewijs__getal {
  font-size: clamp(.9rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgb(255, 255, 227);
  line-height: 1;
}
.bewijs__stat-label {
  font-size: clamp(.5rem, 1.4vw, .75rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgb(255,255,227);
}

@media (min-width: 860px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(48px, 5vw, 96px);
    align-items: center;
  }
  .hero__blob-card {
    height: 76svh;
    min-height: 440px;
    background-position: center 25%;
  }
}

.herkenning {
  background: #152b47;
  border-radius: 0 0 35px 35px;
  padding: clamp(72px,9vw,120px) 0 88px;
  position: relative;
  z-index: 1;
  margin-top: -28px;
}
.herkenning__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px }
.herkenning__kop {
  font-size: var(--sm-type-xl);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: rgb(255, 255, 227);
}
.herkenning__grid { display: grid; grid-template-columns: 1fr; gap: 0 }
.herkenning__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 227, .12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.herkenning__item:first-child { border-top: none }
.herkenning__item-setup {
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  color: rgba(255, 255, 227, .45);
  line-height: 1.5;
  font-weight: 400;
}
.herkenning__item-punch {
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  font-weight: 700;
  color: rgb(255, 255, 227);
  line-height: 1.3;
  letter-spacing: -.01em;
}

@media (min-width: 860px) {
  .herkenning__inner { padding: 0 56px }
  .herkenning__grid { grid-template-columns: 1fr; gap: 0 }
}

.werkwijze {
  padding: 128px 0 128px;
  background: var(--sm-bg);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  z-index: 2;
}
.werkwijze__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px }
@media (min-width: 860px) {
  .werkwijze__inner { padding: 0 56px }
}

.w-b__intro {
  text-align: center;
  font-size: clamp(.875rem,.84rem+.15vw,1rem);
  color: var(--sm-ink);
  margin-bottom: clamp(48px,6vw,80px);
  letter-spacing: .01em;
}
.w-b__kolommen {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 860px) {
  .w-b__kolommen {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: stretch;
  }
}
.w-b__divider {
  display: none;
  background: rgba(21,43,71,.12);
  align-self: stretch;
}
@media (min-width: 860px) {
  .w-b__divider { display: block }
}
.w-b__kolom { display: flex; flex-direction: column; gap: 72px }
@media (min-width: 860px) {
  .w-b__kolom { gap: 128px }
  .w-b__kolom--links { padding-right: clamp(32px,4vw,72px) }
  .w-b__kolom--rechts { padding-left: clamp(32px,4vw,72px); justify-content: center; }
}
.w-b__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px }
.w-b__illu {
  width: 100%; max-width: 280px;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(21,43,71,.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sm-ink);
  font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 4px;
}
.w-b__num-titel {
  font-family: var(--sm-font-title);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--sm-ink);
  margin-bottom: -8px;
}
.w-b__num-titel span { font-weight: 400; margin-right: 4px; color: var(--sm-ink-3) }
.w-b__body {
  color: var(--sm-ink);
  line-height: 1.7;
  width: 100%;
}

@keyframes illu-float-a {
  0%   { transform: translate(0px, 0px) rotate(0deg) }
  15%  { transform: translate(5px, -7px) rotate(.4deg) }
  35%  { transform: translate(-4px, -11px) rotate(-.5deg) }
  55%  { transform: translate(-8px, -3px) rotate(.7deg) }
  75%  { transform: translate(3px, -9px) rotate(-.3deg) }
  100% { transform: translate(0px, 0px) rotate(0deg) }
}
@keyframes illu-float-b {
  0%   { transform: translate(0px, 0px) rotate(0deg) }
  20%  { transform: translate(-6px, -8px) rotate(-.6deg) }
  45%  { transform: translate(7px, -5px) rotate(.4deg) }
  65%  { transform: translate(4px, -12px) rotate(-.3deg) }
  85%  { transform: translate(-3px, -6px) rotate(.5deg) }
  100% { transform: translate(0px, 0px) rotate(0deg) }
}
@keyframes illu-float-c {
  0%   { transform: translate(0px, 0px) rotate(0deg) }
  25%  { transform: translate(3px, -10px) rotate(.6deg) }
  50%  { transform: translate(-7px, -6px) rotate(-.4deg) }
  70%  { transform: translate(-5px, -12px) rotate(.3deg) }
  90%  { transform: translate(6px, -4px) rotate(-.7deg) }
  100% { transform: translate(0px, 0px) rotate(0deg) }
}
.w-b__illu--a { animation: illu-float-a 9s ease-in-out infinite; display: none }
.w-b__illu--b { animation: illu-float-b 13s ease-in-out infinite; display: none }
.w-b__illu--c { animation: illu-float-c 11s ease-in-out infinite; display: none }

.over {
  padding: clamp(64px,8vw,96px) 0;
  background: var(--sm-bg);
}
.over__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px }

.over__quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(32px,4vw,56px);
}
.over__quote-mark {
  font-family: var(--sm-font-title);
  font-size: 4rem; font-weight: 800; line-height: .7;
  color: rgba(21,43,71,.12); user-select: none;
}
.over__quote-tekst {
  font-family: var(--sm-font-title);
  font-size: clamp(1.625rem, 1.1rem + 2.1vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
  color: var(--sm-ink);
}

.over__card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sm-ink);
}
.over__foto {
  min-height: 220px;
  max-height: 260px;
  overflow: hidden;
}
.over__foto img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block;
  min-height: 220px;
}
@media (min-width: 860px) {
  .over__foto { min-height: 360px; max-height: none }
  .over__foto img { min-height: 360px }
}
.over__tekst {
  padding: clamp(32px,4vw,56px);
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
}
.over__naam { color: var(--sm-bg); letter-spacing: -.03em; line-height: 1.05 }
.over__sub {
  font-size: var(--sm-type-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgb(255,255,227);
  display: block; margin-top: 4px;
}
.over__moyu-logo {
  display: block;
  height: 19px;
  width: auto;
  margin-top: 14px;
  margin-bottom: 12px;
  opacity: .35;
}
.over__bio { color: rgb(255,255,227); line-height: 1.75 }
@media (min-width: 860px) {
  .over__inner { padding: 0 56px }
  .over__card { grid-template-columns: 1fr 1.2fr }
}

.aanbod {
  padding: clamp(64px,8vw,96px) 0;
  background: var(--sm-bg);
  border-radius: 0 0 35px 35px;
  position: relative;
  z-index: 2;
}
.aanbod__inner { max-width: 1280px; margin: 0 auto; padding: 0 20px }
@media (min-width: 860px) { .aanbod__inner { padding: 0 56px } }

.aanbod__garantie {
  margin-bottom: clamp(28px,3.5vw,48px);
}
.aanbod__garantie-statement {
  font-family: var(--sm-font-title);
  font-size: clamp(1.625rem, 1.1rem + 2.1vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
  color: var(--sm-ink);
  text-align: center;
}
.aanbod__garantie-statement span { text-decoration: underline; text-decoration-color: rgba(21,43,71,.28); text-decoration-thickness: .06em; text-underline-offset: .1em }
@media (min-width: 560px) { .aanbod__garantie-statement span { white-space: nowrap } }
.aanbod__garantie-sub {
  margin-top: 16px;
  color: var(--sm-ink); line-height: 1.6;
  text-align: center;
}

.aanbod__pakketten {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 860px) {
  .aanbod__pakketten { grid-template-columns: 1fr 1px 1fr }
}

.aanbod__pakket {
  padding: clamp(24px,3vw,40px) 0;
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 860px) {
  .aanbod__pakket { padding: 0 clamp(14px,1.5vw,24px) }
  .aanbod__pakket:first-child { padding-left: 0 }
  .aanbod__pakket:last-child { padding-right: 0 }
}

.aanbod__pakket + .aanbod__pakket { border-top: 1px solid rgba(21,43,71,.1) }
@media (min-width: 860px) { .aanbod__pakket + .aanbod__pakket { border-top: none } }

.aanbod__scheider { display: none; background: rgba(21,43,71,.1) }
@media (min-width: 860px) { .aanbod__scheider { display: block } }

.aanbod__pakket-naam {
  font-family: var(--sm-font-title);
  font-size: clamp(1.25rem, 0.81rem + 1.88vw, 2.5rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.05;
  color: var(--sm-ink);
}
.aanbod__pakket-naam em { font-style: normal; color: var(--sm-ink) }
.aanbod__pakket-zin { color: var(--sm-ink); line-height: 1.65 }
.aanbod__pakket-prijs {
  font-family: var(--sm-font-title);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: var(--sm-ink);
}
.aanbod__pakket-voor {
  font-size: .8125rem;
  color: var(--sm-ink);
  line-height: 1.55;
  margin-top: auto;
}
.aanbod__addon {
  font-size: .8125rem;
  color: var(--sm-ink);
  line-height: 1.55;
  margin-top: auto;
}
.aanbod__pakket-prijs-wrap { }

.cta-sectie {
  padding: clamp(140px,16vw,200px) 0 clamp(100px,12vw,160px);
  background: #152b47;
  position: relative;
  z-index: 1;
  margin-top: -28px;
}
.cta-sectie__inner { max-width: 720px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1 }
.cta__kop {
  font-family: var(--sm-font-title);
  font-size: clamp(2rem, 1.2rem + 3.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  color: rgb(255, 255, 227);
}
.cta__email {
  display: block;
  font-family: var(--sm-font-title);
  font-size: clamp(1.375rem, 1rem + 1.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgb(255, 255, 227);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 227, .28);
  text-underline-offset: .15em;
  margin-top: 40px;
  transition: text-decoration-color var(--sm-t);
}
.cta__email:hover { text-decoration-color: rgba(255, 255, 227, .75) }
.cta__reply {
  margin-top: 12px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(255,255,227);
}
@media (min-width: 860px) { .cta-sectie__inner { padding: 0 56px } }

.footer {
  background: #152b47;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer__logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.footer__mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;

}
.footer__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.footer__logo-naam {
  font-family: var(--sm-font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
}
.footer__faq {
  font-family: var(--sm-font);
  font-size: .9375rem;
  font-weight: 400;
  letter-spacing: -.01em;
  color: rgb(255,255,227);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.footer__faq:hover { color: rgb(255,255,227) }
.footer__meta {
  font-size: var(--sm-type-xs);
  color: rgb(255,255,227);
  text-align: right;
}
.footer__meta a {
  color: rgb(255,255,227);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__meta a:hover { color: rgb(255,255,227) }
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; gap: 12px; justify-items: center; text-align: center }
  .footer__meta { text-align: center }
}
@media (min-width: 860px) { .footer__inner { padding: 0 56px } }

/* ── MOBIELE STICKY CTA ─────────────────────────────── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 8px 20px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,227,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(21,43,71,.07);
}
.mob-cta__btn {
  display: block;
  width: 100%;
  font-size: .8125rem;
  padding: 11px 20px;
}
.mob-cta--hidden {
  display: none !important;
}
@media (max-width: 640px) {
  .mob-cta { display: block }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)) }
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  margin: 0;
  z-index: 100;
  background: rgb(255,255,227);
  border-bottom: 1px solid rgba(21,43,71,.08);
}
.nav__inner {
  padding: 0 clamp(32px,5vw,72px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .3s ease;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px,2.5vw,36px);
  list-style: none;
}
.nav__link {
  font-family: var(--sm-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sm-ink);
  transition: color var(--sm-t);
}
.nav__link:hover { color: var(--sm-ink) }
@media (max-width: 480px) { .nav__links { display: none } }
.nav.is-scrolled .nav__inner {
  height: 44px;
}
.nav__logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}
.nav__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .nav__wordmark { display: none }
  .nav__mark { width: 32px; height: 32px }
}
.nav__logo-naam {
  font-family: var(--sm-font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #152B47;
}

h1, h2, h3, h4, h5, h6,
.hero__h1,
.herkenning__kop,
.over__naam,
.aanbod__pakket-naam,
.cta__kop {
  font-family: var(--sm-font-title);
}

.herkenning__kop,
.over__naam,
.cta__kop {
  font-size: clamp(1.75rem, 1.05rem + 3vw, 3.75rem);
  line-height: 1.1;
}

.aanbod__pakket-naam {
  font-size: clamp(1.125rem, 0.75rem + 1.5vw, 1.875rem);
  line-height: 1.1;
}

/* P large */
.hero__sub {
  font-size: clamp(1.125rem, 0.97rem + 0.66vw, 1.5625rem);
  line-height: 1.2;
}

/* P normal */
.over__bio,
.herkenning__item,
.aanbod__pakket-zin,
.aanbod__garantie-sub,
.w-b__body {
  font-size: clamp(1rem, 0.89rem + 0.47vw, 1.3125rem);
  line-height: 1.48;
}

.q-b {
  padding: 96px clamp(28px, 5vw, 80px);
  background: var(--sm-bg);
}
.q-b__inner { max-width: 1280px; margin: 0 auto }
.q-b__wrap { display: flex; flex-direction: column; gap: 20px }
.q-b__mark {
  font-family: var(--sm-font-title);
  font-size: 5rem; font-weight: 800; line-height: .7;
  color: rgba(21,43,71,.12); user-select: none;
}
.q-b__quote {
  font-family: var(--sm-font-title);
  font-size: clamp(1.625rem, 1.1rem + 2.1vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
  color: var(--sm-ink);
}
.q-b__toelichting {
  font-size: clamp(1rem, .89rem + .47vw, 1.3125rem);
  color: var(--sm-ink); line-height: 1.7;
  padding-top: 16px; border-top: 1px solid rgba(21,43,71,.1);
}
.q-b__toelichting strong { color: var(--sm-ink); font-weight: 700 }
.q-b__cta { margin-top: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px }
.q-b__cta-tekst { font-size: clamp(.9rem, .8rem + .42vw, 1.175rem); font-weight: 500; color: var(--sm-ink); line-height: 1.7 }

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sm-hi);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
