/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap {
    background: var(--midnight);
    padding: 96px 5%;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px;
    transition: background 0.2s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.testimonial-role {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}