/* ============================================
   LIMBIC FAQ - Gold Standard Styles
   ============================================ */
.limbic-faq {
  background: var(--faq-bg);
  padding: var(--faq-padding-top) 0 var(--faq-padding-bottom);
}

/* Header */
.limbic-faq .faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.limbic-faq .eyebrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 24px;
}

.limbic-faq .eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--faq-accent);
}

.limbic-faq .faq-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--faq-accent);
  margin: 0;
}

.limbic-faq .faq-heading {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--faq-text);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.limbic-faq .faq-subheading {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--faq-text);
  opacity: 0.7;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Wrapper */
.limbic-faq .faq-wrapper {
  margin: 0 auto;
}

/* Category */
.limbic-faq .faq-category {
  margin-top: 48px;
  margin-bottom: 24px;
}

.limbic-faq .faq-category:first-child {
  margin-top: 0;
}

.limbic-faq .category-title {
  font-family: var(--font-primary);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--faq-text);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--faq-text);
  letter-spacing: -0.01em;
}

/* FAQ Item */
.limbic-faq .faq-item {
  border: 1px solid var(--faq-border);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.limbic-faq .faq-item:hover {
  border-color: var(--faq-accent);
}

.limbic-faq .faq-item.is-open {
  border-color: var(--faq-text);
}

/* Question Button */
.limbic-faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: background 0.2s ease;
}

.limbic-faq .faq-question:hover {
  background: var(--faq-bg);
}

.limbic-faq .question-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--faq-text);
  line-height: 1.5;
}

/* Icon */
.limbic-faq .faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.limbic-faq .icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--faq-accent);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.limbic-faq .icon-horizontal {
  width: 16px;
  height: 2px;
}

.limbic-faq .icon-vertical {
  width: 2px;
  height: 16px;
}

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

.limbic-faq .faq-item.is-open .icon-line {
  background: var(--faq-text);
}

/* Answer */
.limbic-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.limbic-faq .faq-answer-content {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--faq-text);
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 768px) {
  .limbic-faq {
    padding: 60px 0;
  }
  
  .limbic-faq .faq-header {
    margin-bottom: 40px;
  }
  
  .limbic-faq .eyebrow-line {
    width: 25px;
  }
  
  .limbic-faq .faq-question {
    padding: 16px 20px;
  }
  
  .limbic-faq .faq-answer-content {
    padding: 0 20px 20px;
  }
}

