.akra-trust {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #05010d 0%,
            #080312 100%);
}

/* GRID BG */
.akra-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}

/* GLOW */
.trust-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(123, 97, 255, .25),
            transparent 70%);
    filter: blur(120px);
    top: -250px;
    left: -250px;
    pointer-events: none;
}

/* HEADING */
.trust-heading {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 90px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    margin-bottom: 28px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}

.trust-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ba6eeb;
    box-shadow:
        0 0 15px #ba6eeb;
}

.trust-heading h2 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 24px;
}

.trust-heading h2 span {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-heading p {
    font-size: 20px;
    line-height: 1.8;
    color:
        rgba(255, 255, 255, .68);
}

/* MARQUEE */
.trust-marquee {
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation:
        trustMarquee 45s linear infinite;
    margin-bottom: 30px;
}

.trust-logo {
    position: relative;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 2px;
    color:
        rgba(255, 255, 255, .16);
    transition: .35s;
    white-space: nowrap;
}

.trust-logo:hover {
    color: rgba(255, 255, 255, .95);
    transform:
        translateY(-3px);
}

@keyframes trustMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* STATS */
.trust-stats {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    position: relative;
    padding: 42px 34px;
    border-radius: 30px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: .35s;
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .06),
            transparent);
    opacity: 0;
    transition: .35s;
}

.trust-card:hover {
    transform:
        translateY(-8px);
    border-color:
        rgba(123, 97, 255, .45);
    box-shadow:
        0 0 45px rgba(123, 97, 255, .18);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-number {
    position: relative;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
    background:
        linear-gradient(90deg,
            #ffffff,
            #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-text {
    position: relative;
    color:
        rgba(255, 255, 255, .65);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   CLIENT GRID
========================================================= */
.client-grid-wrapper {
    margin-top: 110px;
}

/* HEADER */
.client-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.client-grid-header h3 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 12px;
}

.client-grid-header p {
    font-size: 17px;
    line-height: 1.7;
    color:
        rgba(255, 255, 255, .65);
}

/* VIEW ALL BUTTON */
.view-all-btn {
    position: relative;
    padding: 18px 28px;
    border-radius: 18px;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(14px);
    transition: .35s;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(123, 97, 255, .25),
            rgba(192, 132, 252, .2));
    opacity: 0;
    transition: .35s;
}

.view-all-btn:hover {
    border-color:
        rgba(123, 97, 255, .4);
    transform:
        translateY(-4px);
    box-shadow:
        0 0 40px rgba(123, 97, 255, .18);
}

.view-all-btn:hover::before {
    opacity: 1;
}

/* GRID */
.client-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.client-logo-card {
    position: relative;
    height: 160px;
    border-radius: 28px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .35s;
}

.client-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .08),
            transparent);
    opacity: 0;
    transition: .35s;
}

.client-logo-card:hover {
    transform:
        translateY(-8px);
    border-color:
        rgba(123, 97, 255, .45);
    box-shadow:
        0 0 50px rgba(123, 97, 255, .16);
}

.client-logo-card:hover::before {
    opacity: 1;
}

.client-logo-card span {
    position: relative;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color:
        rgba(255, 255, 255, .82);
    transition: .35s;
}

.client-logo-card:hover span {
    color: #fff;
}

.client-logo-card img {
    position: relative;

    object-fit: contain;
    opacity: .72;
    filter:
        grayscale(0%) brightness(90%);
    transition: .4s;
}

.client-logo-card:hover img {
    opacity: 1;
    transform:
        scale(1.09);
    filter:
        grayscale(0%) brightness(100%);
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:992px) {
    .client-grid {
        grid-template-columns: 1fr 1fr;
    }

    .client-grid-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px) {
    .client-grid-header h3 {
        font-size: 32px;
    }

    .client-grid-header p {
        font-size: 15px;
    }

    .client-logo-card {
        height: 120px;
    }

    .client-logo-card span {
        font-size: 20px;
    }
}

/* TABLET */
@media(max-width:992px) {
    .akra-trust {
        padding: 100px 0;
    }

    .trust-heading h2 {
        font-size: 48px;
    }

    .trust-heading p {
        font-size: 18px;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
    }

    .trust-number {
        font-size: 48px;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .trust-heading {
        margin-bottom: 70px;
    }

    .trust-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .trust-heading p {
        font-size: 16px;
    }

    .trust-track {
        gap: 50px;
    }

    .trust-logo {
        font-size: 24px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 34px 28px;
    }
}

/* SMALL MOBILE */
@media(max-width:576px) {
    .akra-trust {
        padding: 80px 0;
    }

    .trust-heading h2 {
        font-size: 32px;
    }

    .trust-badge {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .trust-number {
        font-size: 42px;
    }

    .client-grid {
        grid-template-columns: 1fr;
    }

    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}
