/* Business Email page — page-specific styles.
   Reuses design tokens defined in /assets/css/site.css :root. */

/* ---------- Page hero (lightweight page-top header, not the homepage video hero) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 84px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: var(--grad-brand);
  opacity: 0.16;
  filter: blur(120px);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-inner .eyebrow {
  justify-content: center;
}
.page-hero-inner h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.page-hero-inner .lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0 auto;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
}
.faq-question-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-question-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 22px;
}
.faq-answer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
