/* =========================
   FAQ (donor-like tabs + accordion)
   ========================= */

.lr-faq{ padding-top: 0; }

.section--faq{
  margin: 74px 0;
}
@media (max-width: 900px){
  .section--faq{ margin: 46px 0; }
}

.section--title.lr-faq__title{
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.lr-faq__wrap{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px){
  .lr-faq__wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===== LEFT NAV ===== */
.s-nav{
  position: sticky;
  top: 110px;
}
@media (max-width: 980px){
  .s-nav{ position: relative; top: 0; }
}

.s-nav-toggle{
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--lr-line);
  background: #fff;
  text-decoration: none;
  color: var(--lr-text);
  font-weight: 700;
}
@media (max-width: 980px){
  .s-nav-toggle{ display: inline-flex; width: 100%; justify-content: space-between; }
}

.s-nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
@media (max-width: 980px){
  .s-nav ul{
    display: none;
    margin-top: 10px;
  }
  .s-nav.is-open ul{ display: grid; }
}

.s-nav-link{
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.02);
  color: var(--lr-text);
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.s-nav-link:hover{ transform: translateY(-1px); opacity: .9; }

.s-nav-link.active{
  background: #fff;
  border-color: var(--lr-line);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  font-weight: 800;
}

/* ===== RIGHT CONTENT ===== */
.s-tabs-content{
  background: #fff;
  border: 1px solid var(--lr-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
  padding: 10px 0;
}

/* ===== ACCORDION ===== */
.questions__item{
  border-top: 1px solid rgba(0,0,0,.06);
}
.questions__item:first-child{ border-top: 0; }

.questions__item-head{
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 12px;
  align-items: center;
  padding: 18px 18px;
  text-decoration: none;
  color: var(--lr-text);
}
.questions__item-title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.questions__item-drop{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.questions__item-drop svg{
  width: 22px;
  height: 22px;
}

/* rotate + to x when open */
.questions__item.is-open .questions__item-drop svg{
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.questions__item-body{
  padding: 0 18px 18px;
}
.questions__item-text{
  color: var(--lr-muted);
  line-height: 1.75;
  font-size: 15px;
}
.questions__item-text p{ margin: 0 0 10px; }
.questions__item-text p:last-child{ margin-bottom: 0; }

/* FAQ H1 — серый */
.section--faq .section--title{
  color: rgba(0,0,0,.55);
}