/* =========================
   Testimonials
   ========================= */

.testimonials {
    background: var(--white);
}

.testimonial-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03), rgba(6, 182, 212, 0.03));
    padding: 72px 90px;
    border-radius: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(20, 184, 166, 0.1);
    text-align: center;
}

.quote-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
}

.testimonial-text {
    font-size: 28px;
    line-height: 1.7;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 48px;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.author-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.author-role {
    font-size: 16px;
    color: var(--gray);
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 32px 28px;
    }

    .testimonial-text {
        font-size: 22px;
    }
}
