/* ===================================================================
   Synctelligent — secties
   Volgt de opbouw van de Framer-homepage, sectie voor sectie.
   =================================================================== */

/* ===================================================================
   Aankondigingsbalk
   =================================================================== */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--dark);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 457.33px;
  padding: 10px 0;
}

.topbar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: pre;
}

.topbar__text span { color: var(--off-white); }
.topbar__text .is-lime { color: var(--lime); }

/* Pijl van 2px-blokjes, links en rechts van de tekst */
.pixarrow {
  display: flex;
  align-items: center;
  gap: 1px;
}

.pixarrow--flip { transform: scaleX(-1); }

.pixarrow__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.pixarrow__col--tall {
  height: 16px;
  gap: 0;
  justify-content: space-between;
}

.pixarrow__dot {
  flex: none;
  width: 2px;
  height: 2px;
  background: var(--lime);
}

@media (max-width: 809.98px) {
  .topbar__inner { gap: 12px; }
}

/* Ruimte tussen aankondigingsbalk en navigatie */
.navbar-spacer { width: 100%; height: 16px; background: var(--bg); }

@media (max-width: 1439.98px) { .navbar-spacer { height: 14px; } }
@media (max-width: 809.98px)  { .navbar-spacer { height: 12px; } }

/* ===================================================================
   Navigatiebalk
   =================================================================== */
.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--white);
}

/* Blok met de vier hoekpunten — logo en CTA delen dit patroon */
.corner-block { position: relative; }

.corner-block__dot {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  background: var(--dark);
}

.corner-block__dot:nth-child(1) { top: -3px; left: -2px; }
.corner-block__dot:nth-child(2) { top: -3px; right: -2px; }
.corner-block__dot:nth-child(3) { bottom: -3px; right: -2px; }
.corner-block__dot:nth-child(4) { bottom: -3px; left: -2px; }

.navbar__logo-block {
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 21px 67px 20px;
}

