/* LogiPay — Navbar (по прототипу logipay.tilda.ws) */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  gap: 32px;
}

.navbar__link {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #122b4b;
  transition: color 0.2s;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--teal);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.navbar__cta:hover {
  background: var(--teal-light);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
