.section-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.section-divider svg {
  margin: 0 24px;
  flex-shrink: 0;
  stroke: var(--gold);
}

.section-divider svg circle {
  fill: rgba(218, 165, 32, 0.15);
}

/* FAQ */
.faq {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
}

.faq .kicker {
  display: block;
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}

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

.faq-item:first-of-type {
  border-top: 1px solid var(--surface-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.25s;
}

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

.faq-icon {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2px;
  padding: 0 0 24px;
}
