/* ── Hero ── */
.nx-hero {
  background: #0f1e3a;
  padding: 72px 48px 56px;
  text-align: center;
}

.nx-hero h1 {
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.nx-hero-line {
  width: 40px;
  height: 3px;
  background: #e63946;
  margin: 0 auto;
  border-radius: 2px;
}

/* ── Main Content ── */
.nx-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px 48px;
  text-align: center;
}

.nx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef0f1;
  color: #c0202e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.nx-dot {
  width: 6px;
  height: 6px;
  background: #e63946;
  border-radius: 50%;
  display: inline-block;
}

.nx-lead {
  font-size: 17px;
  font-weight: 500;
  color: #0f1e3a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.nx-p {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.nx-divider {
  width: 32px;
  height: 2px;
  background: #e63946;
  margin: 36px auto;
  border-radius: 2px;
}

/* ── Stats Bar ── */
.nx-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0f1e3a;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}

.nx-stat {
  padding: 32px 20px;
  text-align: center;
}

.nx-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nx-stat-num {
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 2px;
}

.nx-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nx-nav {
    padding: 14px 24px;
  }

  .nx-hero h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .nx-hero {
    padding: 48px 24px 40px;
  }

  .nx-content {
    padding: 40px 24px 40px;
  }

  .nx-lead {
    font-size: 15px;
  }

  .nx-stats {
    grid-template-columns: 1fr;
  }

  .nx-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
