/* ── SSS — Sayfa Özel Stiller ── */

/* FAQ Section — sidebar + content grid */
.faq-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px max(24px, calc((100% - 1280px) / 2 + 56px));
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-label {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.cat-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-600);
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-tag i {
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color .15s;
}
.cat-tag:hover {
  background: var(--gray-50);
  color: var(--black);
  border-color: var(--gray-100);
}
.cat-tag:hover i { color: var(--blue); }
.cat-tag.active {
  background: rgba(85, 0, 196, .07);
  color: var(--blue);
  border-color: rgba(85, 0, 196, .15);
  font-weight: 500;
}
.cat-tag.active i { color: var(--blue); }

/* FAQ Content */
.faq-content { min-width: 0; }

.faq-group { margin-bottom: 52px; }
.faq-group:last-child { margin-bottom: 0; }

.faq-cat-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  scroll-margin-top: 100px;
}
.faq-cat-title i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(85, 0, 196, .08);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.faq-list { }
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 0; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -.01em;
  padding: 22px 0;
  color: var(--black);
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-q .icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  margin-top: 2px;
  transition: transform .2s, background .2s, border-color .2s;
}
.faq-item[open] .faq-q .icon {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.faq-a {
  padding: 0 48px 24px 0;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
}
.faq-a strong { color: var(--black); font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .faq-sidebar {
    position: static;
  }
  .cat-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .cat-tag {
    width: auto;
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 100px;
    font-size: 12.5px;
  }
  .cat-tag.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
  }
  .cat-tag.active i { color: var(--white); }
  .faq-cat-title { font-size: 21px; }
  .faq-q { font-size: 15px; gap: 16px; }
  .faq-a { padding-right: 32px; font-size: 13.5px; }
}
