/* ═══════════════════════════════════════════
   help.css — Help Center page styles
   ═══════════════════════════════════════════ */

.help-main {
  padding: 100px 0 60px;
  min-height: calc(100vh - 60px);
}

.help-hero {
  margin: 0 0 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.help-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.help-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 62ch;
}

.help-layout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 52px;
}

.help-faq {
  padding: 0;
}

.help-section-head {
  padding-bottom: 18px;
}

.help-section-head .eyebrow {
  margin-bottom: 6px;
}

.help-faq-title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.3;
}

.help-section-head p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.help-faq .faq-list {
  margin-top: 2px;
  gap: 0;
}

.help-faq .faq {
  border: none;
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px 0 12px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 0;
  border-top: 1px solid rgba(213, 222, 234, 0.5);
}

.help-faq .faq:first-child {
  border-top: 0;
  padding-top: 20px;
}

.help-faq .faq::before {
  content: var(--faq-num);
  width: 42px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(19, 105, 213, 0.08);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  grid-row: 1 / span 2;
}

.help-faq .faq h3 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.help-faq .faq p {
  margin: 0;
  padding: 7px 0 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.help-contact {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.help-contact h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.help-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 58ch;
}

.help-contact .btn {
  width: auto;
  min-width: 0;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .help-layout {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .help-main {
    padding: 72px 0 46px;
  }

  .help-layout {
    padding: 32px 20px;
  }

  .help-hero h1 {
    font-size: 1.4rem;
  }

  .help-faq {
    padding: 0;
  }

  .help-faq .faq p {
    padding-right: 0;
  }

  .help-faq .faq {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px 0 2px;
  }

  .help-faq .faq::before {
    width: 34px;
    height: 26px;
    border-radius: 7px;
    font-size: 0.7rem;
  }

  .help-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
