.shared-navbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.97) 0%, rgba(224, 242, 254, 0.95) 62%, rgba(186, 230, 253, 0.92) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.16);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.07);
}

.shared-navbar__container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shared-navbar__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.shared-navbar__brand img {
    width: 220px;
    height: auto;
    display: block;
}

.shared-navbar__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.shared-navbar__menu a {
    color: #0369a1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.shared-navbar__menu a:hover {
    color: #0284c7;
}

.shared-navbar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.22);
}

.shared-navbar__btn--ghost {
    background: #ffffff;
    color: #0284c7 !important;
    border: 1px solid #cfefff;
    box-shadow: none;
}

@media (max-width: 980px) {
    .shared-navbar__container {
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .shared-navbar__menu {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .shared-navbar__brand img {
        width: 190px;
    }

    .shared-navbar__menu {
        flex-direction: column;
        align-items: stretch;
    }

    .shared-navbar__btn {
        width: 100%;
    }
}
