/* FAQ Section Layout */
.faq-section {
  padding: 60px 0;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
}

.faq-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Subtitle Header */
.faq-section .subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.faq-section .subtitle__badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 16px;
}

.faq-section .subtitle-h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 auto;
}

.faq-section .max-w-600 {
  max-width: 650px;
}

/* FAQ List & Cards */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(18, 47, 49, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease;
}

.faq__item:hover {
  border-color: rgba(204, 255, 0, 0.25);
}

.faq__item.is-open {
  border-color: rgba(204, 255, 0, 0.4);
  background: rgba(18, 47, 49, 0.85);
}

/* Accordion Trigger Button */
.faq__question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
}

.faq__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(8, 26, 27, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccff00;
  transition: transform 0.3s ease, background-color 0.2s ease;
}

.faq__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  background: #ccff00;
  color: #081d1e;
}

/* Accordion Content Body */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq__answer-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

.faq__answer-text strong {
  color: #ffffff;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
  .faq__question {
    padding: 18px;
    font-size: 16px;
  }

  .faq__answer {
    padding: 0 18px;
  }

  .faq__item.is-open .faq__answer {
    padding: 0 18px 18px 18px;
  }

  .faq-section .subtitle-h2 {
    font-size: 22px;
  }
}
