/* Shared professional light theme for the pricing feature banner. */
.features-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #dbe5f0;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08), 0 2px 6px rgba(15, 23, 42, .03);
}

.features-banner::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 52%, #14b8a6 100%);
}

.features-banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -112px;
    right: -74px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .055);
    pointer-events: none;
}

.features-banner-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.features-banner-title {
    max-width: 850px;
    color: #172033;
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.025em;
    line-height: 1.35;
}

.features-banner-title .accent {
    color: #1d4ed8;
    background: none;
    -webkit-text-fill-color: currentColor;
    font-weight: 800;
}

.features-banner-counter {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #1d4ed8;
    background: #eff6ff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .01em;
    white-space: nowrap;
}

.features-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 14px;
    padding: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-tabs::-webkit-scrollbar {
    display: none;
}

.feature-tab {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #64748b;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.feature-tab:hover {
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #eff6ff;
}

.feature-tab:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .18);
    outline-offset: 1px;
}

.feature-tab.active {
    border-color: #93c5fd;
    color: #1d4ed8;
    background: #ffffff;
    box-shadow: 0 5px 12px rgba(37, 99, 235, .1);
}

.feature-tab .tab-icon {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 7px;
    background: #f1f5f9;
    font-size: 13px;
    line-height: 1;
}

.feature-tab.active .tab-icon {
    background: #dbeafe;
}

.feature-tab .tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 6px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #64748b;
    background: #f8fafc;
    font-size: 10px;
    font-weight: 800;
}

.feature-tab.active .tab-badge {
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #eff6ff;
}

.features-panels {
    min-height: 92px;
    padding: 17px;
    border: 1px solid #dbe5f0;
    border-radius: 15px;
    background: #f8fbff;
}

.feature-panel {
    animation: pricingFeaturePanelIn .22s ease;
}

@keyframes pricingFeaturePanelIn {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #172033;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;
}

.panel-title-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #bfdbfe;
    border-radius: 9px;
    background: #eff6ff;
    font-size: 16px;
}

.panel-credit {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    color: #0369a1;
    background: #f0f9ff;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.panel-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border: 1px solid #dbe5f0;
    border-radius: 9px;
    color: #334155;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .035);
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.2;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.feature-pill:hover {
    border-color: #93c5fd;
    color: #1d4ed8;
    background: #eff6ff;
    box-shadow: 0 5px 12px rgba(37, 99, 235, .08);
    transform: translateY(-1px);
}

.feature-pill.free {
    border-color: #a7f3d0;
    color: #047857;
    background: #ecfdf5;
}

.feature-pill.free:hover {
    border-color: #6ee7b7;
    color: #065f46;
    background: #d1fae5;
    box-shadow: 0 5px 12px rgba(16, 185, 129, .1);
}

@media (max-width: 768px) {
    .features-banner {
        padding: 17px;
        border-radius: 16px;
    }

    .features-banner-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 13px;
    }

    .features-banner-title {
        font-size: 15px;
    }

    .features-banner-counter {
        padding: 6px 10px;
    }

    .features-tabs {
        margin-right: -3px;
        margin-left: -3px;
        padding: 5px;
    }

    .feature-tab {
        min-height: 35px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .feature-tab .tab-badge {
        display: none;
    }

    .features-panels {
        padding: 14px;
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .panel-credit {
        font-size: 10.5px;
    }

    .feature-pill {
        padding: 6px 9px;
        font-size: 11px;
    }
}
