
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;

  background: var(--ink);
}
.topbar .wrap {
  --bar-pad-x: 32px;
  display: flex; align-items: center;
  gap: 28px; padding: 18px var(--bar-pad-x);
}

.topbar::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(250,250,251,.11);
}

.topbar__sheen {
  position: absolute; bottom: 0; left: 0; z-index: 1;
  width: 96px; height: 1px;
  pointer-events: none; opacity: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,235,214,.55) 40%,
    rgba(255,243,230,.9) 50%,
    rgba(255,235,214,.55) 60%,
    transparent 100%);
  box-shadow: 0 0 6px 0 rgba(255,220,180,.35);
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .topbar__sheen { display: none; }
}

.topbar__logo { display: flex; align-items: center; margin-right: auto; }
.topbar__actions { display: flex; align-items: center; gap: 22px; }

.topbar__call { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.1; }
.topbar__call-label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,250,251,.45);
}
.topbar__call-num {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--white);
  transition: color .2s var(--ease);
}
.topbar__call:hover .topbar__call-num { color: var(--action); }

@media (max-width: 680px) {
  .topbar .wrap { --bar-pad-x: 20px; padding: 11px var(--bar-pad-x); gap: 16px; }
  .topbar__actions { gap: 14px; }
  .topbar__call { display: none; }
}

.hero {
  position: relative;
  min-height: clamp(680px, 100svh, 100vh);
  overflow: hidden;
  background: var(--hero-deep, #060C1A);
  display: flex;
  align-items: center;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__fade-media { position: absolute; top: 0; right: 0; width: min(55%, 620px); height: 100%; z-index: 1; pointer-events: none; }
.hero__video {

  width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block;
  filter: saturate(.68) brightness(.34);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 28%, rgba(0,0,0,.85) 55%, black 80%), linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 28%, rgba(0,0,0,.85) 55%, black 80%), linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

.hero__inner {
  position: relative; z-index: 2;

  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  padding: 110px 32px 64px;
}

@keyframes heroChipPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .42; transform: scale(.7); } }
@keyframes heroScrollLine { 0%, 100% { opacity: .32; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.22); } }

.hero__marks {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 22px; margin-bottom: 18px; padding: 0; list-style: none;
}
.hero__marks li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(250,250,251,.58);
  white-space: nowrap;
}
.hero__marks .hgi-stroke { font-size: 14px; color: rgba(250,250,251,.42); }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 24px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); flex-shrink: 0; animation: heroChipPulse 2s ease infinite; }

.hero h1 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;

  max-width: 780px;
  font-size: clamp(36px, 4.05vw, 60px);
}
.hero h1 em { font-style: italic; color: var(--white); font-weight: 500; }
.hero__sub {
  font-size: 16.5px; color: rgba(250,250,251,.72); line-height: 1.55;
  max-width: 440px; margin: 16px 0 24px;
}

.hero__cta-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px 32px; width: 100%; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }

.hero__cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero__trustline { font-size: 13.5px; color: rgba(250,250,251,.62); letter-spacing: .01em; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  column-gap: 26px;

  margin-top: 16px;
}
.hero__stats > div { position: relative; text-align: left; }

.hero__stats > div:not(:first-child)::before {
  content: ""; position: absolute; left: -13px; top: 15%; height: 70%; width: 1px;
  background: rgba(250,250,251,.14);
}
.hero__stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); line-height: 1; }
.hero__stat-label { font-size: 12px; color: rgba(250,250,251,.55); margin-top: 6px; }

.hero__scroll-hint {
  position: absolute; left: 50%; bottom: 22px; z-index: 4;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero__scroll-hint-text { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.22); }
.hero__scroll-hint-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: heroScrollLine 2s ease infinite;
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero__inner { padding-top: 78px; padding-bottom: 44px; }
  .hero__sub { margin: 13px 0 20px; }
  .hero__cta-row { gap: 16px 32px; }
}

