.zero {
    background: none !important;
    border: none !important;
}
.navbar {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.navbar-brand { color: var(--brand) !important; }
.navbar-nav { gap: 0.5rem; }
.navbar-nav .nav-link {
  font-size: 0.93rem;
  color: #0b1220;
  transition: color .2s ease, border-color .2s ease;
  padding-bottom: 4px !important;
  border-bottom: 2px solid transparent;
}
.navbar-nav .nav-link:hover { color: var(--brand); border-color: var(--brand); }
.navbar-nav .nav-link.active { color: var(--brand); border-color: var(--brand); }

/* кнопка */
.btn-create {
  border: 1.3px solid var(--brand);
  color: var(--brand);
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
  background: #fff;
  transition: all .2s ease;
  font-size: 0.9rem;
  text-decoration: none;
}
.btn-create:hover { background: var(--brand); color: black; }
.custom-f {
    color: var(--brand) !important; 
}
/* dropdown */
.dropdown-menu.mega-menu {
  width: 900px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 2rem;
}
.feature-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: #111;
  padding: .45rem 0;
  border-radius: 8px;
  transition: background .2s ease;
}
.feature-link i {
  color: var(--brand);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-link:hover { background: #f6fffc; }
.logo {
 height: 28px;
}
.btn-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid #e0d0dc;
  background: #f5f1f4;
  color: #4a2b3e;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-create::before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #844369, #b46a95);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-right: 8px;
}
.btn-create:hover {
  background: #f0e3ec;
}

.nav-link.text-muted {
  font-weight: 600;
  color: #4a2b3e !important;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #e0d0dc;
  background: #f5f1f4;
  border-radius: 9999px;
  padding: 6px 14px 6px 10px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.nav-link.text-muted::before {
  content: "👤";
  margin-right: 8px;
  font-size: 15px;
}
.nav-link.text-muted:hover {
  background: #f0e3ec;
  transform: translateY(-1px);
}