/* === SOCIAL PROOF SECTION === */
.social-proof-section {
    /* Uses standardized spacing system */
}

/* === TESTIMONIALS GRID === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.15s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.testimonial-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #fafbff 0%, #f8faff 100%);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #64748b;
}

/* === STATS GRID === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    padding: 48px 32px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 24px;
        margin-bottom: 60px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 28px;
    }
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    padding: 48px 32px;
    background: #1a1a1a;
    border-radius: 16px;
    color: #ffffff;
}

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

.cta-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-section h3 {
        font-size: 24px;
    }
}

.cta-section p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

.cta-buttons .btn-primary {
    background: #6366f1;
    color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #4338ca;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #374151;
}

.cta-buttons .btn-secondary:hover {
    color: #ffffff;
    border-color: #6b7280;
}