/* ==========================================================================
   NZVPN Design System · help.css
   Help center page specific styles
   ========================================================================== */

/* ---------- Help Hero ---------- */
.help-hero {
  background-image: linear-gradient(180deg, var(--mist) 0%, var(--bg) 100%);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 320px;
  padding-top: 56px;
  padding-bottom: 24px;
  text-align: center;
}

.help-hero .eyebrow {
  margin-bottom: 12px;
}

.help-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin-top: 8px;
}

.help-hero .lead {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
}

.help-hero .help-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Help Category Section ---------- */
.help-cat {
  margin-top: 56px;
}

.help-cat:first-of-type {
  margin-top: 40px;
}

.help-cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.help-cat-head .cat-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  background: var(--tint2);
  border: 1px solid var(--tint);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.help-cat-head h2 {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.help-cat-head .cat-desc {
  margin-left: auto;
  font-size: 13px;
  color: var(--faint);
  white-space: nowrap;
}

/* ---------- Help Bottom CTA ---------- */
.help-more {
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--tint2) 0%, var(--bg) 60%);
  padding: 32px;
  text-align: center;
}

.help-more h2 {
  font-size: 22px;
  font-weight: 800;
}

.help-more p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.help-more .cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .help-hero {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .help-hero h1 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .help-cat-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .help-cat-head .cat-desc {
    margin-left: 0;
    width: 100%;
    white-space: normal;
  }
}