.testimonials {
    padding: 100px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    transition: border-color 0.4s cubic-bezier(0.15, 0.85, 0.35, 1), box-shadow 0.4s cubic-bezier(0.15, 0.85, 0.35, 1), transform 0.4s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.testimonial-card:hover {
    border-top-color: var(--cyan);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: 14px;
}

.testimonial-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-photo {
    font-size: 48px;
    color: var(--text-muted);
    line-height: 1;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    font-family: var(--font-mono);
}

.client-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

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