/* ===== D5: FAQ АККОРДЕОН — premium design ===== */
.faq {
  padding: 90px 0;
  background: white;
  position: relative;
}
.faq__header {
  text-align: center;
  margin-bottom: 52px;
}
.faq__header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.faq__header-badge svg {
  width: 14px; height: 14px; fill: var(--brand-teal);
}
.faq h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.faq__subtitle {
  color: #7A8A8F;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.faq__card {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  border: 1px solid #e8eef0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid #edf2f3;
}
.faq__item:last-child { border-bottom: none; }
.faq__item:hover {
  background: #FAFCFC;
}
.faq__item.active {
  background: var(--brand-teal-light);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--brand-teal); }
.faq__item.active .faq__question { color: var(--brand-teal); }
.faq__toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #b0c4c9;
  font-weight: 300;
  background: none;
  border: none;
  border-radius: 0;
}
.faq__item.active .faq__toggle {
  color: var(--brand-teal);
  transform: rotate(45deg);
}
.faq__answer {
  display: none;
}
.faq__item.active .faq__answer { display: block; }
.faq__answer-inner {
  padding: 0 28px 20px;
}
.faq__answer p {
  font-size: 14px;
  line-height: 1.75;
  color: #6B7B82;
}
.faq__answer a {
  color: var(--brand-teal);
  font-weight: 600;
  border-bottom: 1px dashed color-mix(in srgb, var(--brand-teal), transparent 60%);
  transition: border-color 0.2s;
}
.faq__answer a:hover { border-color: var(--brand-teal); text-decoration: none; }
