.about__section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--kf-white-1);
}

.about__section:last-child {
  border-bottom: none;
}

.about__section-container {
  max-width: calc(var(--kf-page-width) + 20rem);
  margin: 0 auto;
  padding: 0 4.8rem;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 3.6rem;
}

.section__eyebrow {
  font-size: var(--kf-fs-sm);
  letter-spacing: var(--kf-ls-xll);
  text-transform: var(--kf-tu);
  color: var(--kf-white-3);
  white-space: nowrap;
}

.section__title {
  font-size: var(--kf-fs-lg);
  color: var(--kf-text-invert);
  white-space: nowrap;
}

.section__line {
  flex: 1;
  height: 1px;
  background: var(--kf-white-2);
  min-width: 2rem;
}

/* Hakkımızda — SSS scroll ile sırayla görünür (faq-list ile aynı geçişler) */
.about__faq:not(.is-revealed) .faq__list .faq__item {
  opacity: 0;
  transform: translateX(2rem);
}

.about__faq.is-revealed .faq__item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.28s;
}
.about__faq.is-revealed .faq__item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.36s;
}
.about__faq.is-revealed .faq__item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.44s;
}
.about__faq.is-revealed .faq__item:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.52s;
}
.about__faq.is-revealed .faq__item:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.about__faq.is-revealed .faq__item:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.68s;
}
.about__faq.is-revealed .faq__item:nth-child(7) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.76s;
}
.about__faq.is-revealed .faq__item:nth-child(n + 8) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.84s;
}

@media (max-width: 1280px) {
  .about__section {
    padding: 6rem 0;
  }

  .about__section-container {
    padding: 0 3.2rem;
  }

  .section__header {
    margin-bottom: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .about__section {
    padding: 5.2rem 0;
  }

  .about__section-container {
    padding: 0 2.8rem;
  }

  .section__header {
    gap: 1.2rem;
    margin-bottom: 2.8rem;
  }

  .section__line {
    min-width: 1.4rem;
  }
}

@media (max-width: 768px) {
  .about__section {
    padding: 4.8rem 0;
  }

  .about__section-container {
    padding: 0 2.4rem;
  }

  .section__header {
    gap: 1rem;
    margin-bottom: 2.4rem;
  }

  .section__title {
    font-size: calc(var(--kf-fs-lg) * 0.9);
  }

  .section__line {
    min-width: 1rem;
  }
}

@media (max-width: 480px) {
  .about__section {
    padding: 4rem 0;
  }

  .about__section-container {
    padding: 0 1.6rem;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: calc(var(--kf-fs-lg) * 0.85);
  }

  .section__line {
    min-height: 0.2rem;
    width: 20%;
  }
}
