.testimonials-section {
    padding: 28px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 260px;
    box-shadow: 0 6px 20px -16px rgba(0, 0, 0, 0.35);
}

.testimonial-top {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-stat {
    font-size: 42px;
    font-weight: 700;
}

.testimonial-label {
    font-size: 18px;
    color: var(--muted);
}

.quote-mark {
    font-size: 38px;
    color: #0d2456;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 14px 0 26px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-gold {
    background: #f5e8d0;
}

.avatar-blue {
    background: #d9e6ff;
}

.avatar-red {
    background: #ffd9d9;
}

.testimonial-user h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 13px;
    color: var(--muted);
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e6e8ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    width: 18px;
    fill: #6c7386;
}

@media(max-width:1100px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:680px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-stat {
        font-size: 32px;
    }

    .testimonial-label {
        font-size: 15px;
    }

    .testimonial-quote {
        font-size: 15px;
    }
}
