/* =========================================================
   Web Hosting — page-specific styles
   Builds on tokens defined in /assets/css/site.css
========================================================= */

/* -------- page-hero: simple page-top header (non-video) -------- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: var(--grad-brand);
  filter: blur(140px);
  opacity: 0.22;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

/* -------- FAQ accordion -------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item.is-open { border-color: var(--border-strong); background: var(--surface-strong); }
.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;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.faq-question .chev {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--teal);
  transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* -------- responsive -------- */
@media (max-width: 560px) {
  .page-hero { padding: 130px 0 60px; }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 18px 18px; }
}
