/* ── Netmap page — full section redesign ───────────────────── */

/* Hero (light, aligned with uslugi) */
.nm-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background: linear-gradient(165deg, var(--white) 0%, var(--surface) 55%, rgba(255, 138, 42, 0.07) 100%);
  color: var(--text-dark);
}

.nm-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 138, 42, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.nm-hero-inner { position: relative; z-index: 1; }

.nm-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.nm-hero h1 span { color: var(--orange); }

.nm-hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.nm-hero-reveal { opacity: 0; transform: translateY(22px); }

.nm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.nm-stat {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.nm-stat-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.nm-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.4;
}

.nm-anchor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nm-anchor-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.nm-anchor-chip:hover,
.nm-anchor-chip.is-active {
  border-color: rgba(255, 138, 42, 0.45);
  background: var(--orange-light);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 138, 42, 0.12);
}

.nm-anchor-chip svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Map section */
.nm-map-section {
  padding: 72px 0 56px;
  background: var(--white);
}

.nm-map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nm-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}

.nm-search-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.nm-search {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nm-search:focus {
  outline: none;
  border-color: rgba(255, 138, 42, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 138, 42, 0.12);
}

.nm-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  max-height: 240px;
  overflow-y: auto;
  z-index: 1200;
  display: none;
}

.nm-search-results.is-open { display: block; }

.nm-search-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.nm-search-item:hover,
.nm-search-item.is-active {
  background: var(--orange-light);
  color: var(--orange);
}

.nm-search-item-main {
  display: block;
  font-weight: 700;
  color: inherit;
  line-height: 1.35;
}

.nm-search-item-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.nm-search-item:hover .nm-search-item-sub,
.nm-search-item.is-active .nm-search-item-sub {
  color: rgba(255, 138, 42, 0.75);
}

.nm-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nm-layer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.nm-layer-btn .nm-layer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nm-layer-btn[data-layer="hq"] .nm-layer-dot { background: var(--orange); }
.nm-layer-btn[data-layer="node"] .nm-layer-dot { background: #10b981; }
.nm-layer-btn[data-layer="intl"] .nm-layer-dot { background: #8b5cf6; }
.nm-layer-btn[data-layer="proj"] .nm-layer-dot { background: #3b82f6; }

.nm-layer-btn.is-on {
  border-color: rgba(255, 138, 42, 0.35);
  background: var(--orange-light);
  color: var(--text-dark);
}

.nm-layer-btn:not(.is-on) { opacity: 0.55; }

.nm-map-frame {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  background: #eef1f5;
  transform-origin: center top;
}

.nm-map-frame.is-hidden-reveal {
  opacity: 0;
  transform: scale(0.98) translateY(24px);
}

#map {
  width: 100%;
  height: clamp(480px, 65vh, 680px);
  z-index: 1;
  filter: saturate(0.85) contrast(1.05);
}

.nm-map-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.nm-map-hint svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--orange);
}

/* Map markers */
.custom-marker { display: flex; align-items: center; justify-content: center; }

.marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  display: block;
  flex-shrink: 0;
}

.hq-dot {
  background: var(--orange);
  width: 22px;
  height: 22px;
  border: 3px solid var(--white);
  animation: nm-pulse-orange 2s infinite;
}

.node-dot {
  background: #10b981;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2), 0 0 8px rgba(16, 185, 129, 0.4);
}

.intl-dot {
  background: #8b5cf6;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.45);
}

.proj-dot {
  background: #3b82f6;
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  animation: nm-pulse-blue 2s infinite;
}

.marker-dot.is-dimmed { opacity: 0.2; transform: scale(0.7); }

.marker-dot.is-highlighted {
  transform: scale(1.35);
  box-shadow: 0 0 0 4px rgba(255, 138, 42, 0.35), 0 0 16px rgba(255, 138, 42, 0.5);
  z-index: 500 !important;
}

@keyframes nm-pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(255, 138, 42, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255, 138, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 138, 42, 0); }
}

@keyframes nm-pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Glass panels on map */
.nm-legend {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  width: 210px;
}

.nm-legend-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.nm-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nm-legend .marker-dot {
  animation: none;
  flex-shrink: 0;
}

.nm-legend .hq-dot {
  width: 17px;
  height: 17px;
  border-width: 2px;
}

