/* ===== Trusted Text Band ===== */
.trusted-text-band {
    padding: 26px 0 36px;
    background: transparent;
}

.trusted-text-head {
    text-align: center;
    margin-bottom: 14px;
}

.trusted-kicker {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .7);
}

.trusted-sub {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(17, 17, 17, .6);
}

.trusted-text-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
    padding: 14px 0;
}

    /* fade edges */
    .trusted-text-marquee::before,
    .trusted-text-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }

    .trusted-text-marquee::before {
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
    }

    .trusted-text-marquee::after {
        right: 0;
        background: linear-gradient(270deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
    }

.trusted-text-track {
    display: flex;
    gap: 46px;
    align-items: center;
    width: max-content;
    padding: 0 26px;
    animation: trustedTextScroll 22s linear infinite;
}

.partner-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .3px;
    color: rgba(17, 17, 17, .75);
    white-space: nowrap;
    transition: .2s ease;
}

    .partner-name:hover {
        color: #fe6c1e;
        /* Mataami accent */
        transform: translateY(-1px);
    }

.trusted-text-marquee:hover .trusted-text-track {
    animation-play-state: paused;
}

@keyframes trustedTextScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .partner-name {
        font-size: 18px;
    }

    .trusted-text-track {
        gap: 30px;
        animation-duration: 18s;
    }

    .trusted-text-marquee::before,
    .trusted-text-marquee::after {
        width: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-text-track {
        animation: none;
    }
}

.solution-tabs {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

.solution-tabs__head {
    text-align: center;
    margin-bottom: 18px;
}

    .solution-tabs__head h3 {
        font-weight: 900;
        font-size: 34px;
        margin-bottom: 8px;
        color: #111;
    }

    .solution-tabs__head p {
        max-width: 760px;
        margin: 0 auto;
        opacity: .8;
        line-height: 1.7;
        font-size: 16px;
    }

.solution-tabs__toggle {
    width: fit-content;
    margin: 22px auto 18px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 6px;
    border-radius: 999px;
    display: flex;
    gap: 6px;
}

    .solution-tabs__toggle .tab-btn {
        border: 0;
        background: transparent;
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 900;
        cursor: pointer;
        opacity: .70;
        transition: .2s ease;
        font-size: 14px;
        color: #111;
        white-space: nowrap;
    }

        .solution-tabs__toggle .tab-btn.active {
            background: #fff;
            opacity: 1;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
        }

.solution-tabs__card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
    overflow: hidden;
    padding: 0;
}

.tab-panel {
    display: none;
    padding: 26px;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn .25s ease;
    }

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-top .tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: rgba(254, 108, 30, .12);
    color: #fe6c1e;
    border: 1px solid rgba(254, 108, 30, .25);
}

.tab-top .tag--pro {
    background: rgba(254, 108, 30, .14);
    color: #fe6c1e;
    border-color: rgba(254, 108, 30, .30);
}

.tab-top h4 {
    font-size: 26px;
    font-weight: 950;
    margin: 12px 0 8px;
    color: #111;
}

.tab-top p {
    opacity: .85;
    line-height: 1.7;
    margin: 0 0 18px;
    font-size: 15.5px;
}

.tab-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 10px 0 22px;
}

@@media (max-width: 900px) {
    .solution-tabs__head h3 {
        font-size: 28px;
    }

    .tab-points {
        grid-template-columns: 1fr;
    }

    .solution-tabs {
        padding: 55px 0;
    }

    .tab-panel {
        padding: 20px;
    }
}

.tab-points > div {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.tab-points i {
    color: #fe6c1e;
    font-size: 18px;
    line-height: 0;
}

.tab-points span {
    font-weight: 800;
    opacity: .92;
    font-size: 14px;
}

.tab-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}
