/* =========================================================
   FORTIVEST CAPITAL - AUTH PAGE SITE NAVIGATION BAR
   Matches the marketing site header (Deep Navy + Teal + Green)
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e6edf0;
    box-shadow: 0 6px 18px rgba(7, 26, 43, .06);
}

.site-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 8px 12px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #071A2B;
    text-decoration: none;
    border-radius: 8px;
    transition: color .25s ease, background .25s ease;
}

.site-nav a:hover,
.site-nav a.current {
    color: #087E8B;
    background: rgba(8, 126, 139, .08);
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, filter .25s ease;
}

.site-btn-ghost {
    color: #071A2B;
    border-color: #D9E2E8;
    background: #ffffff;
}

.site-btn-ghost:hover {
    color: #087E8B;
    border-color: #087E8B;
}

.site-btn-fill {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(90deg, #39D353 0%, #20BF55 50%, #087E8B 100%);
    box-shadow: 0 6px 18px rgba(32, 191, 85, .35);
}

.site-btn-fill:hover {
    filter: brightness(1.06);
    color: #ffffff;
}

.site-btn.current,
.site-btn-ghost.current,
.site-btn-fill.current {
    color: #ffffff !important;
    border-color: transparent !important;
    background: linear-gradient(90deg, #39D353 0%, #20BF55 50%, #087E8B 100%) !important;
    box-shadow: 0 6px 18px rgba(32, 191, 85, .4) !important;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #D9E2E8;
    border-radius: 8px;
    background: #ffffff;
    color: #071A2B;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .site-header-inner {
        padding: 10px 16px;
    }

    .site-nav {
        display: none;
    }

    .site-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
        padding: 10px 4px 14px;
    }

    .site-nav.open a {
        text-align: left;
        padding: 10px 12px;
    }

    .site-nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 575.98px) {
    .site-btn {
        padding: 9px 14px;
        font-size: 13px;
    }
}