.testimonials-section {
    padding: 64px 40px;
    background: var(--bg-dark);
}

.testimonials-inner {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-inner h2 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-weight: 400;
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.4;
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--purple-border);
    overflow: hidden;
    position: relative;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--purple-light) 0%, rgba(41,28,74,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.testimonial-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.testimonial-name {
    font-weight: 500;
    font-size: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

@media (max-width: 1600px) {
    .testimonials-section {
        padding: 48px 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-inner h2 {
        font-size: 28px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-name {
        font-size: 20px;
    }
}
