.social-proof {
    padding: 100px 20px;
    background: #061426;
}

.social-proof .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-proof .section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(0, 162, 255, 0.12);
    color: #00a2ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-proof h2 {
    color: #fff;
    margin-bottom: 15px;
}

.social-proof h2 span {
    color: #ff8c00;
}

.section-description {
    color: #9fb3c8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: #0a1c33;
    border: 1px solid rgba(0, 162, 255, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.3rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 10px;
}

.stat-label {
    color: #d6e2ef;
    font-size: 15px;
}

.social-proof-box {
    margin-top: 40px;
    background: #0a1c33;
    border-left: 4px solid #ff8c00;
    border-radius: 12px;
    padding: 25px;
}

.social-proof-box p {
    color: #d6e2ef;
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}