@media (max-width: 980px) {
  .hero__inner { padding-top: 96px; }
  .hero__fade-media { width: 100%; }

  .hero__stats { gap: 12px 22px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }

  .hero__inner { padding-top: 84px; padding-bottom: 116px; }

  .hero__kicker { font-size: 11px; letter-spacing: .04em; padding: 6px 13px 6px 9px; margin-bottom: 20px; }

  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 0 14px; }
  .hero__stats > div:not(:first-child)::before { left: -7px; }
  .hero__stat-num { font-size: 19px; }
  .hero__stat-label { font-size: 11px; margin-top: 5px; }
}

.offerte {

  --offerte-overlap: 120px;
  position: relative; z-index: 4;
  margin-top: calc(-1 * var(--offerte-overlap));
  padding-top: 0;
}

.offerte::before {
  content: "";
  position: absolute;
  top: var(--offerte-overlap);
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: var(--white);
  z-index: -1;
}
.offerte__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 38px 42px;

  display: block;
}
.offerte__intro {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.offerte__title { font-family: var(--font-display); font-size: 25px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.offerte__desc { color: var(--ink-faint); font-size: 14.5px; }

.offerte__badges { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

.uform {
  display: grid;

  grid-template-columns: 0.8fr 0.8fr 1fr 1.15fr auto;
  gap: 24px; align-items: end;
}

.uform__field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.uform__field input, .uform__field select { width: 100%; min-width: 0; }
.uform__field label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); }
.uform__field input, .uform__field select {
  border: none; border-bottom: 1.5px solid var(--line-strong);
  background: transparent; padding: 6px 0 10px; font-size: 15.5px; color: var(--ink);
  transition: border-color .25s var(--ease);
}
.uform__field input:focus, .uform__field select:focus { outline: none; border-color: var(--active); }

@media (max-width: 1140px) {
  .offerte__card { grid-template-columns: 1fr; }
  .offerte__badges { flex-direction: row; }
}

@media (max-width: 640px) {
  .offerte__intro { flex-direction: column; align-items: flex-start; gap: 18px; }
  .offerte__badges { width: 100%; }
  .offerte__badges .badge { flex: 1 1 auto; justify-content: center; }
}

@media (min-width: 981px) and (max-height: 820px) {
  .offerte { --offerte-overlap: 72px; }
}
@media (max-width: 800px) {
  .offerte { --offerte-overlap: 70px; }
}

@media (max-width: 1140px) {
  .uform { grid-template-columns: 1fr 1fr; }
  .uform > .btn { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 560px) {
  .offerte { --offerte-overlap: 24px; }
  .offerte__card { padding: 26px 24px; }
  .uform { grid-template-columns: 1fr; gap: 18px; }
  .offerte__badges { flex-wrap: wrap; }
}

.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }

.why-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; }
.why-head .section-head { margin-bottom: 0; }

.why-certs { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; padding-top: 4px; max-width: 420px; }
.why-certs__item {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 15px;
  box-shadow: var(--shadow-sm);
}
.why-certs__label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.why-certs__full { display: block; font-size: 11.5px; color: var(--ink-faint); margin-top: 1px; }
.why-certs__meaning { display: block; font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; margin-top: 5px; }
.why-certs__item svg { width: 14px; height: 14px; color: var(--ink-soft); flex-shrink: 0; }

@media (max-width: 780px) {
  .why-head { flex-direction: column; }
  .why-certs { max-width: 100%; }
}

.why__sub { color: var(--ink-faint); font-size: 15.5px; margin-top: 8px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-card__icon {
  display: block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 22px;
  color: var(--ink);
  background: var(--chip);
  border-radius: 5px;
  margin-bottom: 20px;
}
.why-card__title { font-family: var(--font-display); font-weight: 600; font-size: 18.5px; margin-bottom: 8px; letter-spacing: -.01em; }
.why-card__text { font-size: 13.5px; color: var(--ink-soft); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px 22px; }
}

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.split--reverse { grid-template-columns: 1.05fr .95fr; }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(100% 80% at 80% 15%, #C6551C 0%, transparent 55%),
    linear-gradient(160deg, #EFE7D8 0%, #DDD2BB 100%);
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__media-tag {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.split p { color: var(--ink-soft); margin-bottom: 20px; font-size: 16.5px; }
.split .stat-row { display: flex; gap: 40px; margin-top: 28px; }
.stat__num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--ink); }
.stat__label { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }

@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 32px; }

  .werkwijze__media, .services__media, .waarom__media,
  .pricing__media, .story__media, .coverage__media { order: -1; }
}

