.section-trusted-by {
    display: flex;
    flex-direction: column;
    gap: 52px;
    align-items: center;
    padding: 64px 105px 30px 105px;
    justify-content: center;
}

.trusted-by-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 86%;
}

/*.trusted-by-badge {
    display: flex;
    flex-direction: row;
    padding: 7px 18px;
    justify-content: center;
    align-items: center;
    gap: 12px;

    border-radius: 58px;
    border: 1px solid #E6E7EA;
    background: #FFF;
    box-shadow: 0 8px 30px -10px rgba(177, 186, 226, 0.21), 0 8px 24px -8px rgba(173, 173, 173, 0.20), 0 -4px 0 0 #F3F3F4 inset;
}*/

.trusted-by-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 933px;
}

.trusted-by-header-title {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    letter-spacing: -3.6px;
}

.trusted-by-header-subtitle {
    color: var(--Dark-Shade-blue-300);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.trusted-by-title-alone {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.trusted-by-item {
    width: 190px;
    height: 86px;

    border-radius: 8px;
    border: 1px solid #E7E7EB;
    background: var(--color-white);
    box-shadow: 0 -5px 0 0 #F1F1F6 inset;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.trusted-by-item.is-wide {
    width: 292px;
}

.trusted-by-item img {
    max-width: 100%;
    max-height: 30px;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;
}

#trusted-by-button {
    display: flex;
    padding: 4px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 6px;
    border: 1px solid #06061C;
    background: linear-gradient(180deg, #252459 0%, #0B0A33 100%);
    box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.50) inset;

    color: var(--color-white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1400px) {
    .trusted-by-item.is-wide {
        width: 190px;
    }
}

@media (max-width: 1100px) {
    .trusted-by-title-alone {
        font-size: 16px;
        line-height: 24px;
    }

    .trusted-by-item {
        width: 164px;
        height: 74px;
    }
}

@media (max-width: 730px) {
    .section-trusted-by {
        padding: 24px 14px;
    }
    .trusted-by-logos {
        gap: 12px;
        max-width: none;
        width: 100%;
    }
}
/* ===== Trusted By Logos ===== */
*/
.trusted-by-logos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.trusted-by-item{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 16px;
    transition: 
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease,
        box-shadow 0.35s ease;
    
    opacity: 0.75;
    animation: floatLogo 4s ease-in-out infinite;
}

/* Hover effect */
.trusted-by-item:hover{
    transform: translateY(-8px) scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Logo image */
.trusted-by-item img{
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* Slight zoom on image */
.trusted-by-item:hover img{
    transform: scale(1.08);
}

/* Floating animation */
@keyframes floatLogo{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-6px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Different delays for natural movement */
.trusted-by-item:nth-child(2n){
    animation-delay: 0.5s;
}

.trusted-by-item:nth-child(3n){
    animation-delay: 1s;
}

.trusted-by-item:nth-child(4n){
    animation-delay: 1.5s;
}
