.testimonials { padding: 100px 0; background: linear-gradient(180deg, var(--cream), var(--mint) 140%); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: #fff; border-radius: 22px; padding: 30px 28px; border: 1px solid rgba(0, 79, 95, 0.08); display: flex; flex-direction: column; gap: 18px; }
.t-stars { display: flex; gap: 3px; }
.t-stars svg { width: 16px; height: 16px; color: var(--aqua); }
.t-quote { font-size: 15px; color: #354C58; line-height: 1.6; }
.t-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--soft-aqua); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; font-family: 'Oxygen', sans-serif; flex-shrink: 0; }
.t-name { font-size: 13.5px; font-weight: 800; color: var(--navy); }
.t-rel { font-size: 12px; color: #5A6E7C; }
.t-note { text-align: center; margin-top: 36px; font-size: 12.5px; color: #5A6E7C; }
@media (max-width:900px) {
    .t-grid { grid-template-columns: repeat(1, 1fr);}
}
