/* ============================================================
        TABS
        ============================================================ */
.tab-nav {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-light);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    outline: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tab-btn:hover {
    color: var(--kpm-blue);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.tab-btn.active {
    color: var(--white);
    background: var(--kpm-blue);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.tab-content {
    display: none;
    animation: rise 0.4s ease-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}