.social-proof{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 64px 0 0 0;
    overflow: visible;
}

.social-proof-container{
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.social-proof-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 24px;
}
.social-proof-logo{
    width: 25%;
    height: auto;
    flex:1;
    margin-top: -20px;
}
.social-proof-title-wrapper{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width:fit-content;
}
.social-proof-title-text{
    flex:2;
    color: var(--01, #6316DB);
text-align: right;

font-family: year, sans-serif;
font-size: 56px;
font-style: normal;
font-weight: 400;
line-height: 64px; /* 114.286% */
z-index: 2;
}
.social-proof-arrow{
    position: absolute;
    top: 10px;
    right: -50px;
}
.social-proof-subtitle{
    color: var(--01, #6316DB);
    text-align: left;
    font-family: year, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px; /* 114.286% */
    z-index: 2;
}
.social-proof-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-proof-card{
    display: flex;
max-width: 255px;
height: 200px;
padding: 16px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 16px;
border-radius: 12px;
background: rgba(99, 22, 219, 0.70);
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 2px 4px 4px 0 #9582EF inset;
backdrop-filter: blur(2px);
}

.social-proof-card-text{
    color: var(--WHITE, #FFF);
text-align: center;

/* BUTTON/CTA (24) LALEZAR */
font-family: year, sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
}
.social-proof-donut{
    height: 19vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3.5vw solid #FB2576;
    position: absolute;
    top: -3vw;
    right: -5vw;
    z-index: 2;
}

.meet-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -50px;
    z-index: 1;
}
@media (max-width:1024px){
    .social-proof-container{
        max-width: 90%;
        gap: 30px;
    }
    .social-proof-title-text{
        font-size: 7vw;
    }
    .social-proof-subtitle{
        font-size: 7vw;
    }
    .social-proof-header{
        gap: 20px;
    }
    .social-proof-header svg{
        display: none;
    }
    
}

@media (max-width:768px){
    .social-proof-cards{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .social-proof-header{
        gap: 0;
    }
    .social-proof-title-text{
       line-height: 1;
    }
    .social-proof-card{
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 12px;
    }
    .social-proof-card-text{
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width:480px){
    .social-proof-cards{
        gap: 10px;
    }
    .social-proof-card{
        padding: 10px;
        min-height: 100px;
    }
    .social-proof-card-text{
        font-size: 14px;
        line-height: 18px;
    }
    .meet-img{
        margin-top: 0;
        margin-bottom: -20px;
    }
}