/* =============================================
   ONZE AANPAK / ZO WERKEN WIJ — CSS
============================================= */

.approach {
  background-color: var(--color-offwhite);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.approach__inner {
  position: relative;
}

/* ---------- SECTION HEADER ---------- */
.approach__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.approach__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.approach__eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--color-gold);
}

.approach__heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.approach__heading-dark {
  color: #111111;
}

.approach__heading-gold {
  color: var(--color-gold);
  margin-left: 10px;
}

.approach__desc {
  color: #77736D;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- SCROLL-REVEAL ANIMATION ---------- */
.fade-up-approach {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.approach.is-visible .fade-up-approach {
  opacity: 1;
  transform: translateY(0);
}

.approach.is-visible .approach-step__icon-circle {
  animation: approachIconPop 0.5s ease forwards;
}

@keyframes approachIconPop {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up-approach {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .approach.is-visible .approach-step__icon-circle {
    animation: none;
  }
}

/* =============================================
   PROCESS STEPS — DESKTOP (default / 1200px+)
============================================= */
.approach__steps {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 48px;
}

.approach-step {
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

/* Dashed connecting line behind the icons, only spanning 01 -> 05 */
.approach__steps::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 10%;
  right: 10%;
  height: 0;
  border-top: 1px dashed rgba(214, 168, 75, 0.7);
  z-index: 0;
}

.approach-step__marker {
  position: relative;
  width: 108px;
  height: 108px;
  margin-bottom: 22px;
}

.approach-step__icon-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background-color: var(--color-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.approach-step__icon {
  width: 44px;
  height: 44px;
}

.approach-step__number {
  position: absolute;
  top: 6px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold);
  z-index: 3;
}

.approach-step__title {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.approach-step__desc {
  font-size: 14.5px;
  color: #6E6A64;
  line-height: 1.6;
}

/* ---------- CTA BUTTONS ---------- */
.approach__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.approach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  height: 54px;
  padding: 0 26px;
  border-radius: 9px;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.approach-btn--primary {
  background-color: var(--color-gold);
  color: #111111;
}

.approach-btn--primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 168, 75, 0.35);
}

.approach-btn--secondary {
  background-color: var(--color-offwhite);
  color: #111111;
  border: 1px solid var(--color-gold);
}

.approach-btn--secondary:hover {
  background-color: #EFE8D8;
  transform: translateY(-2px);
}

/* =============================================
   TABLET (768px – 1199px)
============================================= */
@media (max-width: 1199px) {
  .approach {
    padding: 70px 0 55px;
  }

  .approach__steps {
    flex-wrap: wrap;
    row-gap: 48px;
  }

  .approach__steps::before {
    display: none;
  }

  .approach-step {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .approach-step:nth-child(4),
  .approach-step:nth-child(5) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* =============================================
   MOBILE (below 768px) — VERTICAL TIMELINE
============================================= */
@media (max-width: 767px) {
  .approach {
    padding: 60px 0 50px;
  }

  .approach__header {
    margin-bottom: 48px;
  }

  .approach__steps {
    flex-direction: column;
    align-items: stretch;
    row-gap: 0;
    margin-bottom: 40px;
  }

  .approach__steps::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 38px;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 1px dashed rgba(214, 168, 75, 0.7);
  }

  .approach-step {
    flex: 1 1 auto;
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    padding-bottom: 40px;
    gap: 20px;
  }

  .approach-step:last-child {
    padding-bottom: 0;
  }

  .approach-step__marker {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .approach-step__icon-circle {
    width: 76px;
    height: 76px;
  }

  .approach-step__icon {
    width: 32px;
    height: 32px;
  }

  .approach-step__number {
    width: 32px;
    height: 32px;
    font-size: 13px;
    top: -4px;
    left: -6px;
    border-radius: 7px;
  }

  .approach-step__content {
    padding-top: 16px;
  }

  .approach-step__title {
    font-size: 18px;
  }

  .approach-step__desc {
    font-size: 14.5px;
  }

  .approach__cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }

  .approach-btn {
    width: 100%;
    max-width: 400px;
  }
}

/* =============================================
   SMALL MOBILE (below 480px)
============================================= */
@media (max-width: 479px) {
  .approach__heading {
    font-size: clamp(32px, 8vw, 36px);
  }

  .approach-step__marker {
    width: 68px;
    height: 68px;
  }

  .approach-step__icon-circle {
    width: 68px;
    height: 68px;
  }

  .approach-step__icon {
    width: 28px;
    height: 28px;
  }

  .approach__steps::before {
    left: 34px;
  }

  .approach-step__desc {
    font-size: 14px;
  }
}
