.approach-hero {
  padding-top: var(--space-80);
}

.approach-hero__grid {
  display: grid;
  gap: var(--space-40);
  align-items: center;
}

@media (min-width: 960px) {
  .approach-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.approach-hero__content p {
  max-width: 38rem;
}

.approach-kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}

.approach-hero__image {
  min-height: 260px;
}

@media (min-width: 768px) {
  .approach-hero__image {
    min-height: 360px;
  }
}

.approach-hero__actions {
  margin-top: var(--space-24);
}



.approach-section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.approach-section-heading--center p {
  margin-inline: auto;
}

.approach-pillars {
  margin-top: var(--space-40);
}

.approach-process {
  background-color: var(--color-bg-alt);
}

.approach-steps {
  margin-top: var(--space-40);
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  counter-reset: approach-counter;
}

.approach-step {
  counter-increment: approach-counter;
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(222, 212, 197, 0.8);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .approach-step {
    padding: var(--space-32);
  }
}

.approach-step__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-20);
  margin-bottom: var(--space-20);
}

.approach-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.approach-step__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-4);
}

.approach-step__subtitle {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.approach-step__body {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 960px) {
  .approach-step__body {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.approach-step__text p + p {
  margin-top: var(--space-12);
}

.approach-step__image {
  min-height: 220px;
}

@media (min-width: 960px) {
  .approach-step__image {
    min-height: 260px;
  }
}

.approach-cta {
  background-color: var(--color-surface);
}

.approach-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

@media (min-width: 768px) {
  .approach-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.approach-cta__content {
  max-width: 38rem;
}

.approach-cta__actions {
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .approach-cta__actions {
    width: 100%;
  }
  .approach-cta__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
