/* ─── Page Header ─── */
.page-header {
  padding: 140px 0 72px;
  background: var(--neutral);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 12px; }

/* ─── FAQ Layout ─── */
.faq-section { padding: 80px 0 96px; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* ─── Accordion ─── */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--neutral-dark);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  gap: 20px;
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--secondary); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p, .faq-answer ol {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ol li { list-style: decimal; }
.faq-answer a { color: var(--secondary); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--secondary-dark); }

/* Wrap inner content for grid trick */
.faq-answer > div { overflow: hidden; }

/* ─── Sidebar ─── */
.faq-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-sidebar-card {
  background: var(--neutral);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--neutral-dark);
}

.faq-sidebar-card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.faq-sidebar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.faq-sidebar-card .btn { width: 100%; text-align: center; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
}
