.tab .nav-tabs {
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 6px;
}

.nav-tabs .nav-link.qw-tab-desc {
    background: #fff;
    color: #0c2747;
    border: 2px solid #e3e9f1;
    border-radius: 999px;
    font-weight: 600;
    padding: 10px 22px;
    transition: all .2s ease;
}

.nav-tabs .nav-link.qw-tab-desc:hover {
    border-color: #0c2747;
    color: #0c2747;
}

.nav-tabs .nav-link.qw-tab-desc.active {
    background: #0c2747;
    color: #fff;
    border-color: #0c2747;
}

.nav-tabs .nav-link.qw-tab-desc i {
    margin-right: 5px;
}

.nav-tabs .nav-link.qw-tab-cta {
    background: linear-gradient(135deg, #e0a43b, #c3851f);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 11px 26px;
    margin-left: 10px;
    box-shadow: 0 10px 22px -10px rgba(224, 164, 59, .85);
    position: relative;
    animation: qw-cta-pulse 2.4s ease-in-out infinite;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nav-tabs .nav-link.qw-tab-cta:hover,
.nav-tabs .nav-link.qw-tab-cta:focus {
    background: linear-gradient(135deg, #e9b252, #d0931f);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -10px rgba(224, 164, 59, .95);
}

.nav-tabs .nav-link.qw-tab-cta.active {
    background: linear-gradient(135deg, #0c2747, #16314e);
    color: #fff;
    box-shadow: 0 10px 22px -12px rgba(12, 39, 71, .9);
    animation: none;
}

.nav-tabs .nav-link.qw-tab-cta i {
    margin-right: 4px;
}

.nav-tabs .nav-link.qw-tab-cta::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform .2s ease;
}

.nav-tabs .nav-link.qw-tab-cta:hover::after {
    transform: translateX(3px);
}

.nav-tabs .nav-link.qw-tab-cta.active::after {
    display: none;
}

@keyframes qw-cta-pulse {
    0%, 100% {
        box-shadow: 0 10px 22px -10px rgba(224, 164, 59, .85), 0 0 0 0 rgba(224, 164, 59, .45);
    }
    50% {
        box-shadow: 0 10px 22px -10px rgba(224, 164, 59, .85), 0 0 0 8px rgba(224, 164, 59, 0);
    }
}
