/* ============================================================
   Sık Sorulan Sorular (SSS) — landing sayfaları ortak stili
   Bölüm başlığı her sayfanın mevcut .features-intro desenini
   kullanır; burada yalnızca akordeon öğeleri stillenir.
   ============================================================ */

.sss-section {
  padding: 48px 0 8px;
  display: flex;
  justify-content: center;
}

/* Kart genişliği İletişim (.cta-panel .content-block) ile birebir aynı */
.sss-section .content-block {
  width: 100%;
  max-width: 700px;
}

.sss-list {
  width: 100%;
}

.sss-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.sss-item[open] {
  border-color: #cbd5e1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 14px 34px -22px rgba(15, 23, 42, 0.22);
}

.sss-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.98rem;
  color: #0f172a;
  line-height: 1.4;
}

.sss-item summary::-webkit-details-marker {
  display: none;
}

.sss-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background-color: #f1f5f9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.18s ease;
}

.sss-item[open] summary::after {
  transform: rotate(45deg);
}

.sss-item > p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

.sss-item > p a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .sss-item summary {
    padding: 14px 16px;
    font-size: 0.92rem;
  }
  .sss-item > p {
    padding: 0 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sss-item,
  .sss-item summary::after {
    transition: none;
  }
}
