.testimonials {
    padding: 40px 0;
    background: var(--color-bg);
}

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

.testimonials__cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.testimonial {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius);
    padding: 28px;
    color: #fff;
}

.testimonial__heading {
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.testimonial__stars {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial__stars span {
    width: 18px;
    height: 18px;
    background: #FFC940;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 14.85 8.6 22 9.27l-5.46 4.73L18.18 22 12 18.27 5.82 22l1.64-7.99L2 9.27 9.15 8.6Z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 14.85 8.6 22 9.27l-5.46 4.73L18.18 22 12 18.27 5.82 22l1.64-7.99L2 9.27 9.15 8.6Z'/></svg>") no-repeat center / contain;
}

.testimonial__review {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial__initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-orange-2) 0%, var(--color-orange) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.testimonial__author-text { line-height: 1.3; }

.testimonial__name {
    font-family: var(--font-display);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.testimonial__role {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

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

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