.navbar__cta-block {
  display: flex;
  align-items: center;
  padding: 12px 50.5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo__icon { flex: none; width: 26px; height: 26px; }

.logo__word {
  white-space: pre;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background-image: linear-gradient(90deg, var(--dark-600) 0%, #000 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.navmenu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Nav-link met streepje dat uitschuift bij hover */
.navlink {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  text-decoration: none;
  white-space: pre;
}

.navlink__bar {
  position: absolute;
  z-index: 1;
  bottom: 2px;
  left: -2px;
  width: 2%;
  height: 1px;
  background: var(--dark);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navlink:hover .navlink__bar,
.navlink:focus-visible .navlink__bar { width: 100%; }

/* Donkere CTA-knop in de balk */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18.5px 24px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(64, 69, 74, 0.8) 0%, rgb(38, 39, 41) 100%);
  box-shadow:
    0 2.77px 2.21px 0 rgba(0, 0, 0, 0.12),
    0 5.65px 5.32px 0 rgba(0, 0, 0, 0.13),
    4px 12.52px 10.02px 0 rgba(0, 0, 0, 0.13),
    10px 22.34px 17.87px 0 rgba(0, 0, 0, 0.14),
    20px 41.78px 33.42px 0 rgba(0, 0, 0, 0.15),
    60px 50px 80px 0 rgba(0, 0, 0, 0.15),
    3px 3px 10px 0 var(--line),
    inset 0 -4px 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 0 var(--dark-1a),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.btn-dark__label { height: 11px; white-space: pre; color: var(--white); }

/* Hamburger — alleen op telefoon zichtbaar */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: var(--dark);
}

.burger__bar {
  flex: none;
  width: 16px;
  height: 1px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.navbar.is-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.is-open .burger__bar:nth-child(2) { opacity: 0; }
.navbar.is-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1439.98px) {
  .navbar__logo-block { padding: 19px 20px 18px; }
  .navbar__cta-block  { padding: 10px 20px; }
  .navmenu { gap: 24px; }
  .logo__word { font-size: 22px; }
}

@media (max-width: 809.98px) {
  .navbar__inner { flex-direction: column; }

  .navbar__logo-block {
    z-index: 2;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    padding: 5px 12px;
  }

  .burger { display: flex; }

  .navbar__cta-block { display: none; }

  /* Het dichtgeklapte menu hangt onder de balk. Het is onzichtbaar én
     niet klikbaar — anders vangt het de taps van de hero eronder op. */
  .navmenu-wrap {
    position: absolute;
    z-index: 1;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    align-items: flex-start;
  }

  .navmenu {
    pointer-events: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 366px;
    margin: 0 auto;
    padding: 36px;
    overflow: hidden;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .navbar.is-open .navmenu {
    pointer-events: auto;
    opacity: 1;
    box-shadow: 0 12px 24px rgba(3, 7, 18, 0.08);
  }
}

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero__main {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero__heading { width: 100%; max-width: 920px; text-align: center; }
.hero__heading em { font-style: normal; color: var(--lime); }
.hero__sub { width: 100%; max-width: 620px; text-align: center; }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Decoratielaag: kaderlijnen, textuur en de lime blokken */
.hero__decor {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: calc(50% - 704px);
  width: var(--shell);
  overflow: clip;
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pixels, .pixels-bottom {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.pixels        { top: 1px; left: 0; width: 260px; height: 223px; }
.pixels-bottom { right: 0; bottom: 0; width: 377px; height: 321px; }

.pixels__row {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: clip;
}

.pixels__row--split  { justify-content: space-between; }
.pixels__row--center { justify-content: center; gap: 10px; padding-right: 40px; }
.pixels__row--hug    { justify-content: center; width: min-content; }
.pixels__row--end    { justify-content: flex-end; }

.pixels-bottom .pixels__row--center { justify-content: center; gap: 10px; padding-left: 56px; padding-right: 0; }

.blk { flex: none; background: var(--lime); overflow: clip; }

.blk--74     { width: 74px;  aspect-ratio: 1; }
.blk--74wide { width: 74px;  aspect-ratio: 1.0137; }
.blk--148    { width: 148px; height: 74px; }
.blk--107    { width: 107px; aspect-ratio: 1; }
.blk--215    { width: 215px; height: 107px; }

/* Social proof + logo-ticker */
.proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.proof__label { width: 100%; text-align: center; }

.ticker {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.ticker__track { display: flex; align-items: center; animation: ticker-scroll 18s linear infinite; }
.ticker__group { display: flex; align-items: center; flex: none; }

/* De marge staat op het item, niet als gap op de track: alleen dan sluit
   de tweede groep naadloos aan bij translateX(-50%). */
.ticker__item { flex: none; margin-right: 64px; filter: grayscale(1); }

.ticker__item--schippers img { height: 34px; width: auto; }
.ticker__item--wdw       img { height: 24px; width: auto; }
.ticker__item--ironway   img { height: 30px; width: auto; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1439.98px) {
  .hero { padding: 150px 0 80px; }
  .hero__decor { width: auto; left: 16px; right: 16px; }
  .pixels { top: 0; }
  .pixels-bottom { width: 278px; height: 225px; bottom: -2px; }
  .pixels-bottom .pixels__row--center { padding-left: 55px; }
  .blk--107 { width: 74px; }
  .blk--215 { width: 180px; height: 74px; }
  .ticker { max-width: 480px; }
  .ticker__item { margin-right: 40px; }
  .ticker__item--schippers img { height: 30px; }
  .ticker__item--wdw       img { height: 20px; }
  .ticker__item--ironway   img { height: 26px; }
}

@media (max-width: 809.98px) {
  .hero { flex-direction: column; padding: 72px 0 64px; }
  .hero__main { gap: 16px; }
  .hero__decor { left: 12px; right: 12px; }
  .pixels { top: -110px; }
  .pixels-bottom { display: none; }
  .hero__actions { flex-direction: column; }
  .ticker { max-width: 330px; }
  .ticker__item { margin-right: 24px; }
  .ticker__item--schippers img { height: 22px; }
  .ticker__item--wdw       img { height: 16px; }
  .ticker__item--ironway   img { height: 20px; }
}

/* ===================================================================
   Over ons
   =================================================================== */
.about {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
}

.about__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 81px;
  width: 100%;
  padding: 100px 0 0;
  background: var(--white);
}

.about__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 797px;
  padding-left: 56px;
}

.about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about__grid {
  display: flex;
  align-items: center;
  width: 100%;
  height: 503px;
}

.about__left {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  width: 1px;
  max-width: 606px;
  gap: 28px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--grey-200);
}

/* Gearceerde band: in Framer honderden gedraaide lijntjes van 1px,
   hier hetzelfde beeld met één gradient. */
.pattern {
  width: 100%;
  height: 64px;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, var(--grey-200) 0 1px, transparent 1px 6.364px);
}

.about__claim { padding-left: 56px; }

.proofpoint {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding-left: 56px;
}

.proofpoint__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-800) 100%);
}

