/* ============================================================
   SUPPORT PAGE — Pegboard support / FAQ styles
   ============================================================ */
.support-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 36px 100px;
}

.support-header {
  margin-bottom: 64px;
}

.support-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pb-amber);
  margin-bottom: 14px;
}

.support-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--pb-text);
  margin-bottom: 16px;
}

.support-sub {
  font-size: 1.05rem;
  color: var(--pb-text-2);
  line-height: 1.7;
  font-family: var(--font-body);
  max-width: 520px;
}

/* Quick links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 72px;
}

.ql-card {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
}

.ql-card:hover {
  border-color: rgba(245,166,35,0.22);
  background: var(--pb-surface-2);
  transform: translateY(-2px);
}

.ql-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--pb-amber-soft);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-amber);
}

.ql-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pb-text);
}

.ql-card p {
  font-size: 0.8125rem;
  color: var(--pb-text-2);
  line-height: 1.55;
  font-family: var(--font-body);
}

/* FAQ */
.faq-category {
  margin-bottom: 56px;
}

.faq-cat-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pb-amber);
  margin-bottom: 16px;
}

.faq-item {
  border: 1px solid var(--pb-border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--pb-surface);
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--pb-border-2); }
.faq-item.open { border-color: rgba(245,166,35,0.2); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pb-text);
  line-height: 1.5;
}

.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--pb-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pb-text-3);
  transition: all 0.2s;
}

.faq-item.open .faq-chevron {
  background: var(--pb-amber-soft);
  color: var(--pb-amber);
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--pb-text-2);
  line-height: 1.8;
  margin-bottom: 10px;
}

.faq-a p:last-child { margin-bottom: 0; }

.faq-a code {
  font-family: var(--font-mono);
  font-size: 0.82em;
  color: var(--pb-amber);
  background: var(--pb-amber-soft);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 5px;
  padding: 1px 6px;
}

.faq-a a {
  color: var(--pb-amber);
  text-decoration: none;
}

.faq-a a:hover { text-decoration: underline; }

/* Contact card */
.contact-card {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border-2);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pb-text);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--pb-text-2);
  line-height: 1.7;
  font-family: var(--font-body);
}

.contact-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.contact-response {
  font-size: 0.78rem;
  color: var(--pb-text-3);
  text-align: right;
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .quick-links { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card-actions { align-items: flex-start; }
  .support-wrap { padding: 100px 20px 80px; }
}
