.lead-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fdfdfd82;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid #c1c1c177;
  height: 96px;
  max-width: 100vw;
  width: 100%;
  max-height: 100vh;

  display: flex;
  align-items: center;
}

.lead-header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.lead-header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 24px;
  color: var(--80);
}

.lead-header__nav {
  display: flex;
  align-items: center;
}

.lead-header__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lead-header__item {
  color: var(--75);
}

.lead-header__item:hover {
  color: var(--black);
}

.lead-header__burger {
  display: none;
}

.lead-menu-burger {
  display: none;
}

.lead-menu-media__description-2 {
  display: none;
}

@media screen and (max-width: 900px) {
  .container {
    padding: 0 16px;
  }

  .lead-header {
    height: 62px;
  }

  .lead-header__nav {
    display: none;
  }

  .lead-header__logo-text {
    display: none;
  }

  .lead-header__button {
    display: none;
  }

  .lead-menu-burger {
    display: block;
  }

  .lead-menu-media {
    position: fixed;
    top: 24px;
    right: 16px;
    width: calc(100% - 30px);
    height: auto;
    background: var(--white);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    display: flex;
    flex-direction: column;
  }

  .lead-menu-media.open {
    transform: translateX(0);
  }

  .lead-menu-media__list {
    list-style: none;
    padding: 0;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .lead-menu-media__item {
    position: relative;
    padding-left: 16px;
  }

  .lead-menu-media__item::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--80);
    transition: width 0.3s ease;
  }

  .lead-menu-media__item:hover::after {
    width: calc(100% - 16px);
  }

  .lead-menu-media__item a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--75);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--stroke-light);
  }

  .lead-menu-media__item a:hover {
    color: var(--black);
  }

  .lead-menu-media__box {
    position: relative;
    margin-top: 40px;
    padding: 0px 32px;
  }

  .lead-menu-media__logo-text {
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
  }

  .lead-menu-media__svg {
    position: absolute;
    z-index: -5;
    margin-top: 13px;
    margin-left: -14px;
  }

  .lead-menu-media__button {
    margin-top: 48px;
    width: 100%;
  }

  .lead-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(8px);
    background: rgba(11, 11, 11, 0.6);
    z-index: 10;
    animation: fadeIn 0.4s forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .lead-burger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 30;
    position: relative;
    margin-top: 13px;
  }

  .lead-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: left;
  }

  .lead-burger.active {
    margin-top: 60px;
    margin-right: 10px;
  }

  .lead-burger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 29px;
  }

  .lead-burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .lead-burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 29px;
  }
}

@media screen and (max-width: 415px) {
  .lead-menu-media__svg {
    margin-top: 15px;
  }

  .lead-menu-media__box {
    padding: 0 10px;
  }

  .lead-menu-media__description {
    display: none;
  }

  .lead-menu-media__description-2 {
    display: inline;
    position: relative;
  }
}

.lead-overlay {
  display: none; /* По умолчанию скрыт */
  /* ваши старые стили */
}

.lead-overlay.active {
  display: block; /* Показываем, когда меню открыто */
}

/* Стили для активной ссылки */
.lead-header__item a.active {
  color: var(--black);
  font-weight: 700;
}
