/* LogiPay — FAQ аккордеон (HTML+CSS, details/summary) */

.faq {
  padding: 80px 0;
  background: var(--white);
}

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

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  color: var(--teal);
}

.faq__answer {
  padding-bottom: 20px;
  overflow: hidden;
}

.faq__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-mid);
}