.proofpoint__icon img { width: 28px; height: 28px; object-fit: contain; }

.proofpoint__text {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  width: 1px;
  gap: 2px;
}

.about__image {
  position: relative;
  flex: 1 0 0;
  width: 1px;
  height: 505px;
  overflow: hidden;
  text-decoration: none;
}

.about__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Witte blokken die over de foto vallen */
.about__pixel {
  position: absolute;
  z-index: 0;
  bottom: -1px;
  left: 615px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min-content;
}

.about__pixel-row {
  display: flex;
  align-items: center;
  gap: 37px;
}

.about__pixel-row--center { gap: 0; padding-right: 40px; justify-content: center; }

.about__pixel span { flex: none; display: block; background: var(--white); }
.about__pixel .px-50  { width: 50px;  height: 50px; }
.about__pixel .px-100 { width: 100px; height: 50px; }

@media (max-width: 1439.98px) {
  .about__panel  { gap: 60px; }
  .about__intro  { max-width: 700px; padding-left: 11px; }
  .about__grid   { height: auto; }
  .about__left   { gap: 20px; }
  .about__claim  { padding-left: 11px; }
  .proofpoint    { padding: 0 12px; }
  .proofpoint__text { gap: 0; }
  .about__image  { align-self: stretch; height: auto; }
  .about__pixel  { left: auto; right: 0; }
}

@media (max-width: 809.98px) {
  .about__panel { gap: 60px; padding: 60px 0 0; }
  .about__intro { padding: 0 12px; }
  .about__grid  { flex-direction: column; height: auto; }
  .about__left  { flex: none; width: 100%; gap: 24px; }
  .about__claim { padding-left: 12px; }
  .proofpoint   { padding: 0 12px; }
  .about__image { flex: none; width: 100%; height: 390px; }
  .about__pixel { left: auto; right: 0; }
}

/* ===================================================================
   Diensten
   =================================================================== */
.services {
  display: flex;
  justify-content: center;
  width: 100%;
}

.services__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 100px 0 0;
  background: var(--white);
}

.services__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 855px;
  text-align: center;
}

.services__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 144px;
  width: 100%;
  padding: 32px 32px 40px;
  overflow: hidden;
  text-decoration: none;
}

/* Rand als overlay — een echte border zou de kaart 2px hoger maken. */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border: 1px solid var(--grey-200);
}

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Donker chipje met lime blokje */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  overflow: hidden;
  background: var(--dark);
}

.chip__dot { flex: none; width: 12px; height: 12px; background: var(--lime); }
.chip__label { white-space: pre; color: var(--off-white); }

.service-card__desc { width: 100%; }

.service-card__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 118px;
  width: 100%;
}

.service-card__number {
  width: 100%;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 200px;
  font-weight: 500;
  line-height: 160px;
  letter-spacing: -0.06em;
  text-align: center;
  color: var(--grey-200);
}

.service-card__list-wrap {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
}

.service-card__list {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  gap: 16px;
  width: 1px;
}

.service-card__rule {
  flex: none;
  align-self: stretch;
  width: 2px;
  background: var(--lime);
}

.service-card__items {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  gap: 2px;
  width: 1px;
}

.service-card__items li { white-space: pre; }

@media (max-width: 1439.98px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 809.98px) {
  .services__panel { padding: 60px 0 0; }
  .card-grid { grid-template-columns: repeat(1, 1fr); }
}

/* ===================================================================
   Onze visie
   =================================================================== */
.vision {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 778px;
  background: var(--bg);
}

.vision__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 855px;
}

.vision__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.eyebrow--white { background: var(--white); }

