      .alfa-ghost-header,
  .alfa-ghost-header * {
    box-sizing: border-box;
  }

  .alfa-ghost-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
  }

  .alfa-ghost-header__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 18px 26px 0;
    min-height: 110px;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: start;
    position: relative;
  }

  .alfa-ghost-header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 14px;
    position: relative;
    z-index: 3;
    text-decoration: none;
  }

  .alfa-ghost-header__logo img {
    width: 150px;
    max-width: 100%;
    display: block;
  }

  .alfa-ghost-header__nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  .alfa-ghost-header__balance {
    width: 100%;
    height: 1px;
  }

  .alfa-ghost-menu {
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
  }

  .alfa-ghost-menu__item {
    position: relative;
  }

  .alfa-ghost-menu__item > a {
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    padding: 10px 0;
  }

  .alfa-ghost-menu__item > a span {
    display: block;
    line-height: 1;
  }

  .alfa-ghost-menu__item > a svg {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    display: block;
    transform: translateY(1px);
  }

  .alfa-ghost-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .alfa-ghost-menu__item:hover > .alfa-ghost-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .alfa-ghost-submenu--mega {
    width: 760px;
    background: #fff;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
  }

  .alfa-ghost-submenu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .alfa-ghost-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #f4f5f7;
    border-radius: 20px;
    padding: 18px 16px;
    min-height: 140px;
    transition: transform .2s ease, background .2s ease;
  }

  .alfa-ghost-card:hover {
    transform: translateY(-3px);
    background: #eef1f4;
  }

  .alfa-ghost-card strong {
    display: block;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #1c1c1c;
  }

  .alfa-ghost-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #666;
  }

  .alfa-ghost-submenu--simple {
    min-width: 280px;
    background: #fff;
    border-radius: 24px;
    padding: 12px 10px;
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
  }

  .alfa-ghost-submenu--simple a {
    display: block;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .alfa-ghost-submenu--simple a:hover {
    background: #f4f5f7;
  }

  .alfa-ghost-header__toggle {
    display: none;
    position: absolute;
    top: 22px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 20;
  }

  .alfa-ghost-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 8px;
    background: #fff;
  }

  @media (max-width: 1200px) {
    .alfa-ghost-header__inner {
      grid-template-columns: 180px 1fr 180px;
    }

    .alfa-ghost-menu {
      gap: 24px;
    }

    .alfa-ghost-menu__item > a {
      font-size: 13px;
    }

    .alfa-ghost-submenu--mega {
      width: 650px;
    }
  }

  @media (max-width: 991px) {
    .alfa-ghost-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      padding: 16px 16px 0;
    }

    .alfa-ghost-header__logo {
      padding-top: 0;
    }

    .alfa-ghost-header__logo img {
      width: 122px;
    }

    .alfa-ghost-header__balance {
      display: none;
    }

    .alfa-ghost-header__toggle {
      display: block;
    }

    .alfa-ghost-header__nav {
      display: none;
      position: absolute;
      top: 76px;
      left: 16px;
      right: 16px;
      z-index: 15;
    }

    .alfa-ghost-header__nav.is-active {
      display: block;
    }

    .alfa-ghost-menu {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      padding: 14px;
      margin: 0;
      border-radius: 22px;
      background: rgba(8, 27, 48, .96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .alfa-ghost-menu__item {
      width: 100%;
    }

    .alfa-ghost-menu__item > a {
      width: 100%;
      justify-content: space-between;
      padding: 14px 6px;
    }

    .alfa-ghost-submenu {
      position: static;
      top: auto;
      left: auto;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      display: none;
      transform: none !important;
      margin-top: 6px;
    }

    .alfa-ghost-menu__item:hover > .alfa-ghost-submenu {
      transform: none !important;
    }

    .alfa-ghost-menu__item.is-open > .alfa-ghost-submenu {
      display: block;
    }

    .alfa-ghost-submenu--mega,
    .alfa-ghost-submenu--simple {
      width: 100%;
      min-width: 100%;
      border-radius: 18px;
      box-shadow: none;
      padding: 12px;
    }

    .alfa-ghost-submenu__grid {
      grid-template-columns: 1fr;
    }

    .alfa-ghost-card {
      min-height: auto;
    }
  }

@media (max-width: 991px) {
  .alfa-ghost-menu__item:hover > .alfa-ghost-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
  }

  .alfa-ghost-submenu--mega,
  .alfa-ghost-submenu--simple {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

  .alfa-ghost-card {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

  .alfa-ghost-card strong,
  .alfa-ghost-card p,
  .alfa-ghost-submenu--simple a {
    color: #fff;
  }
}