.reviews__marquee {
  margin: 6px 0 20px;
  padding: 0 32px;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews__marquee {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
.reviews__marquee::-webkit-scrollbar { display: none; }
.reviews__marquee:focus-visible { outline: 2px solid var(--action); outline-offset: 4px; }
.reviews__track {
  display: flex;
  gap: 22px;
  width: max-content;

  animation: reviewsMarquee 34s linear infinite;
}
.reviews__marquee:hover .reviews__track,
.reviews__marquee:focus-within .reviews__track,
.reviews__marquee.is-held .reviews__track { animation-play-state: paused; }
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; }
}
.review-card {
  min-width: 340px; max-width: 340px;
  padding: 30px;
  display: flex; flex-direction: column;
}
.review-card__quote { font-family: var(--font-display); font-size: 40px; color: var(--line-strong); line-height: 1; margin-bottom: 8px; }
.review-card__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 14px; }
.review-card__stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.review-card__text { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--chip); color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.review-card__name { font-weight: 600; font-size: 14px; }
.review-card__meta { font-size: 12.5px; color: var(--ink-faint); }

.werkwijze { position: relative; overflow: hidden; }
.werkwijze__noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.werkwijze > .wrap { position: relative; z-index: 1; }

.werkwijze__split { align-items: center; }

.werkwijze__media, .services__media, .waarom__media, .pricing__media, .story__media, .coverage__media { position: relative; }
.werkwijze__media::before, .services__media::before, .waarom__media::before, .pricing__media::before, .story__media::before, .coverage__media::before {
  content: "";
  position: absolute;
  inset: 0;

  transform: rotate(-6deg);
  background: var(--ink);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.services__media::before { transform: rotate(6deg); }

@media (max-width: 760px) {
  .werkwijze__media::before, .waarom__media::before,
  .pricing__media::before, .story__media::before, .coverage__media::before { transform: rotate(-2.5deg); }
  .services__media::before { transform: rotate(2.5deg); }
}
.services__media .split__media { aspect-ratio: 4 / 5; }

.wwz { margin-top: 0; }

.wwz__rail { position: relative; display: flex; gap: 4px; margin-bottom: 64px; }
.werkwijze__split .wwz__num-label { font-size: 12px; }
.wwz__track {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: rgba(250,250,251,.12);
}
.wwz__progress {
  position: absolute; left: 0; top: 0; height: 100%; width: 25%;
  background: var(--active-on-ink);
  transition: width .5s var(--ease);
}
.wwz__num {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  background: none; border: none; cursor: pointer;
  padding: 0 16px 22px 0;
  text-align: left;
}
.wwz__num-ring { position: relative; width: 44px; height: 44px; flex-shrink: 0; }
.wwz__num-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.wwz__num-ring-track { fill: none; stroke: rgba(250,250,251,.1); stroke-width: 1.5; }
.wwz__num-ring-fill {
  fill: none; stroke: var(--active-on-ink); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 119.4; stroke-dashoffset: 119.4;
}

.wwz__num.is-counting .wwz__num-ring-fill { animation: wwzRing 4.2s linear forwards; }
.wwz__num.is-active:not(.is-counting) .wwz__num-ring-fill { stroke-dashoffset: 0; transition: stroke-dashoffset .4s var(--ease); }
@keyframes wwzRing { from { stroke-dashoffset: 119.4; } to { stroke-dashoffset: 0; } }
.wwz__num-digit {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(250,250,251,.4);
  transition: color .35s var(--ease);
}
.wwz__num-label {
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  color: rgba(250,250,251,.4);
  transition: color .35s var(--ease);
  line-height: 1.35;
  padding-top: 2px;
}
.wwz__num:hover .wwz__num-label { color: rgba(250,250,251,.7); }
.wwz__num.is-active .wwz__num-digit { color: var(--active-on-ink); }
.wwz__num.is-active .wwz__num-label { color: var(--paper); }

.wwz__panels { min-height: 180px; }
.wwz__panel { display: none; align-items: flex-start; gap: 28px; }
.wwz__panel.is-active { display: flex; animation: wwzPanelIn .5s var(--ease); }
.wwz__panel-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250,250,251,.10);
  border: 1px solid rgba(250,250,251,.18);
  border-radius: 30%;
}
.wwz__panel-icon svg { width: 28px; height: 28px; color: rgba(250,250,251,.9); stroke-width: 1.4; }
.wwz__panel-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); color: var(--paper); margin-bottom: 10px; }