.vision__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
}

.vision__heading > h2 { width: 100%; text-align: center; }
.vision__heading-row h2 { width: auto; white-space: pre; }

.vision__heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.vision__body { width: 100%; max-width: 460px; }

@media (max-width: 809.98px) { .vision { min-height: 720px; } }

/* ===================================================================
   Cases — beeldcarousel met glazen paneel
   Framer: alleen de foto wisselt; het paneel met titel/tekst/cijfers
   staat vast naast de carousel.
   =================================================================== */
.cases {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
}

.cases__stage {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}

/* Beeldlaag — foto is hoger dan het podium en wordt afgesneden */
.cases__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cases__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.cases__frame.is-active { opacity: 1; }

.cases__frame img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
}

/* Blokjes in de achtergrondkleur, over de foto heen */
.cases__pixel {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.cases__pixel--tl { top: 0; left: 0; width: 157px; height: 120px; }
.cases__pixel--tr { top: 0; right: 0; width: 120px; height: 157px; }

.cases__pixel-row { display: flex; align-items: center; gap: 37px; overflow: clip; }
.cases__pixel-row--center { gap: 0; padding-right: 40px; }
.cases__pixel span { flex: none; display: block; background: var(--bg); }
.cases__pixel .p40 { width: 40px; height: 40px; }
.cases__pixel .p80 { width: 80px; height: 40px; }

/* Glazen paneel linksonder */
.cases__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: none;
  flex-direction: column;
  width: 595px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(92px);
          backdrop-filter: blur(92px);
}

.cases__panel-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 40px 32px;
}

.cases__panel.is-active { display: flex; }

.cases__title { color: var(--bg); }
.cases__desc { color: var(--white); font-size: 16px; font-weight: 500; line-height: 24px; }

.cases__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 0;
}

.cases__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 24px 32px;
}

.cases__stat-label { color: var(--white); font-size: 14px; font-weight: 500; line-height: 20px; }

/* Pijlbalk rechtsonder */
.cases__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: 232px;
  height: 110px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(92px);
          backdrop-filter: blur(92px);
}

.cases__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 0;
  padding: 35px 0;
  color: var(--white);
  transition: background 0.25s ease;
}

.cases__arrow:hover { background: rgba(255, 255, 255, 0.08); }
.cases__arrow svg { width: 40px; height: 40px; }

@media (max-width: 1439.98px) {
  .cases__stage { height: 550px; }
  .cases__panel-top { padding: 32px; gap: 4px; }
}

/* Telefoon: het podium wordt een kolom — foto bovenaan op ratio 1.76,
   daaronder de pijlbalk en het paneel (zoals de Framer-variant). */
@media (max-width: 809.98px) {
  .cases__stage {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    height: auto;
    padding-top: 145px;
  }

  .cases__media {
    bottom: auto;
    height: auto;
    aspect-ratio: 1.76;
  }

  .cases__frame img { height: 100%; }

  .cases__nav {
    position: relative;
    right: auto;
    bottom: auto;
    flex: none;
    width: 160px;
    height: 70px;
  }

  .cases__arrow { padding: 20px 0; }
  .cases__arrow svg { width: 30px; height: 30px; }

  .cases__panel {
    position: relative;
    left: auto;
    bottom: auto;
    flex: none;
    width: 100%;
  }

  .cases__panel-top { padding: 12px 14px; }
  .cases__desc { font-size: 14px; }
  .cases__stat { padding: 10px; }

  .cases__pixel--tr { display: none; }
}

/* ===================================================================
   Aanpak — meelopende linkerkolom, vier kaarten die op elkaar stapelen.
   1-op-1 overgenomen uit Framer (sectie "Process").
   =================================================================== */
.process {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
}

.process__panel {
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 100%;
  padding: 100px 0 0;
  background: var(--white);
}

.process__cols {
  display: flex;
  align-items: flex-start;
  gap: 124px;
  padding: 0 56px;
}

.process__intro {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 188px;
  width: 100%;
  max-width: 536px;
}

.process__heading { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; width: 100%; }
.process__cta     { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; width: 100%; }

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 636px;
}

/* De kaart zelf. Elke volgende kaart plakt 20px lager, zodat ze bij het
   scrollen zichtbaar op elkaar stapelen. */
