.testimonials { padding: 60px 24px; background: var(--lfr-bg); }
.testimonials__inner {
    max-width: var(--lfr-container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.testimonial {
    background: var(--lfr-card);
    border: 1px solid var(--lfr-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial__stars { display: flex; gap: 2px; }
.testimonial__stars img { width: 24px; height: 24px; }
.testimonial__text {
    color: var(--lfr-muted);
    font-family: var(--lfr-font-display);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
}
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name {
    font-family: var(--lfr-font-display);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}
@media (max-width: 960px) { .testimonials__grid { grid-template-columns: 1fr; } }