.wwz .wwz__panel-text { font-size: 16px; color: var(--on-ink-soft); max-width: 520px; line-height: 1.6; margin: 0 0 18px; }
.wwz__panel-list { display: flex; flex-wrap: wrap; gap: 10px 28px; list-style: none; margin: 0; padding: 0; }
.wwz__panel-list li {
  position: relative; padding-left: 16px;
  font-size: 14px; color: rgba(250,250,251,.78); font-weight: 500;
}
.wwz__panel-list li::before { content: "—"; position: absolute; left: 0; color: rgba(250,250,251,.45); }
@keyframes wwzPanelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 760px) {
  .wwz__panel { flex-direction: column; gap: 16px; }
}

@media (max-width: 760px) {
  .wwz__rail { display: none; }
  .wwz__panels { min-height: 0; counter-reset: wwzstep; }
  .wwz__panel { display: flex; animation: none; counter-increment: wwzstep; }
  .wwz__panel + .wwz__panel {
    margin-top: 30px; padding-top: 30px;
    border-top: 1px solid rgba(250,250,251,.10);
  }
  .wwz__panel-title::before {
    content: counter(wwzstep, decimal-leading-zero);
    display: block;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    letter-spacing: .1em; color: rgba(250,250,251,.55);
    margin-bottom: 6px;
  }
}