.step {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  padding: 16px 16px 32px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f5f5 0%, #f2f2f2 100%);
  box-shadow:
    inset 0 -6px 0 1px rgba(250, 250, 250, 0.25),
    inset 0 -5px 0 0 rgba(0, 0, 0, 0.25),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.step:nth-child(2) { top: 140px; }
.step:nth-child(3) { top: 160px; }
.step:nth-child(4) { top: 180px; }

.step__visual {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.step__white {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.step__text {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  padding: 0 20px;
}

.step__no    { flex: none; white-space: pre; font-size: 18px; font-weight: 500; line-height: 28px; color: var(--muted); }
.step__body  { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.step__title { font-size: 24px; font-weight: 600; line-height: 32px; color: var(--ink); }
.step__desc  { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--muted); }

/* --- //01 Kennismaking: chips + vergrootglas ----------------------- */
.step--intake .step__white { height: 322px; padding: 54px 49px 63px; }

.step__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.step__row--end { justify-content: flex-end; padding-right: 30px; }

/* Lege chip: vaste minimummaat, precies zoals in Framer */
.pill {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 61px;
  padding: 16px 58px;
  border-radius: 4px;
  background: var(--bg);
  white-space: pre;
}

.pill--dark   { min-width: 0; min-height: 0; padding: 17px 58px 17px 59px; background: var(--dark); color: var(--off-white); }
.pill--accent { min-width: 0; min-height: 0; padding: 17px 36px; background: var(--dark); color: var(--lime); }
.pill--grey   { min-width: 0; min-height: 0; padding: 20px 58px 21px 59px; background: var(--grey-300); color: var(--ink); }
.pill--sys    { min-width: 0; min-height: 0; padding: 16px 20px; background: var(--dark); color: var(--lime); z-index: 2; }

.pill__label       { font-size: 18px; font-weight: 600; line-height: 28px; }
.pill__label--mono { font-family: var(--font-mono); font-size: 14px; font-weight: 400; line-height: 20px; text-transform: uppercase; }

.step__cursor { position: absolute; right: 0; bottom: 0; z-index: 1; width: 149px; height: 149px; object-fit: contain; }

/* --- //02 Scoping & advies: schema met verbindingslijnen ----------- */
.step--scope .step__white {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  height: 320px;
  padding: 38px 33px;
}

.flow__col {
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  height: 100%;
}

.flow__col--top { justify-content: flex-start; gap: 10px; }

.flow__box { width: 100%; height: 52px; border-radius: 4px; background: var(--bg); }

.flow__line { position: absolute; z-index: 1; object-fit: contain; }
.flow__line--a { width: 50px;  height: 80px;  top: 156px; right: 333px; }
.flow__line--b { width: 52px;  height: 53px;  top: calc(40.625% - 26.5px); left: 220px; }
.flow__line--c { width: 35px;  height: 171px; top: calc(44.375% - 85.5px); left: 403px; }
.flow__line--d { width: 40px;  height: 53px;  top: 56px;  left: 401px; }

/* --- //03 Bouw: schermpje tussen twee blokken ---------------------- */
.step--build .step__white { justify-content: flex-end; padding: 46px 36px; }

.build { display: flex; align-items: flex-start; justify-content: center; gap: 10px; width: 100%; }

.build__block { flex: none; width: 104px; height: 91px; border-radius: 4px; background: var(--bg); }

.build__screen {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  padding: 24px 24px 0;
  border-radius: 4px;
  background: var(--dark);
}

.build__lines     { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; max-width: 120px; }
.build__lines-top { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }

.build__line        { height: 8px; border-radius: 2px; background: var(--white-10); }
.build__line--short { width: 92px; }
.build__line--full  { width: 100%; }
.build__line--lime  { width: 26px; background: var(--lime); }

.build__panel { width: 100%; height: 96px; border-radius: 2px; background: var(--white-10); }
.build__side  { flex: none; display: flex; align-items: flex-end; align-self: stretch; }

/* --- //04 Oplevering & beheer: staafdiagram met pijl --------------- */
.step--deliver .step__white { padding: 66px 36px; }

.chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}

.chart__bar { flex: 1 1 0; border-radius: 4px; background: var(--bg); }
.chart__bar--1 { height: 75px; }
.chart__bar--2 { height: 146px; }
.chart__bar--3 {
  z-index: 1;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px 0;
  background: var(--dark);
}
.chart__bar--4 { height: 217px; }
.chart__bar--5 { height: 248px; }

.chart__cap   { width: 100%; height: 8px; border-radius: 2px; background: var(--lime); }
.chart__arrow { position: absolute; z-index: 0; top: -14px; left: 106px; width: 100px; height: 114px; object-fit: contain; }

/* --- Tablet ------------------------------------------------------- */
@media (max-width: 1439.98px) {
  .process__cols  { flex-direction: column; gap: 40px; padding: 0 46px; }
  .process__intro { position: static; max-width: none; }
  .process__heading { gap: 20px; }
  .process__cta     { gap: 12px; }
  .process__steps { max-width: none; }

  .step { position: relative; top: auto; }
  .step:nth-child(n) { top: auto; }

  .step--scope .step__white   { gap: 23px; padding: 44px 29px; }
  .step--build .step__white   { padding: 44px 29px; }
  .build__block { flex: 1 1 0; width: auto; height: 80px; }
  .build__side  { flex: 1 1 0; }
  .build__screen { padding: 24px 12px 0; }

  .chart { max-width: none; }
  .chart__arrow { top: -25px; left: 266px; }

  .step__cursor { width: 100px; height: 100px; }
  .flow__line--a { top: 155px; right: 344px; }
  .flow__line--c { left: auto; top: 60px; right: 180px; }
  .flow__line--d { width: 36px; height: 56px; top: 60px; left: 389px; }
}

/* --- Telefoon ----------------------------------------------------- */
@media (max-width: 809.98px) {
  .process__panel { padding: 60px 0 0; }
  .process__cols  { gap: 100px; padding: 0; }
  .process__intro { gap: 100px; padding: 0 12px; }
  .process__steps { padding: 0 12px; }

  .step { gap: 16px; }

  .step--intake .step__white { padding: 54px 12px 63px; }
  .step__row--end { justify-content: center; padding-right: 0; }
  .pill--dark { padding: 17px 48px; }
  .pill--grey { padding: 16px 38px; }
  .pill--sys  { padding: 16px 10px; }
  .step__cursor { width: 96px; height: 96px; }

  .step--scope .step__white { gap: 12px; padding: 38px 12px; }
  .flow__line--a { width: 20px; height: 50px; top: 160px; right: 130px; }
  .flow__line--b { top: calc(25% - 26.5px); left: 226px; }
  .flow__line--c { width: 15px; height: 75px; top: 86px; left: 179px; right: auto; }
  .flow__line--d { display: none; }

  .step--build .step__white, .step--deliver .step__white { padding: 46px 12px; }
  .build__panel { height: 67px; }

  .chart__bar--1 { height: 55px; }
  .chart__bar--2 { height: 126px; }
  .chart__bar--3 { height: 170px; }
  .chart__bar--4 { height: 197px; }
  .chart__bar--5 { height: 228px; }
  .chart__arrow  { top: -24px; left: 83px; }
}

/* ===================================================================
   Woord-marquee: twee rijen die tegen elkaar in lopen
   =================================================================== */
.marquee {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.marquee__rows { display: flex; flex-direction: column; width: 100%; overflow: hidden; }

.marquee__row {
  display: flex;
  align-items: center;
  padding: 32px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  flex: none;
  animation: marquee-left 24s linear infinite;
}

.marquee__row--reverse .marquee__track { animation-name: marquee-right; }

.marquee__group { display: flex; align-items: center; flex: none; }

.marquee__item {
  display: flex;
  align-items: center;
  flex: none;
  gap: 50px;
  margin-right: 50px;
}

.marquee__item img { width: 38px; height: 48px; }

@keyframes marquee-left  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); }  to { transform: translateX(0); } }

