/* ── Hero ── */
.approach-hero {
  position: relative;
  height: 537px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-hero__bg {
  position: absolute;
  inset: 0;
}
.approach-hero__bg img {
  position: absolute;
  width: 100%;
  height: 124%;
  object-fit: cover;
  top: 0;
  left: 0;
  max-width: none;
}
.approach-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.56));
}
.approach-hero__tint {
  position: absolute;
  inset: 0;
  background: #1cb3e8;
  mix-blend-mode: hue;
}
.approach-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 983px;
  padding: 0 2rem;
}
.approach-hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 3.375rem);
  line-height: 1.3;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}
.approach-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  line-height: 2rem;
  color: rgba(209,213,220,0.8);
  max-width: 743px;
  margin: 0 auto;
}

/* ══════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════ */
.testimonials {
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.testimonials__header { margin-bottom: 4rem; }
.testimonials__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  letter-spacing: -0.5px;
  margin-top: 0.5rem;
}
.testimonials__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 420px;
}

/* Background testimonial cards */
.testi-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 2rem;
  width: 416px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.testi-card__quote-mark { width: 24px; height: auto; }
.testi-card__text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: white;
  line-height: 1.5;
  letter-spacing: -0.5px;
  max-width: 355px;
}
.testi-card__avatar-wrap {
  position: relative;
  width: 84px;
  height: 84px;
}
.testi-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: #e0e0e0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.testi-card__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.2px;
}

/* Featured testimonial card — glassmorphism */
.testi-card--featured {
  background: linear-gradient(151deg, rgba(254,248,255,0.21) 2%, rgba(254,248,255,0) 100%);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
  width: 512px;
  height: 365px;
  z-index: 2;
  gap: 0.75rem;
}
.testi-card--featured .testi-card__text { font-size: 1rem; max-width: 394px; line-height: 1.44; }
.testi-card--featured .testi-card__avatar { width: 104px; height: 104px; }
.testi-card--featured .testi-card__avatar-wrap { width: 104px; height: 104px; }
.testi-card--featured .testi-card__name { font-size: 1rem; }
.testi-card--featured .testi-card__quote-mark { width: 30px; }

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonials__arrow {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity var(--transition-fast);
}
.testimonials__arrow:hover { opacity: 0.7; }
.testimonials__arrow img { width: 24px; }

@media (max-width: 1100px) {
  .testimonials__stage { gap: 1rem; }
  .testi-card { width: 320px; }
  .testi-card--featured { width: 400px; }
  .testi-card:first-child,
  .testi-card:last-child { display: none; }
}
@media (max-width: 640px) {
  .testi-card:not(.testi-card--featured) { display: none; }
  .testi-card--featured { width: 100%; }
}