/* FAQ (Step-8) */
.page-hero{
  padding: 28px 0 18px;
  /* background: linear-gradient(180deg, rgba(64,155,43,.12), rgba(255,255,255,0)); */
  border-bottom: 1px solid var(--border);
}
.page-hero-inner{
  display:flex; gap:16px; align-items:flex-end; justify-content:space-between;
  flex-wrap:wrap;
}
.page-title{margin:0; font-size: clamp(22px, 2.6vw, 34px); letter-spacing:-.02em}
.page-subtitle{margin:8px 0 0; color:var(--muted); max-width: 62ch}
.breadcrumb{display:flex; align-items:center; gap:8px; color:var(--muted); font-size:14px}
.breadcrumb .sep{opacity:.7}

.faq-toolbar{
  margin-top: 18px;
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.field{flex: 1 1 320px}
.input{
  width:100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  outline:none;
}
.input:focus{border-color: rgba(64,155,43,.55); box-shadow: 0 0 0 4px rgba(64,155,43,.12)}

.faq-chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
}
.chip.is-active{
  border-color: rgba(64,155,43,.45);
  background: rgba(64,155,43,.10);
  color: var(--primary-2);
}

.faq-grid{
  display:grid;
  grid-template-columns: 1.7fr .9fr .9fr;
  gap: 22px;
  align-items:start;
}
@media (max-width: 980px){
  .faq-grid{grid-template-columns: 1fr; }
}

.faq-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 8px 20px rgba(2,6,23,.04);
  overflow:hidden;
  margin-bottom: 12px;
}
.faq-q{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding: 16px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  cursor:pointer;
  font-weight:700;
}
.faq-icon{
  width: 12px; height: 12px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-left: 10px;
  flex: 0 0 auto;
}
.faq-item.is-open .faq-icon{transform: rotate(-135deg)}
.faq-a{
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a p{margin: 0}

.card{border:1px solid var(--border); border-radius: var(--radius); background:#fff; box-shadow: var(--shadow)}
.card-pad{padding: 18px}
.muted{color:var(--muted)}
.support-list{display:flex; flex-direction:column; gap:10px; margin-top:14px}
.support-link{
  display:flex; align-items:center; gap:10px;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.support-link:hover{border-color: rgba(64,155,43,.35)}
.dot{width:10px;height:10px;border-radius:999px;background: rgba(64,155,43,.35)}

.note{
  margin-top: 14px;
  border: 1px dashed rgba(64,155,43,.45);
  background: rgba(64,155,43,.07);
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--text);
}

.faq-empty .empty-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  color: var(--muted);
}

/* Screen-reader only */
.sr-only{
  position:absolute!important;
  width:1px!important;height:1px!important;
  padding:0!important;margin:-1px!important;
  overflow:hidden!important;clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;border:0!important;
}
