.testimonials-section {
    padding: 90px 6%;
    background: #f8f9fc;
}

.testimonials-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.testimonials-heading .eyebrow {
    color: #4f46d8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-heading h2 {
    margin: 0 0 15px;
    font-size: 42px;
    color: #111827;
}

.testimonials-intro {
    margin: 0 auto;
    max-width: 620px;
    color: #6b7280;
    line-height: 1.7;
}

.testimonials-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}

.testimonial-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef0ff;
}

.testimonial-person strong {
    display: block;
    color: #111827;
    font-size: 16px;
}

.testimonial-rating {
    margin-top: 5px;
    color: #f5b301;
    font-size: 14px;
    letter-spacing: 1px;
}

.sample-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 20px;
    background: #eef0ff;
    color: #4f46d8;
    font-size: 11px;
    font-weight: 700;
}

.testimonial-text {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 850px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 65px 5%;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}