:root {
  --nh-dark: #0f172a;
  --nh-navy: #111827;
  --nh-blue: #1d4ed8;
  --nh-blue-soft: #2563eb;
  --nh-gold: #c9a45c;
  --nh-bg: #f8fafc;
  --nh-white: #ffffff;
  --nh-text: #111827;
  --nh-muted: #64748b;
  --nh-border: #e5e7eb;
  --nh-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --nh-radius: 22px;
}

* {
  box-sizing: border-box;
}

body.nh-bank-body {
  margin: 0;
  background: var(--nh-bg);
  color: var(--nh-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nh-bank-top {
  background: var(--nh-dark);
  color: rgba(255,255,255,.78);
  padding: 12px 24px;
  font-size: 13px;
}

.nh-container,
.nh-nav-inner,
.nh-footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nh-bank-top .nh-container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.nh-nav {
  background: white;
  border-bottom: 1px solid var(--nh-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.nh-brand {
  color: var(--nh-dark);
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.035em;
}

.nh-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.nh-links a {
  color: #334155;
  text-decoration: none;
}

.nh-links a:hover {
  color: var(--nh-blue);
}

.nh-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(37,99,235,.13), transparent 32%),
    linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.nh-kicker {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.nh-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
}

.nh-hero p {
  max-width: 860px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.65;
}

.nh-section {
  padding: 68px 0;
}

.nh-section.white {
  background: white;
}

.nh-section h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.nh-lead {
  max-width: 900px;
  color: var(--nh-muted);
  font-size: 17px;
  line-height: 1.72;
}

.nh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.nh-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.nh-card {
  padding: 24px;
  border-radius: var(--nh-radius);
  background: white;
  border: 1px solid var(--nh-border);
  box-shadow: var(--nh-shadow);
}

.white .nh-card {
  background: #f8fafc;
}

.nh-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.nh-card p,
.nh-card li {
  color: var(--nh-muted);
  line-height: 1.65;
}

.nh-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.nh-table {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--nh-shadow);
}

.nh-table th,
.nh-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--nh-border);
  text-align: left;
  vertical-align: top;
}

.nh-table th {
  width: 260px;
  background: #f1f5f9;
  color: #334155;
}

.nh-policy-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.nh-policy-item {
  padding: 22px;
  background: white;
  border: 1px solid var(--nh-border);
  border-radius: 18px;
  box-shadow: var(--nh-shadow);
}

.nh-policy-item h3 {
  margin: 0 0 8px;
}

.nh-policy-item p {
  margin: 0;
  color: var(--nh-muted);
  line-height: 1.7;
}

.nh-alert {
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  line-height: 1.6;
}

.nh-home-corporate-block {
  width: min(1160px, calc(100% - 40px));
  margin: 44px auto;
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--nh-border);
  box-shadow: var(--nh-shadow);
  font-family: Inter, system-ui, sans-serif;
}

.nh-home-corporate-block h2 {
  margin: 0 0 10px;
  color: var(--nh-dark);
  font-size: 24px;
}

.nh-home-corporate-block p {
  color: var(--nh-muted);
  line-height: 1.65;
}

.nh-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.nh-home-links a {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--nh-blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nh-footer {
  background: var(--nh-dark);
  color: rgba(255,255,255,.74);
  padding: 44px 0;
}

.nh-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 28px;
}

.nh-footer h3 {
  margin: 0 0 12px;
  color: white;
}

.nh-footer p,
.nh-footer a {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  text-decoration: none;
}

.nh-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nh-grid,
  .nh-grid.two,
  .nh-footer-grid {
    grid-template-columns: 1fr;
  }

  .nh-table th,
  .nh-table td {
    display: block;
    width: 100%;
  }
}
