/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--section-padding);
  background: transparent;
}

.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-list {
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 18px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
  box-shadow: 0 1px 8px rgb(0, 0, 0, 0.04);
  transition:
    background 0.2s,
    box-shadow 0.2s;
  text-align: left;
}

.faq-question:hover {
  box-shadow: 0 2px 12px rgb(0, 0, 0, 0.08);
}

.faq-item.active .faq-question {
  color: var(--primary-blue);
  background: #eef3ff;
}

.faq-toggle {
  font-size: 0;
  color: var(--primary-blue);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentcolor;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-toggle {
  background: var(--primary-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 28px 4px;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
}
