/* SSS HERO */
.sss-hero {
  min-height: 50vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 60px 80px;
}
.sss-hero-content { position: relative; }
.sss-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0;
}
.sss-hero-content h1 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}
.sss-hero-content p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  max-width: 500px;
}

/* SSS ANA BÖLÜM */
.sss-section {
  background: var(--off-white);
  padding: 80px 60px;
}
.sss-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* KATEGORİ */
.sss-category {}
.cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
}
.cat-icon { font-size: 1.4rem; }

/* FAQ ITEMS */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(13,31,60,.06); }
.faq-item.open { border-color: var(--blue); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-item.open .faq-question { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

/* SSS CTA */
.sss-cta {
  max-width: 860px;
  margin: 48px auto 0;
  background: var(--navy);
  padding: 60px;
  border-radius: 4px;
  text-align: center;
}
.sss-cta h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.sss-cta p {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  margin-bottom: 32px;
}
.sss-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-dark {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 4px;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .25s;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* MOBİL */
@media (max-width: 900px) {
  .sss-hero { padding: 120px 24px 60px; }
  .sss-section { padding: 48px 24px; }
  .sss-cta { padding: 40px 24px; }
  .sss-cta h2 { font-size: 1.7rem; }
  .faq-question { padding: 16px 18px; font-size: .88rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}