.nm-legend .node-dot,
.nm-legend .intl-dot,
.nm-legend .proj-dot {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.nm-legend-line {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.nm-node-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  width: min(340px, calc(100% - 36px));
  transform: translateY(120%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.nm-node-card.is-active { transform: translateY(0); }

/* Exit district filter — on map */
.nm-filter-exit {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1002;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  max-width: calc(100% - 240px);
}

.nm-filter-exit.is-visible { display: inline-flex; }

.nm-filter-exit:hover {
  border-color: rgba(255, 138, 42, 0.4);
  box-shadow: 0 12px 32px rgba(255, 138, 42, 0.14);
  transform: translateX(-2px);
}

.nm-filter-exit > svg,
.nm-filter-exit > i,
.nm-filter-exit svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.nm-filter-exit-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.nm-filter-exit-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.2;
}

.nm-filter-exit-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nm-node-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.nm-node-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-light);
  border: 1px solid rgba(255, 138, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.nm-node-card-icon svg { width: 20px; height: 20px; }

.nm-node-card h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.nm-node-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.nm-node-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.nm-node-tag {
  font-size: 0.68rem;
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Key hubs strip */
.nm-hubs {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.nm-hubs-head { margin-bottom: 28px; }

.nm-hubs-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.nm-hub-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(155deg, #fff 0%, #f8f9fb 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-height: 96px;
  width: 100%;
}

.nm-hub-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 42, 0.35);
  box-shadow: 0 12px 32px rgba(255, 138, 42, 0.12);
}

.nm-hub-chip.is-hq .nm-hub-chip-icon {
  background: linear-gradient(145deg, var(--orange), #e6761a);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 138, 42, 0.28);
}

.nm-hub-chip.is-proj .nm-hub-chip-icon {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.28);
}

.nm-hub-chip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 138, 42, 0.15);
}

.nm-hub-chip-icon svg { width: 24px; height: 24px; }

.nm-hub-chip-body { min-width: 0; }

.nm-hub-chip strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.nm-hub-chip-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.nm-hub-chip-kind {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
}

.nm-hub-chip.is-hq .nm-hub-chip-kind {
  color: var(--orange);
  background: rgba(255, 138, 42, 0.1);
}

.nm-hub-chip.is-proj .nm-hub-chip-kind {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

/* District cards */
.nm-districts {
  padding: 80px 0;
  background: var(--white);
}

.nm-districts-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.nm-districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nm-district-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, #f8f9fb 58%, #f3f5f8 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 24px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nm-district-card.is-hidden-card {
  opacity: 0;
  transform: translateY(32px);
}

.nm-district-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 42, 0.3);
  box-shadow: 0 18px 44px rgba(255, 138, 42, 0.1);
}

.nm-district-card.is-active {
  border-color: rgba(255, 138, 42, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 138, 42, 0.15), 0 18px 44px rgba(255, 138, 42, 0.12);
}

.nm-district-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 42, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nm-district-card:hover .nm-district-card-line,
.nm-district-card.is-active .nm-district-card-line { transform: scaleX(1); }

.nm-district-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.nm-district-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-light);
  border: 1px solid rgba(255, 138, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.nm-district-icon svg { width: 20px; height: 20px; }

.nm-district-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255, 138, 42, 0.1);
  border: 1px solid rgba(255, 138, 42, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
}

.nm-district-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.nm-district-cities {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.nm-district-cities li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nm-district-cities li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

.nm-district-more {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.nm-district-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  cursor: pointer;
  margin-top: auto;
  transition: gap var(--transition);
}

.nm-district-btn svg { width: 14px; height: 14px; }

.nm-district-btn:hover { gap: 10px; }

/* International — inside districts grid */
.nm-district-card--intl {
  grid-column: span 2;
  background: linear-gradient(155deg, #ffffff 0%, #f8f7ff 52%, #f3f0ff 100%);
}

.nm-district-card--intl .nm-district-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.22);
  color: #7c3aed;
}

.nm-district-card--intl.is-active {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.12), 0 18px 44px rgba(139, 92, 246, 0.1);
}

.nm-district-card--intl .nm-district-card-line {
  background: linear-gradient(90deg, #8b5cf6, rgba(139, 92, 246, 0.15));
}

.nm-district-intl-lead {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}

.nm-district-intl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  flex: 1;
  align-content: flex-start;
}

.nm-district-intl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nm-district-intl-chip:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.12);
}

.nm-district-intl-code {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1.2;
}

/* CTA */
.nm-cta {
  padding: 88px 0;
  background: var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nm-cta::before {
  content: '';
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.nm-cta-inner { position: relative; z-index: 1; }

.nm-cta .eyebrow { color: rgba(255, 255, 255, 0.75); justify-content: center; margin-bottom: 16px; }
.nm-cta .eyebrow span { background: rgba(255, 255, 255, 0.35); }

.nm-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.nm-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.nm-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.nm-cta .btn-white {
  background: #fff;
  color: var(--orange);
  border: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nm-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.nm-cta .btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition);
}

.nm-cta .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .nm-districts-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-district-card--intl { grid-column: span 2; }
  .nm-hubs-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .nm-hubs-track::-webkit-scrollbar { height: 10px; }
  .nm-hubs-track::-webkit-scrollbar-thumb {
    background: rgba(255, 138, 42, 0.35);
    border-radius: 10px;
  }
  .nm-hub-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: min(300px, 82vw);
  }
}

@media (max-width: 767px) {
  .nm-stats { grid-template-columns: 1fr; }
  .nm-map-head { flex-direction: column; align-items: stretch; }
  .nm-search-wrap { max-width: none; }
  .nm-legend { width: 170px; padding: 14px; font-size: 0.72rem; }
  .nm-districts-grid { grid-template-columns: 1fr; }
  .nm-district-card--intl { grid-column: span 1; }
}

@media (max-width: 480px) {
  .nm-legend { display: none; }
  .nm-filter-exit { max-width: calc(100% - 36px); }
}
