/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.testimonial-card { background: var(--card-bg); padding: 40px; }
.testimonial-quote { font-size: 15px; opacity: 0.7; line-height: 1.75; margin-bottom: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: #252525; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--accent); }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-company { font-size: 12px; opacity: 0.4; margin-top: 3px; }
