/* ── Werkwijze Header ── */
.wk-header {
  padding: 4rem 0 2rem;
}


.wk-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.wk-header__subtitle {
  color: var(--text-color);
  opacity: 0.7;
  max-width: 36em;
  margin: 0;
  line-height: 1.7;
}

/* ── CTA ── */
.wk-cta {
  padding: 2rem 0 4rem;
}

.wk-cta__card {
  background: var(--secondary-color);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.wk-cta__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.wk-cta__desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 32em;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.wk-cta .btn-bounce-bg {
  background-color: var(--primary-color);
}

.wk-cta .btn-bounce-text {
  color: var(--text-color);
}

@media screen and (max-width: 767px) {
  .wk-header {
    padding: 2.5rem 0 1.5rem;
  }

  .wk-cta__card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  .wk-cta {
    padding: 1.5rem 0 3rem;
  }
}

/* ── Sticky Steps Werkwijze ── */

.sticky-steps {
  min-height: 100dvh;
  position: relative;
  overflow: clip;
}

.sticky-steps__container {
  max-width: 74em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.sticky-steps__collection {
  min-height: 100dvh;
  display: flex;
  position: relative;
}

.sticky-steps__list {
  gap: 30dvh;
  flex-flow: column;
  flex: 1;
  padding-top: calc(50dvh - 12em);
  padding-bottom: calc(50dvh - 7.5em);
  display: flex;
}

.sticky-steps__text {
  gap: 1.5em;
  flex-flow: column;
  width: 50%;
  padding-right: 6em;
  display: flex;
}


.sticky-steps__h2 {
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: min(3.5em, 12vw);
  font-weight: 500;
  line-height: 0.9;
  color: var(--secondary-color);
}

.sticky-steps__p {
  opacity: 0.6;
  margin-bottom: 0;
  font-size: min(1.2em, 4.5vw);
  line-height: 1.5;
  color: var(--text-color);
}

.sticky-steps__list-items {
  opacity: 0.6;
  margin: 0;
  padding-left: 1.25em;
  font-size: min(1.2em, 4.5vw);
  line-height: 1.8;
  color: var(--text-color);
}

.sticky-steps__media {
  width: 50%;
  height: 100%;
  padding-left: 3em;
  position: absolute;
  top: 0;
  right: 0;
}

.sticky-steps__sticky {
  align-items: center;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  position: sticky;
  top: 0;
}

.sticky-steps__visual {
  aspect-ratio: 3 / 4;
  border-radius: 500em;
  width: 100%;
  position: relative;
  padding: 15%;
  box-sizing: border-box;
}

.sticky-steps__cover-image {
  object-fit: contain;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

/* ── Status-based animations (desktop only) ── */
@media screen and (min-width: 992px) {
  [data-sticky-steps-item-status] .sticky-steps__visual {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  [data-sticky-steps-item-status="before"] .sticky-steps__visual,
  [data-sticky-steps-item-status="active"] .sticky-steps__visual {
    opacity: 1;
    visibility: visible;
  }

  [data-sticky-steps-item-status] .sticky-steps__text {
    transition: opacity 0.5s ease-in-out;
    opacity: 0.25;
  }

  [data-sticky-steps-item-status="active"] .sticky-steps__text {
    opacity: 1;
  }
}

/* ── Mobile layout ── */
@media screen and (max-width: 991px) {
  .sticky-steps__list {
    gap: 7.5em;
    padding-top: 10em;
    padding-bottom: 10em;
  }

  .sticky-steps__text {
    width: 100%;
    padding-bottom: 5em;
    padding-right: 0;
  }

  .sticky-steps__sticky {
    min-height: auto;
    position: relative;
    top: auto;
  }

  .sticky-steps__media {
    width: 100%;
    height: auto;
    padding-left: 0;
    position: relative;
    top: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .sticky-steps__text {
    gap: 1em;
  }
}
