.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.header.scrolled {
  background: rgba(3, 10, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(142, 230, 0, 0.45);
  color: var(--green);
  background: rgba(142, 230, 0, 0.08);
  box-shadow: 0 0 24px rgba(142, 230, 0, 0.14);
}

.logo__text small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dbe8df;
  font-size: 14px;
}

.menu a {
  position: relative;
  transition: 0.2s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s;
}

.menu a:hover {
  color: var(--green);
}

.menu a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
/* =========================================================
   УБИРАЕМ ЗЕЛЁНУЮ ЛИНИЮ ПОД МЕНЮ
   ========================================================= */

.header {
  border-bottom: none !important;
  box-shadow: none !important;
  background: rgba(2, 6, 5, 0.96) !important;
}

.header::before,
.header::after {
  display: none !important;
  content: none !important;