body.nl-lock-scroll {
  overflow: hidden;
}

.nl-nav-shell {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.nl-nav-inner,
.nl-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nl-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nl-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.nl-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.nl-brand-text {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
}

.nl-brand-title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.nl-brand-subtitle {
  font-size: 12px;
  line-height: 1.2;
  color: #64748b;
  margin-top: 3px;
}

.nl-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.nl-mobile-menu-label {
  line-height: 1;
}

.nl-mobile-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.nl-mobile-menu-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nl-nav-shell.is-mobile-open .nl-mobile-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nl-nav-shell.is-mobile-open .nl-mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.nl-nav-shell.is-mobile-open .nl-mobile-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nl-top-nav {
  display: block;
  flex: 1;
}

.nl-desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
}

.nl-mobile-nav {
  display: none;
}

.nl-nav-item,
.nl-desktop-nav > .nl-nav-link {
  position: relative;
}

.nl-nav-entry {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nl-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  border-bottom: 3px solid transparent;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
  white-space: nowrap;
}

.nl-nav-link:hover,
.nl-nav-item:hover > .nl-nav-entry > .nl-nav-link,
.nl-nav-item:focus-within > .nl-nav-entry > .nl-nav-link {
  color: #0f172a;
}

.nl-nav-link.is-active,
.nl-nav-item.is-active > .nl-nav-entry > .nl-nav-link {
  color: #0f172a;
  border-bottom-color: #2563eb;
}

.nl-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  width: 28px;
  margin-right: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

.nl-nav-toggle:hover,
.nl-nav-item:hover > .nl-nav-entry > .nl-nav-toggle,
.nl-nav-item:focus-within > .nl-nav-entry > .nl-nav-toggle,
.nl-nav-item.is-open > .nl-nav-entry > .nl-nav-toggle {
  color: #0f172a;
}

.nl-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .18s ease;
}

.nl-nav-item.is-open .nl-caret,
.nl-nav-item:hover .nl-caret,
.nl-nav-item:focus-within .nl-caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

.nl-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 700px;
  max-width: min(920px, calc(100vw - 40px));
  padding: 18px 20px;
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  display: none;
}

.nl-nav-item.has-dropdown:hover > .nl-dropdown,
.nl-nav-item.has-dropdown:focus-within > .nl-dropdown,
.nl-nav-item.has-dropdown.is-open > .nl-dropdown {
  display: block;
}

.nl-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 20px;
}

.nl-dropdown-group {
  min-width: 0;
}

.nl-dropdown-heading {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.nl-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.nl-dropdown-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}

.nl-dropdown-link:hover {
  background: #f8fafc;
  color: #0f172a;
}

.nl-dropdown-link.is-current {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

.nl-crumb-shell {
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.nl-subnav-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nl-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

.nl-breadcrumbs a {
  color: #475569;
  text-decoration: none;
}

.nl-breadcrumbs a:hover {
  color: #0f172a;
}

.nl-breadcrumb-sep {
  color: #94a3b8;
}

@media (max-width: 980px) {
  .nl-nav-inner {
    min-height: 68px;
    gap: 14px;
  }

  .nl-brand-title {
    font-size: 13px;
  }

  .nl-brand-subtitle {
    display: none;
  }

  .nl-mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nl-top-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    z-index: 95;
  }

  .nl-nav-shell.is-mobile-open .nl-top-nav {
    display: block;
  }

  .nl-desktop-nav {
    display: none;
  }

  .nl-mobile-nav {
    display: block;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    max-height: min(76vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nl-mobile-panel {
    display: none;
  }

  .nl-mobile-panel.is-active {
    display: block;
  }

  .nl-mobile-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
  }

  .nl-mobile-panel-header-root {
    justify-content: flex-start;
  }

  .nl-mobile-panel-title-wrap {
    min-width: 0;
  }

  .nl-mobile-panel-kicker {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
  }

  .nl-mobile-panel-title {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
  }

  .nl-mobile-panel-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nl-mobile-back-icon,
  .nl-mobile-chevron {
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .nl-mobile-back-icon {
    transform: rotate(-135deg);
  }

  .nl-mobile-chevron {
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .nl-mobile-panel-body {
    background: #ffffff;
  }

  .nl-mobile-root-list {
    padding-bottom: 6px;
  }

  .nl-mobile-root-link,
  .nl-mobile-submenu-home,
  .nl-mobile-submenu-link,
  .nl-mobile-root-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
  }

  .nl-mobile-root-action {
    cursor: pointer;
  }

  .nl-mobile-root-link.is-active,
  .nl-mobile-root-action.is-active,
  .nl-mobile-submenu-home.is-current,
  .nl-mobile-submenu-link.is-current {
    color: #1d4ed8;
    background: #eff6ff;
  }

  .nl-mobile-panel-group {
    padding: 14px 0 8px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
  }

  .nl-mobile-panel-heading {
    padding: 0 20px 10px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
  }

  .nl-mobile-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nl-mobile-submenu-link {
    background: #f8fafc;
    font-weight: 600;
  }

  .nl-mobile-submenu-home {
    background: #ffffff;
  }

  .nl-crumb-shell {
    display: none;
  }
}

.nl-footer-shell {
  margin-top: 0;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.nl-footer-inner,
.nl-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nl-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 32px;
}

.nl-footer-brand-block {
  min-width: 0;
}

.nl-footer-brand {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.nl-footer-brand:hover {
  color: #1d4ed8;
}

.nl-footer-copy {
  margin: 14px 0 0;
  max-width: 720px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.nl-footer-note {
  margin-top: 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.nl-footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.nl-footer-column {
  min-width: 0;
}

.nl-footer-heading {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.nl-footer-link {
  display: block;
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 0;
}

.nl-footer-link:hover {
  color: #1d4ed8;
}

.nl-footer-bottom {
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.nl-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nl-footer-small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .nl-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .nl-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nl-footer-inner,
  .nl-footer-bottom-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nl-footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nl-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
