.testimonials-section {
  padding: 104px 0 110px;
  background: #fdfaf9;
}

.testimonials-heading {
  text-align: center;
}

.testimonials-heading h2 {
  margin-top: 0;
}

.testimonials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 38px 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #f0e3e3;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 30px;
  color: var(--primary);
  font-size: 120px;
  line-height: 1;
  font-weight: var(--fw-display);
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #f3d3d3;
  box-shadow: 0 28px 56px rgba(44, 34, 34, 0.10);
}

.testimonial-card:hover::before {
  opacity: 0.3;
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars span {
  width: 16px;
  height: 16px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card blockquote {
  margin-top: 22px;
  flex: 1;
}

.testimonial-card blockquote p {
  color: var(--text);
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.testimonial-author {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #f8e6e6;
  color: var(--primary);
  font-size: 15px;
  font-weight: var(--fw-label);
  letter-spacing: -0.02em;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-body);
  font-weight: var(--fw-strong);
  letter-spacing: -0.02em;
}

.testimonial-company {
  display: block;
  margin-top: 2px;
  color: var(--text-soft);
  font-size: var(--fs-caption);
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .testimonials-section {
    padding: 72px 0 64px;
  }

  .testimonials-grid {
    margin-top: 36px;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .testimonial-card::before {
    font-size: 90px;
    right: 22px;
    top: 12px;
  }

  .testimonial-card blockquote p {
    font-size: 17px;
  }
}
