.social-proof-section {
    position: relative;
    overflow: hidden;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.stats-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.stats-number {
    margin-bottom: 10px;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #f97316;
}

.stats-label {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #0f172a;
}

.social-proof-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 980px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        padding: 26px 20px;
    }
}

@media (max-width: 640px) {
    .social-proof-head {
        margin-bottom: 24px;
    }

    .stats-grid {
        gap: 16px;
    }

    .stats-card {
        border-radius: 20px;
        padding: 24px 18px;
    }

    .stats-number {
        font-size: 38px;
    }

    .stats-label {
        font-size: 14px;
    }
}