/* === FAQ === */

.faq {
  padding: 7rem 0;
  position: relative;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--faq-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(46, 134, 171, 0.25); }

.faq-question {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s;
}

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

.faq-toggle {
  font-size: 1.2rem;
  color: var(--blue-azure);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

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

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

.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}
