/* ══════════════════════════════════════════════════════════════
   SUPPORT — help centre / FAQ page.
   Same quiet treatment as the legal pages: the static coral→lavender
   .legal-bg gradient behind a frosted .legal-card, the .nav pill, and
   the .faq accordion (faq.css). This file only adds the support-page
   chrome the legal/FAQ stylesheets don't cover: the email contact
   card and the "jump to a topic" link grid. Loaded after base.css,
   hero.css, legal.css, and faq.css.
   ══════════════════════════════════════════════════════════════ */

/* — Contact card (hero): a brighter frosted panel than the document
     card, mirroring .legal-callout but sized as a lead block. — */
.support-contact {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4),
              inset 0 -1px 1px rgba(0, 0, 0, 0.05);
  padding: 28px 28px 26px;
  margin: 8px 0 36px;
}
.support-contact h2 {
  margin-top: 0;
  margin-bottom: 8px;
}
.support-contact p {
  margin-bottom: 20px;
}
.support-contact .support-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  margin-bottom: 0;
}

/* — Email CTA: the homepage Liquid-Glass capsule (.glass-root from
     base.css). No custom fill — we only stop it inheriting the
     underlined .legal-card a treatment and keep the white label on
     hover. The frosted lavender capsule reads as a deliberate action
     against the coral→lavender card without fighting the background. — */
.legal-card a.support-email,
.legal-card a.support-email:hover {
  color: #ffffff;
  text-decoration: none;
}

/* — "Jump to a topic" grid: two columns of frosted link tiles that
     scroll to the matching FAQ group. — */
.support-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 8px;
}
.support-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.support-topic:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  text-decoration: none !important;
}
.support-topic .support-arrow {
  color: var(--peach);
  flex: none;
}

/* — Group heading above each FAQ cluster. scroll-margin clears the
     fixed nav pill on anchor jumps. — */
.support-group-title {
  scroll-margin-top: 96px;
  margin-top: 44px;
  margin-bottom: 14px;
}
.support-group-title:first-of-type { margin-top: 24px; }

/* — Tighten the shared .faq block when it lives inside the support
     card: it's already inside padding, so kill the section's own
     vertical padding and centred title. — */
.legal-card .faq {
  padding: 0;
}
.legal-card .faq-list {
  max-width: none;
  gap: 12px;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .support-topics { grid-template-columns: 1fr; }
  .support-contact { padding: 22px 20px; }
}
