

/* ==========================================
   Customers Page
========================================== */

.customers-hero{
    position:relative;
    padding:82px 0 88px;
    overflow:hidden;
    color:#fff;
    text-align:center;
    background:
        radial-gradient(circle at 12% 20%,rgba(126,226,168,.2),transparent 28%),
        radial-gradient(circle at 88% 80%,rgba(255,255,255,.12),transparent 30%),
        linear-gradient(135deg,#198754,#0d6efd);
}

.customers-hero::before,
.customers-hero::after{
    content:"";
    position:absolute;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    pointer-events:none;
}

.customers-hero::before{
    top:-170px;
    left:-110px;
    width:420px;
    height:420px;
}

.customers-hero::after{
    right:-140px;
    bottom:-180px;
    width:460px;
    height:460px;
}

.customers-hero-pattern{
    position:absolute;
    inset:0;
    opacity:.13;
    background-image:
        linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px);
    background-size:48px 48px;
    pointer-events:none;
}

.customers-hero-content{
    position:relative;
    z-index:2;
    max-width:860px;
    margin:0 auto;
}

.customers-hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:17px;
    padding:8px 14px;
    color:#fff;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.6px;
    text-transform:uppercase;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    border-radius:30px;
}

.customers-hero h1{
    margin-bottom:19px;
    font-size:51px;
    font-weight:800;
    line-height:1.12;
    letter-spacing:-1px;
}

.customers-hero h1 span{
    color:#d8ffe7;
}

.customers-hero p{
    max-width:780px;
    margin:0 auto;
    font-size:17px;
    line-height:1.8;
    opacity:.94;
}

.customers-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:24px;
    font-size:13px;
    font-weight:700;
}

.customers-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.customers-breadcrumb a:hover{
    color:#d8ffe7;
}

.customers-breadcrumb i{
    font-size:10px;
    opacity:.7;
}

.customers-breadcrumb span{
    color:#d8ffe7;
}


/* ==========================================
   Trust Summary
========================================== */

.customers-summary{
    position:relative;
    z-index:5;
    margin-top:-38px;
}

.customers-summary-card{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    align-items:center;
    padding:25px 30px;
    background:#fff;
    border:1px solid #e6ebf1;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(15,23,42,.13);
}

.customers-summary-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    min-width:0;
}

.customers-summary-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 52px;
    width:52px;
    height:52px;
    color:#fff;
    font-size:19px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:15px;
}

.customers-summary-item strong{
    display:block;
    margin-bottom:4px;
    color:#1f2937;
    font-size:21px;
    font-weight:800;
    line-height:1;
}

.customers-summary-item span{
    display:block;
    color:#667085;
    font-size:12px;
    font-weight:600;
}

.customers-summary-divider{
    width:1px;
    height:42px;
    background:#e6ebf1;
}


/* ==========================================
   Customer Showcase
========================================== */

.customers-showcase{
    padding:92px 0 100px;
    background:
        radial-gradient(circle at 0 0,rgba(25,135,84,.06),transparent 22%),
        #f7f9fc;
}

.customers-section-heading{
    max-width:780px;
    margin:0 auto 44px;
    text-align:center;
}

.customers-section-heading > span{
    display:block;
    margin-bottom:8px;
    color:#198754;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.customers-section-heading h2{
    margin-bottom:13px;
    color:#1f2937;
    font-size:39px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:-.5px;
}

.customers-section-heading p{
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.8;
}

.customers-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.customer-logo-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    background:#fff;
    border:1px solid #e5eaf0;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(15,23,42,.07);
    animation:customerCardReveal .5s ease both;
    animation-delay:var(--customer-delay);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.customer-logo-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    left:0;
    width:0;
    height:4px;
    margin:auto;
    background:linear-gradient(90deg,#198754,#0d6efd);
    transition:width .35s ease;
}

.customer-logo-card:hover{
    transform:translateY(-8px);
    border-color:rgba(25,135,84,.3);
    box-shadow:0 20px 42px rgba(15,23,42,.13);
}

.customer-logo-card:hover::after{
    width:100%;
}