/* ===================================================================
   Het verschil
   =================================================================== */
.diff {
  display: flex;
  justify-content: center;
  width: 100%;
}

.diff__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
}

.diff__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
}

.diff__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 855px;
  text-align: center;
}

.diff__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
  width: 100%;
  max-width: 860px;
}

.diff-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 16px 16px 40px;
  border-radius: 12px;
}

.diff-card__top {
  position: relative;
  display: flex;
  align-items: center;
  padding: 32px 0 32px 24px;
  border-radius: 8px;
  overflow: hidden;
}

.diff-card__top img.diff-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diff-card__title { position: relative; z-index: 1; }

.diff-card__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diff-card__brand img { width: 32px; height: 32px; }
.diff-card__brand span { font-size: 32px; font-weight: 600; line-height: 40px; color: var(--ink); }

.diff-card__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 24px;
}

.diff-card__points li { padding-left: 30px; font-size: 16px; font-weight: 500; line-height: 24px; color: var(--muted); }

.diff .btn-dark { padding: 18.5px 83px; }

@media (max-width: 809.98px) {
  .diff__content { gap: 40px; padding: 60px 0; }
  .diff__cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ===================================================================
   Over Stan
   =================================================================== */
.team {
  display: flex;
  justify-content: center;
  width: 100%;
}

.team__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
}

