/* ======================================================
   TRUST SECTION
====================================================== */

.trusted-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );

}

/* ======================================================
   BACKGROUND
====================================================== */

.trusted-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

}

.trusted-orb{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.18;

}

.orb-1{

    width:340px;

    height:340px;

    background:#10B981;

    top:-120px;

    left:-120px;

}

.orb-2{

    width:320px;

    height:320px;

    background:#0EA5E9;

    bottom:-120px;

    right:-100px;

}

/* ======================================================
   HEADER
====================================================== */

.trusted-header{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    text-align:center;

}

.trusted-header .section-title{

    margin-top:20px;

}

.trusted-header .section-description{

    margin-top:22px;

    font-size:17px;

    line-height:1.8;

    color:#64748B;

}

.highlight{

    background:
        linear-gradient(
            90deg,
            #10B981,
            #0EA5E9
        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* ======================================================
   INDUSTRY GRID
====================================================== */

.trusted-logo-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:70px;

}

.trusted-logo{

    position:relative;

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px;

    border-radius:24px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(226,232,240,.9);

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;

    overflow:hidden;

}

.trusted-logo::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            135deg,
            rgba(16,185,129,.08),
            transparent
        );

    opacity:0;

    transition:.35s;

}

.trusted-logo:hover{

    transform:translateY(-8px);

    border-color:#10B981;

    box-shadow:

        0 22px 55px rgba(15,23,42,.10);

}

.trusted-logo:hover::before{

    opacity:1;

}

/* ======================================================
   ICON
====================================================== */

.trusted-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:

        linear-gradient(
            135deg,
            #10B981,
            #0EA5E9
        );

    color:#FFFFFF;

    box-shadow:

        0 18px 35px rgba(16,185,129,.30);

}

.trusted-icon svg{

    width:30px;

    height:30px;

}

/* ======================================================
   CONTENT
====================================================== */

.trusted-content{

    display:flex;

    flex-direction:column;

}

.trusted-content h4{

    margin:0;

    font-size:19px;

    font-weight:700;

    color:#0F172A;

}

.trusted-content span{

    margin-top:6px;

    color:#64748B;

    font-size:14px;

}

/* ======================================================
   STATS
====================================================== */

.stats-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:80px;

}

.stat-card{

    position:relative;

    overflow:hidden;

    padding:38px;

    border-radius:28px;

    background:#FFFFFF;

    border:1px solid rgba(226,232,240,.9);

    text-align:center;

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;

}

.stat-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            rgba(16,185,129,.05),
            transparent
        );

    opacity:0;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#10B981;

    box-shadow:

        0 25px 60px rgba(15,23,42,.10);

}

.stat-card:hover::before{

    opacity:1;

}

/* ======================================================
   STAT
====================================================== */

.stat-label{

    display:inline-block;

    padding:8px 14px;

    border-radius:999px;

    background:#ECFDF5;

    color:#10B981;

    font-size:12px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

}

.stat-card h3{

    margin-top:24px;

    font-size:58px;

    line-height:1;

    font-weight:800;

    color:#10B981;

}

.stat-symbol{

    font-size:36px;

    vertical-align:top;

}

.stat-card p{

    margin-top:18px;

    font-size:16px;

    color:#64748B;

}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:1024px){

    .trusted-logo-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .trusted-section{

        padding:90px 0;

    }

    .trusted-logo-grid{

        gap:18px;

    }

    .trusted-logo{

        padding:22px;

    }

    .trusted-icon{

        width:56px;

        height:56px;

    }

    .stats-grid{

        gap:18px;

        margin-top:60px;

    }

    .stat-card{

        padding:30px;

    }

}

@media(max-width:576px){

    .trusted-logo-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .trusted-logo{

        padding:20px;

    }

    .trusted-content h4{

        font-size:17px;

    }

    .trusted-content span{

        font-size:13px;

    }

    .stat-card h3{

        font-size:46px;

    }

}