/* Shared public-site shell: navigation, layout, contact actions, and footer */
:root {
    --mh-shell-primary: #5146c7;
    --mh-shell-primary-dark: #302879;
    --mh-shell-cyan: #23b5c4;
    --mh-shell-ink: #1c1933;
    --mh-shell-copy: #67657b;
    --mh-shell-line: #e8e7f1;
    --mh-shell-surface: #ffffff;
    --mh-shell-footer: #17142f;
}

html {
    scroll-padding-top: 105px;
}

body.mh-site-shell {
    min-height: 100vh;
    padding-top: 126px;
    background: #fbfbfe;
}

body.mh-site-shell.mh-nav-open {
    overflow: hidden;
}

.mh-site-main {
    min-height: 48vh;
}

.mh-skip-link {
    position: fixed;
    top: 12px;
    right: 18px;
    z-index: 1200;
    padding: 10px 17px;
    border-radius: 10px;
    background: #fff;
    color: var(--mh-shell-primary-dark);
    box-shadow: 0 12px 30px rgba(21, 17, 61, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.mh-skip-link:focus {
    color: var(--mh-shell-primary-dark);
    transform: translateY(0);
}

/* Header */
header.mh-site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    width: 100%;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: none;
}

.mh-topbar {
    height: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 0%, rgba(35, 181, 196, 0.26), transparent 30%),
        linear-gradient(100deg, #24205f 0%, #39318a 56%, #236f84 100%);
    color: #fff;
    transition: height 0.3s ease, opacity 0.25s ease;
}

.mh-site-header.is-scrolled .mh-topbar {
    height: 0;
    opacity: 0;
}

.mh-topbar-inner {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mh-topbar-promise,
.mh-topbar-links,
.mh-topbar-links a {
    display: flex;
    align-items: center;
}

.mh-topbar-promise {
    gap: 9px;
    white-space: nowrap;
}

.mh-topbar-promise > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #8ff0ed;
    font-size: 0.68rem;
}

.mh-topbar-promise strong {
    font-size: 0.74rem;
    font-weight: 600;
}

.mh-topbar-links {
    gap: 20px;
}

.mh-topbar-links a {
    gap: 7px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mh-topbar-links a:hover {
    color: #fff;
}

.mh-topbar-links i {
    color: #88e9eb;
    font-size: 0.64rem;
}

.mh-topbar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.mh-topbar-socials a {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mh-topbar-socials a:hover {
    border-color: rgba(143, 240, 237, 0.55);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.mh-topbar-socials i {
    color: inherit;
    font-size: 0.72rem;
}

.mh-navbar-shell {
    border-bottom: 1px solid rgba(81, 70, 199, 0.09);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 34px rgba(25, 20, 71, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.mh-site-header.is-scrolled .mh-navbar-shell {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 13px 38px rgba(25, 20, 71, 0.1);
}

header.mh-site-header .mh-navbar {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 28px;
    padding-top: 0;
    padding-bottom: 0;
}

.mh-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    color: var(--mh-shell-ink);
    text-decoration: none;
}

.mh-brand:hover {
    color: var(--mh-shell-ink);
}

.mh-brand-logo {
    display: block;
    width: 112px;
    max-width: 100%;
    height: 46px;
    object-fit: contain;
}

.mh-primary-nav {
    margin-inline: auto;
}

header.mh-site-header .mh-nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

header.mh-site-header .mh-nav-list > li {
    position: relative;
}

header.mh-site-header .mh-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 10px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #545168;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

header.mh-site-header .mh-nav-link::after {
    display: none;
}

header.mh-site-header .mh-nav-link:hover,
header.mh-site-header .mh-nav-link:focus-visible,
header.mh-site-header .mh-nav-link.is-active,
header.mh-site-header .mh-nav-dropdown.is-current > .mh-nav-link,
header.mh-site-header .mh-nav-dropdown.is-open > .mh-nav-link {
    background: #f0effd;
    color: var(--mh-shell-primary-dark);
}

header.mh-site-header .mh-nav-link.is-active::before,
header.mh-site-header .mh-nav-dropdown.is-current > .mh-nav-link::before {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 5px;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mh-shell-primary), var(--mh-shell-cyan));
}

.mh-dropdown-toggle i {
    font-size: 0.56rem;
    transition: transform 0.2s ease;
}

.mh-nav-dropdown.is-open .mh-dropdown-toggle i,
.mh-nav-dropdown:hover .mh-dropdown-toggle i,
.mh-nav-dropdown:focus-within .mh-dropdown-toggle i {
    transform: rotate(180deg);
}

.mh-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 50%;
    z-index: 20;
    width: 330px;
    padding: 15px;
    border: 1px solid var(--mh-shell-line);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 65px rgba(31, 26, 78, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translate(50%, 9px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.mh-dropdown-panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    height: 16px;
}

.mh-nav-dropdown:hover .mh-dropdown-panel,
.mh-nav-dropdown:focus-within .mh-dropdown-panel,
.mh-nav-dropdown.is-open .mh-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0);
}

.mh-dropdown-eyebrow {
    display: block;
    padding: 2px 7px 10px;
    color: #8a879a;
    font-size: 0.65rem;
    font-weight: 600;
}

header.mh-site-header .mh-dropdown-option {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 12px 10px;
    border-radius: 14px;
    color: var(--mh-shell-ink);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

header.mh-site-header .mh-dropdown-option::after {
    display: none;
}

header.mh-site-header .mh-dropdown-option:hover {
    background: #f7f6fd;
    color: var(--mh-shell-primary-dark);
    transform: translateX(-3px);
}

.mh-dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: #eeedff;
    color: var(--mh-shell-primary);
    font-size: 0.84rem;
}

.mh-dropdown-icon.is-cyan {
    background: #e8fafb;
    color: #138e9c;
}

.mh-dropdown-option > span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.mh-dropdown-option strong {
    font-size: 0.78rem;
    font-weight: 700;
}

.mh-dropdown-option small {
    color: #858294;
    font-size: 0.64rem;
}

.mh-dropdown-option > i {
    color: #a4a1b1;
    font-size: 0.63rem;
}

.mh-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.mh-header-guest-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mh-header-guest-actions.is-hidden {
    display: none;
}

.mh-header-login {
    padding: 10px 5px;
    color: var(--mh-shell-primary-dark);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
}

.mh-header-login:hover {
    color: var(--mh-shell-primary);
}

.mh-header-cta,
.mh-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 43px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(115deg, var(--mh-shell-primary-dark), var(--mh-shell-primary) 62%, #328fa5);
    color: #fff;
    box-shadow: 0 9px 22px rgba(63, 54, 157, 0.19);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-header-cta:hover,
.mh-nav-cta:hover {
    color: #fff;
    box-shadow: 0 13px 28px rgba(63, 54, 157, 0.27);
    transform: translateY(-2px);
}

.mh-user-menu {
    position: relative;
    display: none;
}

.mh-user-menu.is-visible {
    display: block;
}

.mh-user-menu-toggle {
    display: flex;
    min-width: 174px;
    min-height: 49px;
    align-items: center;
    gap: 10px;
    padding: 5px 7px 5px 11px;
    border: 1px solid rgba(81, 70, 199, 0.13);
    border-radius: 15px;
    background: #fff;
    color: var(--mh-shell-ink);
    box-shadow: 0 8px 22px rgba(35, 28, 89, 0.075);
    cursor: pointer;
    text-align: right;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mh-user-menu-toggle:hover,
.mh-user-menu-toggle:focus-visible,
.mh-user-menu.is-open .mh-user-menu-toggle {
    border-color: rgba(81, 70, 199, 0.3);
    box-shadow: 0 12px 28px rgba(35, 28, 89, 0.13);
    outline: none;
    transform: translateY(-1px);
}

.mh-user-avatar {
    display: inline-flex;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(145deg, #eeebff, #e3f7fa);
    color: var(--mh-shell-primary);
    font-size: 0.78rem;
}

.mh-user-avatar.is-large {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
    border-radius: 13px;
    font-size: 0.88rem;
}

.mh-user-copy {
    display: grid;
    min-width: 0;
    flex: 1 1 auto;
    gap: 2px;
}

.mh-user-copy strong {
    max-width: 92px;
    overflow: hidden;
    color: var(--mh-shell-ink);
    font-size: 0.7rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-user-copy small {
    color: #8b879a;
    font-size: 0.58rem;
}

.mh-user-chevron {
    color: #aaa6b6;
    font-size: 0.57rem;
    transition: transform 0.2s ease;
}

.mh-user-menu.is-open .mh-user-chevron {
    transform: rotate(180deg);
}

.mh-user-dropdown {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    z-index: 1085;
    width: 245px;
    padding: 9px;
    border: 1px solid rgba(81, 70, 199, 0.12);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(27, 21, 73, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(9px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.mh-user-menu.is-open .mh-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mh-user-dropdown::before {
    position: absolute;
    top: -6px;
    left: 23px;
    width: 11px;
    height: 11px;
    border-top: 1px solid rgba(81, 70, 199, 0.12);
    border-left: 1px solid rgba(81, 70, 199, 0.12);
    background: #fff;
    content: "";
    transform: rotate(45deg);
}

.mh-user-dropdown-heading {
    display: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    padding: 7px 8px 11px;
    border-bottom: 1px solid #efedf5;
}

.mh-user-dropdown-heading > span:last-child {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.mh-user-dropdown-heading strong {
    max-width: 150px;
    overflow: hidden;
    color: var(--mh-shell-ink);
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mh-user-dropdown-heading small {
    color: #8c8898;
    font-size: 0.6rem;
}

header.mh-site-header .mh-user-dropdown > a {
    display: flex;
    min-height: 43px;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    border-radius: 11px;
    color: #49445a;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

header.mh-site-header .mh-user-dropdown > a:hover {
    background: #f4f1ff;
    color: var(--mh-shell-primary-dark);
}

header.mh-site-header .mh-user-dropdown > a > i:last-child {
    margin-right: auto;
    color: #aaa6b6;
    font-size: 0.58rem;
}

.mh-user-action-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #eeebff;
    color: var(--mh-shell-primary);
}

header.mh-site-header .mh-user-dropdown > a.mh-user-logout {
    color: #b83e50;
}

header.mh-site-header .mh-user-dropdown > a.mh-user-logout:hover {
    background: #fff0f2;
    color: #a92f42;
}

.mh-user-logout .mh-user-action-icon {
    background: #fff0f2;
    color: #c34759;
}

.mh-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-right: auto;
    padding: 0 11px;
    border: 1px solid var(--mh-shell-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(37, 31, 89, 0.06);
    cursor: pointer;
}

.mh-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--mh-shell-primary-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mh-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mh-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.mh-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mh-mobile-cta-item {
    display: none;
}

.mh-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(18, 15, 46, 0.5);
    opacity: 0;
    visibility: hidden;
    cursor: default;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mh-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Floating contact */
.mh-quick-contact {
    position: fixed;
    left: 20px;
    bottom: 22px;
    z-index: 1025;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.mh-quick-action {
    display: inline-flex;
    height: 50px;
    align-items: center;
    gap: 8px;
    padding: 5px 7px 5px 15px;
    border: 1px solid rgba(30, 27, 65, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(25, 21, 63, 0.15);
    color: var(--mh-shell-ink);
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-quick-action:hover {
    color: var(--mh-shell-ink);
    box-shadow: 0 16px 34px rgba(25, 21, 63, 0.2);
    transform: translateY(-2px);
}

.mh-quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.mh-quick-whatsapp .mh-quick-icon { background: #e4f9eb; }
.mh-quick-telegram .mh-quick-icon { background: #e7f5fd; }

.mh-quick-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Footer */
footer.mh-site-footer {
    position: relative;
    padding: 68px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(35, 181, 196, 0.13), transparent 28%),
        radial-gradient(circle at 88% 70%, rgba(81, 70, 199, 0.19), transparent 32%),
        var(--mh-shell-footer);
    color: #fff;
}

.mh-footer-orb {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.mh-footer-orb-one {
    top: -145px;
    left: -120px;
    width: 330px;
    height: 330px;
}

.mh-footer-orb-two {
    right: -80px;
    bottom: 40px;
    width: 220px;
    height: 220px;
}

.mh-footer-container {
    position: relative;
    z-index: 1;
}

.mh-footer-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 62px;
    padding: 27px 31px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 23px;
    background:
        linear-gradient(110deg, rgba(81, 70, 199, 0.92), rgba(48, 40, 121, 0.94) 58%, rgba(28, 124, 145, 0.88));
    box-shadow: 0 24px 60px rgba(8, 6, 30, 0.24);
}

.mh-footer-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.11);
    color: #9af2ef;
    font-size: 1.25rem;
}

.mh-footer-cta-copy {
    display: grid;
    gap: 4px;
}

.mh-footer-cta-copy > span {
    color: #9af2ef;
    font-size: 0.7rem;
    font-weight: 700;
}

.mh-footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.mh-footer-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 11px 20px;
    border-radius: 13px;
    background: #fff;
    color: var(--mh-shell-primary-dark);
    box-shadow: 0 10px 25px rgba(14, 10, 48, 0.17);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-footer-cta > a:hover {
    color: var(--mh-shell-primary-dark);
    box-shadow: 0 14px 30px rgba(14, 10, 48, 0.25);
    transform: translateY(-2px);
}

.mh-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.65fr));
    gap: 42px;
    padding-bottom: 54px;
}

.mh-footer-brand-column {
    max-width: 390px;
}

.mh-footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.mh-footer-brand:hover {
    color: #fff;
}

.mh-footer-brand-logo {
    display: block;
    width: 125px;
    max-width: 100%;
    height: 52px;
    object-fit: contain;
}

.mh-footer-brand-column > p {
    margin: 0 0 22px;
    color: #aaa8c3;
    font-size: 0.76rem;
    line-height: 2;
}

.mh-footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mh-footer-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #d9d8e6;
    font-size: 0.64rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mh-footer-contact-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mh-footer-contact-links i {
    color: #67dce0;
}

.mh-footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
}

.mh-footer-socials-label {
    margin-left: 3px;
    color: #aaa8c3;
    font-size: 0.68rem;
    font-weight: 600;
}

.mh-footer-socials a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    color: #d9d8e6;
    font-size: 0.86rem;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mh-footer-socials a:hover {
    border-color: rgba(103, 220, 224, 0.32);
    background: rgba(103, 220, 224, 0.12);
    color: #fff;
    transform: translateY(-2px);
}

.mh-footer-column h3 {
    position: relative;
    margin: 7px 0 23px;
    padding-bottom: 13px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
}

.mh-footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 27px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mh-shell-primary), var(--mh-shell-cyan));
}

.mh-footer-column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mh-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #aaa8c3;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mh-footer-column a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #57536f;
    transition: background 0.2s ease;
}

.mh-footer-column a:hover {
    color: #fff;
    transform: translateX(-4px);
}

.mh-footer-column a:hover::before {
    background: var(--mh-shell-cyan);
}

.mh-footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mh-footer-bottom p {
    margin: 0;
    color: #89869f;
    font-size: 0.65rem;
}

.mh-footer-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mh-footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9c99b0;
    font-size: 0.63rem;
}

.mh-footer-badges i {
    color: #62d6da;
    font-size: 0.58rem;
}

@media (max-width: 1199.98px) {
    header.mh-site-header .mh-navbar {
        gap: 18px;
    }

    header.mh-site-header .mh-nav-list {
        gap: 2px;
    }

    header.mh-site-header .mh-nav-link {
        padding-inline: 9px;
        font-size: 0.72rem;
    }

    .mh-header-login {
        display: none;
    }

    .mh-topbar-location {
        display: none !important;
    }

    .mh-footer-grid {
        gap: 28px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 82px;
    }

    body.mh-site-shell {
        padding-top: 80px;
    }

    .mh-topbar {
        display: none;
    }

    .mh-navbar-shell {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    header.mh-site-header .mh-navbar {
        min-height: 80px;
    }

    .mh-nav-toggle {
        display: flex;
    }

    .mh-header-actions {
        display: none;
    }

    .mh-header-actions.has-user {
        display: flex;
        order: 3;
    }

    .mh-header-actions.has-user .mh-header-guest-actions {
        display: none;
    }

    .mh-user-menu-toggle {
        min-width: 160px;
        min-height: 46px;
    }

    .mh-user-dropdown {
        top: calc(100% + 9px);
    }

    .mh-primary-nav {
        position: fixed;
        top: 92px;
        right: 14px;
        bottom: auto;
        z-index: 1060;
        width: min(360px, calc(100vw - 28px));
        height: calc(100vh - 106px);
        height: calc(100dvh - 106px);
        margin: 0;
        padding: 19px;
        overflow-y: auto;
        border: 1px solid rgba(81, 70, 199, 0.11);
        border-radius: 23px;
        background: #fff;
        box-shadow: 0 28px 80px rgba(24, 19, 65, 0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateX(calc(100% + 28px));
        transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mh-primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    header.mh-site-header .mh-nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }

    header.mh-site-header .mh-nav-list > li {
        width: 100%;
    }

    header.mh-site-header .mh-nav-link {
        display: flex;
        width: 100%;
        min-height: 52px;
        justify-content: space-between;
        padding: 13px 14px;
        border-bottom: 0;
        border-radius: 12px;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    header.mh-site-header .mh-nav-link.is-active::before,
    header.mh-site-header .mh-nav-dropdown.is-current > .mh-nav-link::before {
        top: 50%;
        right: 5px;
        bottom: auto;
        width: 3px;
        height: 20px;
        transform: translateY(-50%);
    }

    .mh-dropdown-panel {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 8px;
        border: 0;
        border-radius: 14px;
        background: #f8f8fc;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .mh-dropdown-option strong {
        font-size: 0.84rem;
    }

    .mh-dropdown-option small {
        font-size: 0.7rem;
        line-height: 1.65;
    }

    .mh-nav-dropdown:hover .mh-dropdown-panel,
    .mh-nav-dropdown:focus-within .mh-dropdown-panel {
        transform: none;
    }

    .mh-nav-dropdown.is-open .mh-dropdown-panel {
        max-height: 230px;
        padding: 9px 8px;
        transform: none;
    }

    .mh-dropdown-panel::before,
    .mh-dropdown-eyebrow {
        display: none;
    }

    .mh-mobile-cta-item {
        display: block;
        padding-top: 10px;
    }

    header.mh-site-header .mh-nav-cta {
        width: 100%;
        min-height: 52px;
        font-size: 0.84rem;
    }

    header.mh-site-header .mh-nav-cta::after {
        display: none;
    }

    .mh-footer-grid {
        grid-template-columns: 1.25fr repeat(2, 0.75fr);
    }

    .mh-footer-column:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 767.98px) {
    .mh-brand-logo {
        width: 104px;
        height: 43px;
    }

    .mh-footer-cta {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 24px;
    }

    .mh-footer-cta > a {
        grid-column: 1 / -1;
        width: 100%;
    }

    .mh-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-footer-brand-column {
        grid-column: 1 / -1;
        max-width: 540px;
    }

    .mh-footer-column:last-child {
        grid-column: auto;
    }

    .mh-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }

    .mh-footer-badges {
        flex-wrap: wrap;
    }

    .mh-quick-contact {
        left: 13px;
        bottom: 14px;
    }

    .mh-quick-action {
        width: 48px;
        height: 48px;
        justify-content: center;
        padding: 5px;
        border-radius: 15px;
    }

    .mh-quick-label {
        display: none;
    }
}

@media (max-width: 575.98px) {
    header.mh-site-header .mh-navbar {
        gap: 10px;
    }

    .mh-header-actions.has-user {
        margin-right: 0;
    }

    .mh-user-menu-toggle {
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 3px;
        border-radius: 13px;
    }

    .mh-user-avatar {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .mh-user-copy,
    .mh-user-chevron {
        display: none;
    }

    .mh-user-dropdown-heading {
        display: flex;
    }

    .mh-user-dropdown {
        position: fixed;
        top: 74px;
        right: 14px;
        left: 14px;
        width: auto;
    }

    .mh-user-dropdown::before {
        display: none;
    }
}

@media (max-width: 479.98px) {
    footer.mh-site-footer {
        padding-top: 48px;
    }

    .mh-footer-cta {
        grid-template-columns: 1fr;
        margin-bottom: 48px;
        text-align: center;
    }

    .mh-footer-cta-icon {
        margin-inline: auto;
    }

    .mh-footer-grid {
        grid-template-columns: 1fr;
    }

    .mh-footer-brand-column,
    .mh-footer-column:last-child {
        grid-column: auto;
    }

    .mh-footer-contact-links {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mh-site-header *,
    .mh-site-footer *,
    .mh-nav-backdrop,
    .mh-quick-action,
    .mh-skip-link {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
