.nhc-wrap {
  --nhc-bg: #07070b;
  --nhc-bg-soft: #101018;
  --nhc-card: rgba(255,255,255,.055);
  --nhc-border: rgba(255,255,255,.12);
  --nhc-border-soft: rgba(255,255,255,.08);
  --nhc-text: #f6f3ff;
  --nhc-muted: #b8b2c9;
  --nhc-muted-2: #8d879d;
  --nhc-purple: #7b2cff;
  --nhc-magenta: #ff2aa3;
  --nhc-orange: #ff8a1f;
  --nhc-green: #29e69b;
  --nhc-red: #ff4d6d;
  --nhc-radius-lg: 28px;
  --nhc-radius-md: 20px;
  --nhc-shadow: 0 24px 80px rgba(0,0,0,.45);
  --nhc-max: 1180px;
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 100vh;
  color: var(--nhc-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(123,44,255,.28), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(255,42,163,.22), transparent 32%),
    radial-gradient(circle at 70% 85%, rgba(255,138,31,.16), transparent 36%),
    var(--nhc-bg);
  overflow: hidden;
  font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nhc-wrap *,
.nhc-wrap *::before,
.nhc-wrap *::after {
  box-sizing: border-box;
}

.nhc-wrap a {
  color: inherit;
  text-decoration: none;
}

.nhc-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 82%);
  z-index: -1;
}

.nhc-page {
  width: min(var(--nhc-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.nhc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 28px;
}

.nhc-hero-main,
.nhc-hero-panel,
.nhc-section,
.nhc-card,
.nhc-form-shell {
  position: relative;
  border: 1px solid var(--nhc-border);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
  box-shadow: var(--nhc-shadow);
  overflow: hidden;
}

.nhc-hero-main {
  min-height: 470px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--nhc-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nhc-hero-main::before,
.nhc-section::before,
.nhc-form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nhc-purple), var(--nhc-magenta), var(--nhc-orange));
}

.nhc-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.nhc-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nhc-magenta), var(--nhc-orange));
  box-shadow: 0 0 22px rgba(255,42,163,.75);
}

.nhc-wrap h1,
.nhc-wrap h2,
.nhc-wrap h3,
.nhc-wrap p {
  margin-top: 0;
}

.nhc-wrap h1 {
  max-width: 850px;
  margin: 28px 0 16px;
  font-size: clamp(2.55rem, 6.6vw, 5.85rem);
  line-height: .92;
  letter-spacing: -.085em;
  color: #fff;
}

.nhc-gradient-text {
  background: linear-gradient(90deg, #fff, #f6d8ff 35%, #ffd6b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nhc-lead {
  max-width: 720px;
  color: var(--nhc-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  margin-bottom: 26px;
}

.nhc-actions,
.nhc-card-actions,
.nhc-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nhc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  font-family: inherit;
  line-height: 1;
}

.nhc-btn:hover {
  transform: translateY(-1px);
}

.nhc-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--nhc-purple), var(--nhc-magenta) 52%, var(--nhc-orange));
  box-shadow: 0 16px 40px rgba(255,42,163,.2);
}

.nhc-btn-secondary {
  color: var(--nhc-text);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}

.nhc-btn-secondary:hover {
  background: rgba(255,255,255,.1);
}

.nhc-hero-panel {
  border-radius: var(--nhc-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 70% 0%, rgba(255,138,31,.22), transparent 40%);
}

.nhc-search-box {
  padding: 18px;
  border-radius: 24px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.1);
}

.nhc-search-label {
  display: block;
  color: var(--nhc-muted);
  font-size: .86rem;
  margin-bottom: 10px;
  font-weight: 650;
}

.nhc-search {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.07);
  min-height: 52px;
  border-radius: 16px;
  padding: 0 16px;
  font-family: inherit;
  font-size: .98rem;
}

.nhc-search::placeholder {
  color: rgba(255,255,255,.42);
}

.nhc-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.nhc-mini-link {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
  color: var(--nhc-muted);
  transition: .2s ease;
}

.nhc-mini-link:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nhc-mini-link strong {
  color: #fff;
  display: block;
  margin-bottom: 3px;
  font-size: .94rem;
}

.nhc-mini-link span span {
  font-size: .82rem;
  line-height: 1.38;
}

.nhc-mini-link i {
  font-style: normal;
  color: #fff;
  opacity: .72;
}

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

.nhc-stat {
  min-height: 90px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
}

.nhc-stat b {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.nhc-stat small {
  color: var(--nhc-muted);
  line-height: 1.35;
  display: block;
}

.nhc-section {
  border-radius: var(--nhc-radius-lg);
  padding: clamp(22px, 4vw, 34px);
  margin-top: 22px;
}

.nhc-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.nhc-section h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 8px;
  color: #fff;
}

.nhc-section p {
  color: var(--nhc-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.nhc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nhc-card {
  min-height: 280px;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nhc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.042));
}