.pricing { display: grid; grid-template-columns: 1fr .9fr; gap: 72px; align-items: center; }
.pricing__factors { display: flex; flex-direction: column; margin: 26px 0 34px; }
.pricing__factor {
  display: grid; grid-template-columns: 46px 1fr; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.pricing__factor:last-child { border-bottom: 1px solid var(--line); }
.pricing__factor-index {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;

  background: var(--chip);
  color: var(--ink);
  border-radius: 5px;
  font-size: 22px;
}
.pricing__factor-title { font-weight: 600; font-size: 15.5px; margin-bottom: 2px; }
.pricing__factor-text { font-size: 14px; color: var(--ink-faint); }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; gap: 32px; } }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%; text-align: left;
  padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--ink);
}
.faq-item__icon {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item__icon svg { width: 13px; height: 13px; }
.faq-item.is-open .faq-item__icon { transform: rotate(135deg); background: var(--ink); border-color: var(--ink); color: var(--paper); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item__a-inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 640px; }

.faq-item__h { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; }
.faq-toggle { display: block; margin: 32px auto 0; }

.thanks { text-align: center; max-width: 620px; margin: 0 auto; }
.thanks__icon {
  width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(250,250,251,.10); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.thanks__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.12;
  color: var(--white); margin: 0 0 16px;
}
.thanks__lead { font-size: 17px; line-height: 1.6; color: var(--on-ink); margin: 0 auto; max-width: 480px; }
.thanks__ref {
  margin-top: 18px; font-size: 13px; letter-spacing: .04em;
  color: var(--on-ink-faint);
}
.thanks__ref span { font-weight: 600; color: var(--on-ink-soft); }

.thanks__next {
  margin-top: 36px; padding: 26px 28px;
  background: rgba(250,250,251,.05);
  border: 1px solid rgba(250,250,251,.12);
  border-radius: var(--radius-lg);
  text-align: left;
}
.thanks__h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--white); margin: 0 0 14px;
}
.thanks__steps { counter-reset: t; list-style: none; margin: 0; padding: 0; }
.thanks__steps li {
  position: relative; padding-left: 34px; margin-bottom: 12px;
  font-size: 15px; line-height: 1.55; color: var(--on-ink-soft);
}
.thanks__steps li::before {
  counter-increment: t; content: counter(t);
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(250,250,251,.10); color: var(--white);
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.thanks__hours {
  margin: 18px 0 0; padding-top: 16px;
  border-top: 1px solid rgba(250,250,251,.10);
  font-size: 13px; line-height: 1.55; color: var(--on-ink-faint);
}

.thanks__contact { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.thanks__contact .btn--ghost { color: var(--white); border-color: rgba(250,250,251,.35); }
.thanks__contact .btn--ghost:hover { border-color: var(--white); }

@media (max-width: 560px) {
  .thanks__next { padding: 22px 20px; }
  .thanks__contact .btn { width: 100%; justify-content: center; }
}

.leadblock { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.leadblock::before {
  content: "";
  position: absolute; top: -30%; right: -10%; width: 60%; height: 160%;

  background: radial-gradient(ellipse at center, rgba(232,104,31,.18) 0%, transparent 70%);
  pointer-events: none;
}
.leadblock__head { text-align: center; max-width: 620px; margin: 0 auto 48px; position: relative; }
.leadblock__head h2 { font-size: clamp(30px, 4vw, 44px); color: var(--paper); margin-bottom: 14px; }
.leadblock__head p { color: rgba(250,247,242,.6); font-size: 17px; }
.leadblock__card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius-lg);
  padding: 44px; max-width: 660px; margin: 0 auto; box-shadow: var(--shadow-lg);
  position: relative;
}
.leadblock__contact { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; position: relative; }

.form-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.form-progress__step { flex: 1; height: 3px; border-radius: 999px; background: var(--line); }
.form-progress__step.is-active, .form-progress__step.is-done { background: var(--active); }
.form-step { display: none; }
.form-step.is-active { display: block; }
.form-step__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-step__grid--single { grid-template-columns: 1fr; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-tile {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 16px; cursor: pointer; font-size: 14.5px; font-weight: 500;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.checkbox-tile:has(input:checked) { border-color: var(--active); background: var(--rust-pale); }

.checkbox-tile input, .uform__field input, .uform__field select { accent-color: var(--active); }
.checkbox-tile input { width: 18px; height: 18px; flex-shrink: 0; }
.form-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 12px; }
.form-success { display: none; text-align: center; padding: 30px 0; }
.form-success.is-active { display: block; }
.form-stepcount { margin: 14px 0 22px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-optional { margin-bottom: 14px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form-optional span { font-weight: 400; color: var(--ink-faint); }
.field-error { margin-top: 6px; font-size: 12.5px; color: #B3261E; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-consent { margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); text-align: center; line-height: 1.5; }
.form-consent a { text-decoration: underline; }
.form-hours { margin-top: 8px; font-size: 12.5px; color: var(--ink-faint); text-align: center; line-height: 1.5; }
.form-success__hours { color: var(--ink-soft); font-size: 14px; margin-top: 10px; }

.form-success__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--chip); color: var(--ink);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 26px;
}
@media (max-width: 620px) {
  .leadblock__card { padding: 28px 22px; }
  .form-step__grid, .checkbox-grid { grid-template-columns: 1fr; }
}

.foot { background: var(--paper-deep); padding: 72px 0 32px; font-size: 14px; color: var(--ink-soft); border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot__logo { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 22px; margin-bottom: 12px; }
.foot h4 { font-family: var(--font-body); color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.foot li { margin-bottom: 10px; }
.foot a:hover { color: var(--action); }
.foot__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--ink-faint); }
.foot__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
@media (max-width: 760px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }

  .foot { padding-bottom: calc(32px + 88px + env(safe-area-inset-bottom)); }
}

.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(250,247,242,.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .sticky-cta .btn { flex: 1; }
}
.wa-float {
  position: fixed; right: 22px; bottom: 90px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: var(--white); border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }

.sticky-cta.is-hidden { transform: translateY(110%); pointer-events: none; }
.wa-float.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.sticky-cta { transition: transform .28s var(--ease); }
.wa-float { transition: transform .28s var(--ease), opacity .28s var(--ease); }
.wa-float svg { width: 24px; height: 24px; }
@media (min-width: 761px) { .wa-float { bottom: 32px; } }

.coverage__areas {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 26px;
}
.coverage__area {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: var(--ink-soft);
}
.coverage__area .hgi-stroke { font-size: 16px; color: var(--ink-soft); flex-shrink: 0; }
@media (max-width: 620px) { .coverage__areas { grid-template-columns: 1fr; } }

.topbar__logo-img {
  height: 46px; width: auto; display: block;

  filter: brightness(0) invert(1);
}
.foot__logo-img { height: 52px; width: auto; display: block; margin-bottom: 14px; }
@media (max-width: 680px) {
  .topbar__logo-img { height: 38px; }
}

@media (max-width: 560px) {

  .hero__inner { align-items: center; text-align: center; padding-left: 22px; padding-right: 22px; }
  .hero h1 { font-size: clamp(27px, 7.6vw, 38px); margin-left: auto; margin-right: auto; }
  .hero__sub { font-size: 15px; margin-left: auto; margin-right: auto; }
  .hero__kicker { margin-left: auto; margin-right: auto; }

  .hero__marks { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero__marks li { justify-content: center; }
  .hero__cta-col { align-items: center; }

  .hero__cta-row { justify-content: center; width: 100%; gap: 22px; }
  .hero__ctas { width: 100%; flex-direction: column; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .hero__stats { max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero__stats > div { text-align: center; }
  .hero__stats > div:not(:first-child) { padding-left: 0; }
  .hero__stat-num { font-size: 20px; }
  .hero__stat-label { font-size: 11.5px; }


  .section-head h2, .split h2, .pricing h2 { font-size: 25px !important; line-height: 1.2; }
  .eyebrow { font-size: 11px; }
}

@media (max-width: 760px) {

  .wwz__panel-list { flex-direction: column; gap: 9px; }
  .wwz__panel-title { font-size: 21px; }
  .wwz__panel-text { font-size: 15px; }
  .wwz__panel-icon { width: 48px; height: 48px; }
  .wwz__panel-icon svg { width: 22px; height: 22px; }


  .why-card { padding: 22px 20px; }
  .why-card__title { font-size: 17px; }
  .why-card__icon { width: 40px; height: 40px; line-height: 40px; font-size: 19px; margin-bottom: 14px; }
}

@media (max-width: 560px) {

  .form-nav > span:empty { display: none; }
  .form-nav { gap: 10px; }
  .form-nav .btn { flex: 1; justify-content: center; padding-left: 16px; padding-right: 16px; }

  .uform__field input, .uform__field select { font-size: 16px; }
  .leadblock__head h2 { font-size: 26px; }
  .leadblock__head p { font-size: 15px; }
  .leadblock__contact { flex-direction: column; }
  .leadblock__contact .btn { width: 100%; justify-content: center; }
}

@media (max-width: 900px) {

  .werkwijze__media::before, .services__media::before, .waarom__media::before,
  .pricing__media::before, .story__media::before, .coverage__media::before { display: none; }


  .wwz__panel { flex-direction: column; align-items: center; text-align: center; }
  .wwz__panel-body { width: 100%; }
  .wwz__panel-text { margin-left: auto; margin-right: auto; }
  .wwz__panel-list { width: max-content; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }
}

@media (max-width: 560px) {

  .split > div:not([class*="__media"]),
  .pricing > div:not([class*="__media"]) { text-align: center; }
  .split .eyebrow, .pricing .eyebrow { justify-content: center; }
  .split .stat-row { justify-content: center; }
  .pricing__factor, .coverage__area { text-align: left; }
  .coverage__areas { width: max-content; max-width: 100%; margin-left: auto; margin-right: auto; }
}

.card,
.why-card,
.offerte__card,
.leadblock__card,
.checkbox-tile,
.split__media,
.werkwijze__media::before,
.services__media::before,
.waarom__media::before,
.pricing__media::before,
.story__media::before,
.coverage__media::before {
  corner-shape: squircle;
}

.why-card__icon,
.pricing__factor-index,
.wwz__panel-icon {
  border-radius: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M100.00 50.00 L99.95 62.79 L99.79 68.06 L99.52 72.08 L99.14 75.44 L98.66 78.35 L98.06 80.93 L97.35 83.25 L96.53 85.36 L95.59 87.27 L94.54 89.01 L93.35 90.60 L92.04 92.04 L90.60 93.35 L89.01 94.54 L87.27 95.59 L85.36 96.53 L83.25 97.35 L80.93 98.06 L78.35 98.66 L75.44 99.14 L72.08 99.52 L68.06 99.79 L62.79 99.95 L50.00 100.00 L37.21 99.95 L31.94 99.79 L27.92 99.52 L24.56 99.14 L21.65 98.66 L19.07 98.06 L16.75 97.35 L14.64 96.53 L12.73 95.59 L10.99 94.54 L9.40 93.35 L7.96 92.04 L6.65 90.60 L5.46 89.01 L4.41 87.27 L3.47 85.36 L2.65 83.25 L1.94 80.93 L1.34 78.35 L0.86 75.44 L0.48 72.08 L0.21 68.06 L0.05 62.79 L0.00 50.00 L0.05 37.21 L0.21 31.94 L0.48 27.92 L0.86 24.56 L1.34 21.65 L1.94 19.07 L2.65 16.75 L3.47 14.64 L4.41 12.73 L5.46 10.99 L6.65 9.40 L7.96 7.96 L9.40 6.65 L10.99 5.46 L12.73 4.41 L14.64 3.47 L16.75 2.65 L19.07 1.94 L21.65 1.34 L24.56 0.86 L27.92 0.48 L31.94 0.21 L37.21 0.05 L50.00 0.00 L62.79 0.05 L68.06 0.21 L72.08 0.48 L75.44 0.86 L78.35 1.34 L80.93 1.94 L83.25 2.65 L85.36 3.47 L87.27 4.41 L89.01 5.46 L90.60 6.65 L92.04 7.96 L93.35 9.40 L94.54 10.99 L95.59 12.73 L96.53 14.64 L97.35 16.75 L98.06 19.07 L98.66 21.65 L99.14 24.56 L99.52 27.92 L99.79 31.94 L99.95 37.21 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M100.00 50.00 L99.95 62.79 L99.79 68.06 L99.52 72.08 L99.14 75.44 L98.66 78.35 L98.06 80.93 L97.35 83.25 L96.53 85.36 L95.59 87.27 L94.54 89.01 L93.35 90.60 L92.04 92.04 L90.60 93.35 L89.01 94.54 L87.27 95.59 L85.36 96.53 L83.25 97.35 L80.93 98.06 L78.35 98.66 L75.44 99.14 L72.08 99.52 L68.06 99.79 L62.79 99.95 L50.00 100.00 L37.21 99.95 L31.94 99.79 L27.92 99.52 L24.56 99.14 L21.65 98.66 L19.07 98.06 L16.75 97.35 L14.64 96.53 L12.73 95.59 L10.99 94.54 L9.40 93.35 L7.96 92.04 L6.65 90.60 L5.46 89.01 L4.41 87.27 L3.47 85.36 L2.65 83.25 L1.94 80.93 L1.34 78.35 L0.86 75.44 L0.48 72.08 L0.21 68.06 L0.05 62.79 L0.00 50.00 L0.05 37.21 L0.21 31.94 L0.48 27.92 L0.86 24.56 L1.34 21.65 L1.94 19.07 L2.65 16.75 L3.47 14.64 L4.41 12.73 L5.46 10.99 L6.65 9.40 L7.96 7.96 L9.40 6.65 L10.99 5.46 L12.73 4.41 L14.64 3.47 L16.75 2.65 L19.07 1.94 L21.65 1.34 L24.56 0.86 L27.92 0.48 L31.94 0.21 L37.21 0.05 L50.00 0.00 L62.79 0.05 L68.06 0.21 L72.08 0.48 L75.44 0.86 L78.35 1.34 L80.93 1.94 L83.25 2.65 L85.36 3.47 L87.27 4.41 L89.01 5.46 L90.60 6.65 L92.04 7.96 L93.35 9.40 L94.54 10.99 L95.59 12.73 L96.53 14.64 L97.35 16.75 L98.06 19.07 L98.66 21.65 L99.14 24.56 L99.52 27.92 L99.79 31.94 L99.95 37.21 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.wwz__panel-icon { border: 0; background: rgba(250,250,251,.14); }

.wa-float .hgi-stroke { font-size: 24px; }
.why-certs__item .hgi-stroke { font-size: 16px; color: var(--ink-soft); flex-shrink: 0; margin-top: 1px; }