.customer-logo-visual{
    display:flex;
    align-items:center;
    justify-content:center;
    height:175px;
    padding:28px;
    overflow:hidden;
    background:
        linear-gradient(145deg,#fff,#f8fafc);
    border-bottom:1px solid #edf1f5;
}

.customer-logo-visual img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .35s ease;
    mix-blend-mode:multiply;
}

.customer-logo-card:hover .customer-logo-visual img{
    transform:scale(1.06);
}

.customer-logo-content{
    display:flex;
    align-items:center;
    flex-direction:column;
    justify-content:center;
    min-height:92px;
    padding:18px 17px 21px;
    text-align:center;
}

.customer-logo-content h3{
    margin-bottom:8px;
    color:#1f2937;
    font-size:15px;
    font-weight:800;
    line-height:1.45;
}

.customer-logo-content span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#667085;
    font-size:11px;
    font-weight:700;
}

.customer-logo-content i{
    color:#198754;
}

@keyframes customerCardReveal{

    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* ==========================================
   Customer Commitment
========================================== */

.customers-commitment{
    padding:0 0 95px;
    background:#f7f9fc;
}

.customers-commitment-card{
    display:flex;
    align-items:center;
    gap:25px;
    padding:34px 38px;
    color:#fff;
    background:
        linear-gradient(135deg,#101828,#172d4d);
    border-radius:22px;
    box-shadow:0 18px 45px rgba(15,23,42,.16);
}

.customers-commitment-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 68px;
    width:68px;
    height:68px;
    color:#fff;
    font-size:26px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:19px;
}

.customers-commitment-content{
    flex:1;
}

.customers-commitment-content > span{
    display:block;
    margin-bottom:6px;
    color:#7ee2a8;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.customers-commitment-content h2{
    margin-bottom:8px;
    color:#fff;
    font-size:25px;
    font-weight:800;
}

.customers-commitment-content p{
    max-width:780px;
    margin:0;
    color:#b7c3d3;
    font-size:13px;
    line-height:1.75;
}

.customers-contact-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    gap:9px;
    padding:12px 20px;
    color:#1a2db8;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
    background:#fff;
    border-radius:28px;
    transition:
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.customers-contact-button:hover{
    color:#198754;
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(0,0,0,.2);
}


/* ==========================================
   Responsive
========================================== */

@media(max-width:1199px){

    .customers-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

}

@media(max-width:991px){

    .customers-hero{
        padding:70px 0 78px;
    }

    .customers-hero h1{
        font-size:44px;
    }

    .customers-summary-card{
        grid-template-columns:1fr;
        gap:18px;
        padding:24px;
    }

    .customers-summary-item{
        justify-content:flex-start;
    }

    .customers-summary-divider{
        width:100%;
        height:1px;
    }

    .customers-commitment-card{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .customers-contact-button{
        margin-left:93px;
    }

}

@media(max-width:767px){

    .customers-hero{
        padding:58px 0 70px;
    }

    .customers-hero h1{
        font-size:37px;
    }

    .customers-hero p{
        font-size:15px;
    }

    .customers-showcase{
        padding:75px 0 80px;
    }

    .customers-section-heading h2{
        font-size:32px;
    }

    .customers-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:17px;
    }

    .customer-logo-visual{
        height:150px;
        padding:22px;
    }

    .customers-commitment{
        padding-bottom:75px;
    }

    .customers-commitment-card{
        padding:28px;
    }

    .customers-contact-button{
        width:100%;
        margin-left:0;
    }

}

@media(max-width:575px){

    .customers-hero h1{
        font-size:32px;
    }

    .customers-hero-eyebrow{
        font-size:10px;
    }

    .customers-summary{
        margin-top:-28px;
    }

    .customers-summary-icon{
        width:46px;
        height:46px;
        flex-basis:46px;
        font-size:17px;
    }

    .customers-section-heading h2{
        font-size:28px;
    }

    .customers-grid{
        grid-template-columns:1fr;
    }

    .customer-logo-visual{
        height:165px;
    }

    .customers-commitment-card{
        align-items:center;
        flex-direction:column;
        text-align:center;
    }

    .customers-commitment-content h2{
        font-size:22px;
    }

}

@media(prefers-reduced-motion:reduce){

    .customer-logo-card{
        animation:none;
    }

}
