.mega-nav {
    height: 3rem;
}

.mega-nav-item {
    display: flex;
    align-items: center;
    height: 3rem;
}

.mega-nav-link {
    display: flex;
    align-items: center;
    height: 3rem;
    color: inherit;
    transition: color 0.2s ease;
}

.mega-nav-link:hover {
    color: #000000;
}

.mega-menu {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    visibility: hidden;
}

.mega-nav-item:hover .mega-menu,
.mega-nav-item:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.mega-menu-inner {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1024px;
    padding: 2rem 1.5rem 2.25rem;
}

.mega-menu-kicker {
    color: #86868b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.mega-menu-title {
    color: #1d1d1f;
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.mega-menu-link {
    color: #424245;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0.55rem;
    transition: color 0.2s ease;
}

.mega-menu-link:hover {
    color: #0071e3;
}

.mega-menu-column:first-child .mega-menu-link {
    color: #1d1d1f;
    font-size: 17px;
    font-weight: 700;
}

.mega-menu-column:first-child .mega-menu-link:hover {
    color: #0071e3;
}

.bb-primary-button {
    align-items: center;
    background: #0071e3;
    border: 0;
    border-radius: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), 0 10px 24px rgba(0, 113, 227, 0.18);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.1s ease, box-shadow 0.1s ease, transform 0.1s ease;
}

.bb-primary-button:hover {
    background: #0077ed;
    box-shadow: 0 18px 42px rgba(0, 113, 227, 0.22);
    color: #ffffff;
}

.bb-primary-button:active {
    transform: scale(0.98);
}

.bb-primary-button--md {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.bb-primary-button--lg {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.bb-primary-button--xl {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.bb-primary-button--full {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    width: 100%;
}

@media (max-width: 767px) {
    .mega-menu {
        display: none;
    }
}
