.social-proof-4210 {
    padding: 80px 20px;
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.sp-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-subheading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sp-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #182335;
    max-width: 700px;
    margin: 0 auto;
}

.sp-testimonials {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.sp-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.sp-stars {
    margin-bottom: 20px;
}

.sp-stars i {
    font-size: 16px;
    margin-right: 4px;
}

.sp-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
    flex-grow: 1;
}

.sp-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.sp-user-info {
    display: flex;
    flex-direction: column;
}

.sp-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #182335;
    margin: 0 0 2px 0;
}

.sp-user-title {
    font-size: 13px;
    color: #9ca3af;
}

.sp-stats-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    padding: 40px 0;
}

.sp-stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #f3f4f6;
}

.sp-stat-item:last-child {
    border-right: none;
}

.sp-stat-val {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.sp-stat-label {
    font-size: 14px;
    color: #9ca3af;
}

@media (max-width: 991px) {
    .sp-testimonials {
        flex-direction: column;
    }
    
    .sp-stats-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .sp-stat-item {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 40px;
    }
    
    .sp-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}