﻿.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: 900px;
        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;
    justify-content: center;
    align-items: center;
}

    .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: 1200px;
    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: 680px) {
    .tab-points {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solution-tabs__toggle {
        width: 100%;
        max-width: 520px;
        justify-content: center;
    }

        .solution-tabs__toggle .tab-btn {
            flex: 1;
            text-align: center;
            padding: 10px 8px;
            font-size: 13px;
            white-space: normal;
            line-height: 1.2;
            min-width: 0;
            word-break: break-word;
        }
}


.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;
}

.solution-tabs__inner {
    width: 100%;
    padding: 0 40px;
}

.solution-tabs .pricing-wrapper {
    /* leave it as it is from your main CSS */
}

    .solution-tabs .pricing-wrapper.center-single {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start;
        gap: 18px;
    }

        .solution-tabs .pricing-wrapper.center-single > .plan-card {
            margin-left: auto !important;
            margin-right: auto !important;
        }


.card-header {
    position: relative;
}

    .card-header .popular-tag {
        position: absolute;
        top: -12px;
        right: 0;
        z-index: 2;
        white-space: nowrap;
        line-height: 1;
    }
