.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
  width: 100%;
  background: #fff;
}

.navbar-inner {
  width: min(100% - 48px, 1560px);
  margin: 0 auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 54px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-left {
  justify-content: flex-end;
}

.nav-menu-right {
  justify-content: flex-start;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #171927;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-phone:hover,
.has-dropdown:hover > .nav-link {
  color: #2f5597;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  width: 122px;
  height: auto;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  min-width: 330px;
  list-style: none;
  margin: 0;
  padding: 22px 0;
  background: #fff;
  border: 1px solid #e5eaf0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d7c92;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu li a:hover {
  color: #2f5597;
  background: #f8fafc;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  background: #2f5597;
  border: 2px solid #2f5597;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.quote-button:hover {
  background: #fff;
  color: #2f5597;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: #171927;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 1180px) {
  .navbar-inner {
    width: min(100% - 32px, 100%);
    min-height: 78px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    column-gap: 0;
  }

  .navbar-logo {
    justify-content: flex-start;
    padding: 10px 0 14px;
  }

  .navbar-logo img {
    width: 112px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 0;
    border-top: 1px solid #e5eaf0;
  }

  .navbar-inner.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu-left,
  .nav-menu-right {
    justify-content: flex-start;
  }

  .nav-link,
  .nav-phone {
    min-height: auto;
    width: 100%;
    padding: 15px 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    padding: 0 0 8px 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .dropdown-menu li a {
    padding: 9px 0;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
    color: #6d7c92;
  }

  .phone-item {
    margin-top: 8px;
  }

  .quote-button {
    width: fit-content;
    min-height: 46px;
    margin-top: 10px;
    padding: 0 28px;
  }

  .mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
    .navbar-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-menu-left {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav-menu-right {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .navbar-logo,
  .mobile-menu-toggle {
  align-self: center;
}

.nav-menu-left {
  padding-top: 8px;
}

}