/* Styles for support.html */

:root { --max-w: 720px; }

nav { position: sticky; }

main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 120px;
}

/* ── Page header ── */
.page-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 16px;
}
.page-h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 64px;
  line-height: 1.55;
}

/* ── Contact card ── */
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 64px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.contact-body { flex: 1; }
.contact-h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 18px;
  border: 1.5px solid rgba(0,122,255,0.3);
  border-radius: 980px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.contact-email:hover { background: rgba(0,122,255,0.1); border-color: rgba(0,122,255,0.6); }

/* ── FAQ ── */
.faq-section-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }

details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.18s ease;
}
details[open] { border-color: rgba(255,255,255,0.14); }
details + details { margin-top: 2px; }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}
summary::-webkit-details-marker { display: none; }

.summary-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-secondary);
  transition: transform 0.22s ease, background 0.18s ease;
}
details[open] .summary-chevron {
  transform: rotate(180deg);
  background: rgba(0,122,255,0.15);
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 28px 0 0; }
.footer-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 28px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links button {
  font-size: 13px;
  font-family: var(--font);
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s ease;
}
.footer-legal-links button:hover { color: var(--text-primary); }
.footer-legal-links button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
