/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 10rem 10rem;
}

.faq__inner {
  width: 100%;
  max-width: 148rem;      
  margin: 0 auto;
}

/* ============================================
   TITLE
   ============================================ */

.faq__title {
  font-size: 8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6rem;
  
  /* Точный градиент из других секций */
  background: linear-gradient(90deg, #FF6B2D 0%, #FF2D78 55%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
  width: max-content;
  max-width: 100%;
}

/* ============================================
   ACCORDION LIST
   ============================================ */

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Линия как на макете */
}

/* HEADER (Кнопка) */
.faq-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  background: transparent;
  border: none;
  padding: 4rem 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white, #FFFFFF);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ИКОНКА СТРЕЛКИ (Кружок) */
.faq-item__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); /* Фон круга из макета */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item__icon svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

/* CONTENT (Ответ) */
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__content-inner {
  padding-bottom: 4rem; /* Отступ текста от линии снизу */
}

.faq-item__content p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7); /* Серый цвет текста из других секций */
}

/* ============================================
   ACTIVE STATE (Открытый аккордеон)
   ============================================ */

/* При открытии переворачиваем стрелку вверх */
.faq-item.is-active .faq-item__icon {
  transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1000px) {
  .faq { padding: 8rem 4rem; }
  .faq__title { font-size: 5rem; margin-bottom: 4rem; }
  .faq-item__header { padding: 3rem 0; gap: 2rem; }
  .faq-item__title { font-size: 2.4rem; }
  .faq-item__content p { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .faq { padding: 6rem 2rem; }
  .faq__title { font-size: 4rem; }
  .faq-item__title { font-size: 2rem; }
  .faq-item__content p { font-size: 1.6rem; }
  .faq-item__icon { width: 3.2rem; height: 3.2rem; }
  .faq-item__icon svg { width: 1.6rem; height: 1.6rem; }
}