/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background: var(--cream-light);
}

.faq-section .section-label {
  text-align: center;
  margin-bottom: 16px;
}

.faq-section h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--green-900);
  margin-bottom: 60px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(30, 43, 28, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(30, 43, 28, 0.08);
}

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

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

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green-900);
  transition: transform 0.3s var(--ease);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

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

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px 0;
  }
}