.team__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
  overflow: hidden;
}

.team__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 470px;
  text-align: center;
}

.team__cards {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 920px;
}

/* Kaart met foto en naamblok */
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  height: 381px;
  padding: 0 16px 16px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.team-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.team-card__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-radius: 12px;
  background: var(--white);
}

.team-card__name { font-size: 24px; font-weight: 600; line-height: 32px; color: var(--ink); }
.team-card__role { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--muted); }

/* Blokjes linksboven op de foto */
.team-card__pixel {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}

.team-card__pixel div { display: flex; align-items: center; gap: 16px; }
.team-card__pixel span { display: block; height: 32px; background: var(--white); }

/* Donkere banner met de bio */
.team-banner {
  position: relative;
  background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-800) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  gap: 82px;
  height: 397px;
  padding: 48px 22px 40px;
  border-radius: 12px;
  overflow: hidden;
}

.team-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-banner__text { display: flex; flex-direction: column; gap: 10px; }
.team-banner__dot  { width: 12px; height: 12px; background: var(--lime); }
.team-banner__title { font-size: 24px; font-weight: 600; line-height: 32px; color: var(--bg); }
.team-banner__body  { font-size: 14px; font-weight: 500; line-height: 20px; color: var(--grey-e4); }
.team-banner .btn { position: relative; z-index: 1; align-self: flex-start; }

@media (max-width: 809.98px) {
  .team__content { gap: 40px; padding: 60px 0; }
  .team__cards { flex-direction: column; }
  .team-card, .team-banner { flex: none; width: 100%; }
  .team-banner { height: auto; gap: 40px; }
}

/* ===================================================================
   Onze belofte
   =================================================================== */
.promise {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
}

.promise__panel {
  display: flex;
  flex-direction: column;
  gap: 200px;
  width: 100%;
  padding: 100px 0 0;
}

.promise__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 480px;
  margin-left: 56px;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
  row-gap: 44px;
  width: 100%;
}

.promise-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 56px;
}

/* Elke kaart heeft in Framer een eigen 1px kader; naast elkaar vormen ze
   de scheidingslijnen tussen de kolommen. */
.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid var(--line);
}

/* De twee donkere blokjes op de bovenhoeken (6x6, half over de rand) */
.promise-card::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  right: -2px;
  height: 6px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--dark), var(--dark)) left  top / 6px 6px no-repeat,
    linear-gradient(var(--dark), var(--dark)) right top / 6px 6px no-repeat;
}

.promise-card__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 45px; }

.promise-card__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-800) 100%);
}

.promise-card__icon img { width: 32px; height: 32px; }

.promise-card__text  { display: flex; flex-direction: column; gap: 12px; }
.promise-card__title { white-space: pre; font-size: 24px; font-weight: 600; line-height: 32px; color: var(--ink); }
.promise-card__body  { font-size: 16px; font-weight: 500; line-height: 24px; color: var(--muted); }

