.social-proof {
    position: relative;
}

.social-proof .section-title {
    text-align: center;
    display: block;
}

.testimonials {
    display: flex;

    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: radial-gradient(circle at top, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);

    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.12);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(102, 217, 239, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-size: 1.5rem;
    color: var(--text-secondary);
    box-shadow: 0 0 0 3px var(--accent-primary);

}

.author-info h4 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.author-info p {
    margin-bottom: 0;
    color: var(--accent-primary);
    font-size: var(--font-size-sm);
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-body p::before,
.testimonial-body p::after {
    content: '"';
    color: var(--accent-primary);
    font-size: 1.3rem;
}

@media (max-width: 400px) {
    .testimonial {
        padding: 1.2rem;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--bg-tertiary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.badge i {
    color: var(--accent-primary);
    margin-right: var(--space-sm);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
