/*
  SSS (Yardım) — Kurumsal FAQ görünümü
  Amaç: Daha temiz, profesyonel ve sitenin genel diliyle uyumlu bir akordeon.
*/

.faq-shell{
  max-width: 1100px;
  margin: 0 auto 96px;
}

.faq-intro{
  background: linear-gradient(180deg, rgba(48,39,130,0.06), rgba(0,173,239,0.04));
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 18px;
}

.faq-intro-title{
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-900);
}

.faq-intro-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-intro-link{
  color: var(--brand-900);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(48,39,130,0.25);
}

.faq-intro-link:hover{
  border-bottom-color: rgba(48,39,130,0.55);
}

.faq-list{
  display: grid;
  gap: 14px;
}

.faq-item{
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(226,232,240,0.95);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.faq-item:hover{
  transform: translateY(-1px);
  border-color: rgba(48,39,130,0.25);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

/* Question button */
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
  color: #0f172a;
}

.faq-question:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(48,39,130,0.18);
}

/* Icon */
.faq-icon{
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--brand-900);
  background: rgba(48,39,130,0.08);
  border: 1px solid rgba(48,39,130,0.10);
}

/* Active state */
.faq-question.active{
  color: var(--brand-900);
}

.faq-item.open{
  border-color: rgba(48,39,130,0.28);
  box-shadow: 0 18px 52px rgba(48,39,130,0.10);
}

.faq-item.open .faq-icon{
  background: var(--brand-900);
  color: #fff;
  border-color: rgba(48,39,130,0.45);
}

/* Answer panel */
.faq-answer{
  display: none;
  border-top: 1px solid rgba(226,232,240,0.95);
  background: rgba(244,248,255,0.55);
}

.faq-item.open .faq-answer{
  display: block;
}

.faq-answer-inner{
  padding: 18px 18px 20px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #334155;
}

/* Subtle left accent (matches brand) */
.faq-item{
  position: relative;
}

.faq-item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.18s ease;
}

.faq-item.open::before{
  background: var(--brand-900);
}

@media (max-width: 768px){
  .faq-shell{ margin-bottom: 72px; }
  .faq-question{ font-size: 16.5px; padding: 16px 16px; }
  .faq-answer-inner{ padding: 16px 16px 18px; font-size: 15px; }
}
