.social-proof {
    padding: 6rem 0;
    background: var(--dark-section);
    color: var(--white);
}

.social-proof-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.social-proof-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.social-proof-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.social-proof-image {
    display: flex;
    justify-content: flex-end;
}

.proof-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    border-radius: 16px;
    object-fit: cover;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@media (max-width: 768px) {
    .social-proof {
        padding: 4rem 0;
    }

    .social-proof-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .social-proof-text h2 {
        font-size: 1.8rem;
    }

    .proof-image {
        max-width: 100%;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }
}
