.testimonials-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: radial-gradient(circle at top left, rgba(242, 193, 79, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(123, 18, 52, 0.35), transparent 60%);
}

.testimonials-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.testimonials-hero-text {
  max-width: 640px;
}

.testimonials-hero-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.testimonials-hero-image-wrapper {
  display: flex;
  justify-content: flex-end;
}

.testimonials-hero-image-card {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg-elevated);
}

.testimonials-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-trust-row {
  margin-top: var(--space-6);
  justify-content: flex-start;
}

.testimonials-section-header {
  max-width: 760px;
  margin: 0 auto var(--space-10);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-body {
  margin-top: var(--space-2);
}

.testimonial-image-wrapper {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-gallery {
  background-color: var(--color-bg-elevated);
}

.testimonials-gallery-grid {
  margin-top: var(--space-6);
}

.testimonials-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-cta-content {
  max-width: 720px;
  text-align: center;
}

.testimonials-cta .hero-buttons {
  justify-content: center;
  margin-top: var(--space-6);
}

@media (max-width: 991px) {
  .testimonials-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-hero-image-wrapper {
    justify-content: center;
  }

  .testimonials-trust-row {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .testimonials-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .testimonials-section-header {
    margin-bottom: var(--space-8);
  }
}
