.testimonials { background: var(--accent-2); color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,0.7); }
.testimonials .eyebrow { color: #ffb199; }
.testimonials .eyebrow::before { background: #ffb199; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.testi-card p.quote { font-size: 15px; line-height: 1.6; margin-bottom: 22px; opacity: 0.92; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.testi-who b { display: block; font-size: 14px; }
.testi-who span { font-size: 12.5px; opacity: 0.65; }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}
