.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-panel {
  display: none;
}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 0 0 auto;
    border: 1px solid rgba(18, 23, 34, 0.12);
    border-radius: 12px;
    background: #fff;
    color: #121722;
    box-shadow: 0 8px 20px rgba(18, 23, 34, 0.055);
    cursor: pointer;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle::before,
  .mobile-menu-toggle::after {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .mobile-menu-toggle span {
    margin: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    background: rgba(10, 18, 32, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 91;
    width: min(312px, 84vw);
    display: flex;
    flex-direction: column;
    padding: 18px 18px 20px;
    background: #fff;
    box-shadow: -24px 0 64px rgba(12, 20, 34, 0.22);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 23, 34, 0.08);
  }

  .mobile-menu-head img {
    width: 136px;
    height: auto;
    display: block;
  }

  .mobile-menu-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(18, 23, 34, 0.055);
    color: #121722;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: grid;
    gap: 0;
    gap: 6px;
    border-top: 0;
  }

  .mobile-menu-links a {
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid rgba(18, 23, 34, 0.08);
    border-radius: 12px;
    background: #f8fafc;
    color: #121722;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.018em;
    font-weight: 720;
  }

  .mobile-menu-cta {
    margin-top: 12px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ff5b22;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 760;
    box-shadow: 0 14px 28px rgba(255, 91, 34, 0.2);
  }

  .mobile-menu-foot {
    margin-top: auto;
    padding-top: 18px;
    color: #69707d;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
  }

  .mobile-menu-social {
    margin-top: 12px;
    display: flex;
    gap: 10px;
  }

  .mobile-menu-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 23, 34, 0.09);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
  }

  .mobile-menu-social img {
    width: 18px;
    height: 18px;
    display: block;
  }
}
