/* ─── FAQ accordion ─── */
.faq { background: var(--dark); }
.faq-inner { max-width: 860px; margin: 0 auto; }

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-inline-start: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] {
  border-inline-start-color: var(--yellow);
  background: var(--dark3);
}

/* Question row (native <summary>, no JS needed) */
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--yellow); }

/* +/× toggle marker — flips on open (flex respects RTL/LTR automatically) */
.faq-q::after {
  content: '+';
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--yellow);
  flex: none;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 24px 24px;
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faq-q { font-size: 1.05rem; padding: 18px; }
  .faq-a { padding: 0 18px 20px; }
}
