/* ============================================
   PROOF SECTION
   ============================================ */

.section {
    padding: 8rem 5%;
    position: relative;
}

.section--white {
    background: var(--bg-white);
}

.section--white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(148, 163, 184, 0.15) 50%, 
        transparent 100%);
}