/* Witte blokken rechtsboven */
.promise__blocks {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.promise__blocks div { display: flex; align-items: center; gap: 37px; }
.promise__blocks div.is-center { gap: 0; padding-right: 40px; }
.promise__blocks span { display: block; height: 103px; background: var(--white); }

@media (max-width: 1439.98px) {
  .promise__panel { gap: 100px; }
  .promise__heading { margin-left: 24px; }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .promise-card { padding: 40px; }
}

@media (max-width: 809.98px) {
  .promise__panel { gap: 60px; padding: 60px 0 0; }
  .promise__heading { margin-left: 12px; }
  .promise__grid { grid-template-columns: 1fr; row-gap: 24px; }
  .promise-card { padding: 24px 12px; }
  .promise__blocks { display: none; }
}

/* ===================================================================
   Veelgestelde vragen
   =================================================================== */
.faq {
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 850px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--bg);
}

.faq-item__q {
  display: flex;
  align-items: center;
  min-height: 32px;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--ink);
}

.faq-item__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-800) 100%);
  color: var(--lime);
}

.faq-item__icon svg { width: 16px; height: 16px; }

/* Open: het plusje wordt een streepje, net als in Framer */
.faq-item[open] .faq-item__icon { color: var(--grey-300); }
.faq-item[open] .faq-item__icon .faq-item__bar { opacity: 0; }

.faq-item__a {
  margin-top: 16px;
  max-width: 707px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--ink);
}

.faq-item__a[hidden] { display: none; }

@media (max-width: 809.98px) {
  .faq__panel { gap: 40px; padding: 60px 0; }
  .faq-item { padding: 20px; }
  .faq-item__q { font-size: 16px; line-height: 24px; }
}

/* ===================================================================
   Slot-CTA
   =================================================================== */
.cta {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 93px 0 0;
  min-height: 616px;
}

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 850px;
}

.cta__title { text-align: center; }

.cta__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  padding: 29px;
  background: var(--white);
}

.cta__mark img { width: 48px; height: 48px; }

@media (max-width: 809.98px) {
  .cta__content { min-height: 418px; padding: 60px 0 0; }
}

/* ===================================================================
   Contact
   =================================================================== */
.contact {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
}

.contact__panel {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 60px 56px;
  background: var(--dark);
}

.contact__cols {
  display: flex;
  gap: 120px;
  width: 100%;
}

.contact__col { display: flex; flex: 1 1 0; gap: 46px; }
.contact__col .contact__label { flex: none; }
.contact__stack { display: flex; flex-direction: column; gap: 8px; }

.contact__label { font-family: var(--font-mono); font-size: 14px; font-weight: 400; line-height: 20px; text-transform: uppercase; color: var(--off-white); }
.contact__big   { font-size: 40px; font-weight: 600; line-height: 52px; color: var(--off-white); text-decoration: none; }
.contact__small { font-size: 14px; font-weight: 500; line-height: 20px; color: var(--white-60); }
.contact__sub   { font-size: 16px; font-weight: 400; line-height: 19.2px; color: var(--off-white); }

@media (max-width: 1439.98px) {
  .contact__panel { padding: 40px 24px; }
  .contact__cols { gap: 48px; }
  .contact__big { font-size: 28px; line-height: 36px; }
}

@media (max-width: 809.98px) {
  .contact__panel { padding: 32px 20px; }
  .contact__cols { flex-direction: column; gap: 32px; }
  .contact__col { flex-direction: column; gap: 12px; }
  .contact__big { font-size: 22px; line-height: 30px; }
}

/* ===================================================================
   Footer
   =================================================================== */
.footer {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg);
}

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

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 64px 56px;
}

.footer__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 32px;
  text-decoration: none;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dark);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__link:hover::after { width: 100%; }

.footer__sep { flex: none; width: 12px; height: 12px; background: var(--line); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 56px;
}

.footer__meta  { font-size: 14px; font-weight: 500; line-height: 20px; color: var(--muted); }
.footer__small { font-size: 14px; font-weight: 500; line-height: 20px; color: var(--ink); text-decoration: none; }
.footer__small:hover { text-decoration: underline; }

@media (max-width: 1439.98px) {
  .footer__links  { padding: 40px 24px; }
  .footer__bottom { padding: 24px; }
}

@media (max-width: 809.98px) {
  .footer__links  { flex-wrap: wrap; gap: 16px; padding: 32px 12px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px 12px; }
}