.nhc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nhc-purple), var(--nhc-magenta), var(--nhc-orange));
  opacity: .9;
}

.nhc-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  margin-bottom: 18px;
}

.nhc-card h3 {
  font-size: 1.35rem;
  letter-spacing: -.035em;
  margin-bottom: 8px;
  color: #fff;
}

.nhc-card p {
  color: var(--nhc-muted);
  font-size: .94rem;
  line-height: 1.62;
  margin-bottom: 18px;
}

.nhc-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  color: var(--nhc-muted);
  font-size: .88rem;
}

.nhc-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.nhc-card li::before {
  content: "•";
  color: var(--nhc-orange);
  font-weight: 900;
}

.nhc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.nhc-no-margin {
  margin-bottom: 0;
}

.nhc-chip {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: var(--nhc-muted);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
  font-family: inherit;
}

.nhc-chip:hover,
.nhc-chip.is-active {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: linear-gradient(135deg, rgba(123,44,255,.28), rgba(255,42,163,.18));
}

.nhc-faq-list {
  display: grid;
  gap: 12px;
}

.nhc-faq {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
  overflow: hidden;
}

.nhc-faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 18px 20px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 800;
  letter-spacing: -.015em;
}

.nhc-faq button span:last-child {
  color: var(--nhc-orange);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.nhc-faq-content {
  display: none;
  padding: 0 20px 18px;
  color: var(--nhc-muted);
  line-height: 1.65;
  font-size: .96rem;
}

.nhc-faq-content p {
  margin-bottom: 12px;
}

.nhc-faq.is-open .nhc-faq-content {
  display: block;
}

.nhc-faq.is-hidden {
  display: none;
}

.nhc-two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: start;
}

.nhc-support-note {
  position: sticky;
  top: 20px;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: radial-gradient(circle at 100% 0%, rgba(255,138,31,.16), transparent 34%), rgba(0,0,0,.22);
}

.nhc-support-note h3 {
  font-size: 1.5rem;
  letter-spacing: -.04em;
  margin-bottom: 10px;
  color: #fff;
}

.nhc-support-note p {
  font-size: .95rem;
  line-height: 1.66;
  color: var(--nhc-muted);
  margin-bottom: 16px;
}

.nhc-support-note ol {
  color: var(--nhc-muted);
  padding-left: 20px;
  line-height: 1.68;
  margin: 0;
  font-size: .92rem;
}

.nhc-contact-box {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.nhc-contact-box p {
  margin: 0 0 8px;
}

.nhc-form-shell {
  border-radius: var(--nhc-radius-lg);
  padding: clamp(22px, 4vw, 30px);
  box-shadow: none;
}

.nhc-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.nhc-field {
  display: grid;
  gap: 8px;
}

.nhc-field-full {
  grid-column: 1 / -1;
}

.nhc-field label {
  font-size: .84rem;
  color: var(--nhc-muted);
  font-weight: 750;
}

.nhc-field input,
.nhc-field select,
.nhc-field textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  outline: none;
  background: rgba(255,255,255,.065);
  padding: 0 14px;
  font: inherit;
}

.nhc-field textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.nhc-field input::placeholder,
.nhc-field textarea::placeholder {
  color: rgba(255,255,255,.36);
}

.nhc-helper {
  display: block;
  color: var(--nhc-muted-2);
  font-size: .76rem;
  line-height: 1.45;
}

.nhc-form-actions {
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.nhc-form-actions small {
  color: var(--nhc-muted-2);
  line-height: 1.45;
  max-width: 520px;
}

.nhc-alert {
  margin-bottom: 18px;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(41,230,155,.09);
  border: 1px solid rgba(41,230,155,.22);
  color: #d9ffef;
  line-height: 1.5;
}

.nhc-alert-error {
  background: rgba(255,77,109,.1);
  border-color: rgba(255,77,109,.25);
  color: #ffe2e7;
}

.nhc-no-results {
  display: none;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--nhc-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.nhc-no-results.is-visible {
  display: block;
}

.nhc-footer {
  color: var(--nhc-muted-2);
  text-align: center;
  padding: 34px 12px 0;
  font-size: .86rem;
  line-height: 1.6;
}

.nhc-hp-field {
  position: absolute;
  left: -99999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .nhc-hero,
  .nhc-two-col {
    grid-template-columns: 1fr;
  }

  .nhc-hero-main,
  .nhc-hero-panel {
    min-height: auto;
  }

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

  .nhc-support-note {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .nhc-page {
    width: min(100% - 22px, var(--nhc-max));
    padding-top: 24px;
  }

  .nhc-grid,
  .nhc-form,
  .nhc-stats {
    grid-template-columns: 1fr;
  }

  .nhc-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nhc-wrap h1 {
    font-size: clamp(2.6rem, 15vw, 4.3rem);
  }

  .nhc-actions,
  .nhc-card-actions,
  .nhc-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nhc-btn {
    width: 100%;
  }
}
