.section-faq.yt-howto {
  background: linear-gradient(180deg, rgba(50, 58, 204, .06) 0%, rgba(50, 58, 204, .1) 100%);
  padding: 80px 0
}

.section-faq.yt-howto .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px
}

.section-faq.yt-howto .section-title {
  text-align: center;
  font-family: "Dosis", sans-serif;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  margin: 0 0 50px;
  line-height: 1.1;
  position: relative
}

.section-faq.yt-howto .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-yellow);
  border-radius: 2px
}

.section-faq.yt-howto .faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step
}

@media(max-width:900px) {
  .section-faq.yt-howto .faq-list {
    grid-template-columns: 1fr
  }
}

.section-faq.yt-howto .faq-item {
  border: 1px solid #E8EBFF;
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .06)
}

.section-faq.yt-howto .faq-item h3 {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Dosis", sans-serif;
  color: var(--brand-blue);
  font-size: 20px;
  font-weight: 600
}

.section-faq.yt-howto .faq-item h3::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-weight: 800;
  font-family: "Dosis", sans-serif;
  font-size: 16px
}

.section-faq.yt-howto .faq-item p {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.5;
  margin: 0
}

.section-faq {
  background: #fff;
  padding: 70px 0
}

.section-faq .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px
}

.section-faq .section-title {
  text-align: center;
  font-family: "Dosis", sans-serif;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  margin: 0 0 50px;
  line-height: 1.1;
  position: relative
}

.section-faq .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand-yellow);
  border-radius: 2px
}

.section-faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

@media(max-width:900px) {
  .section-faq .faq-grid {
    grid-template-columns: 1fr
  }
}

.section-faq .faq-item {
  border: 1px solid #EEF0FF;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease, background-color .2s ease
}

.section-faq .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-blue);
  border-radius: 14px 0 0 14px;
  opacity: .35
}

.section-faq .faq-item:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
  background: #FCFDFF
}

.section-faq .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 22px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  color: var(--brand-blue);
  font-size: 18px;
  position: relative
}

.section-faq .faq-item summary::-webkit-details-marker {
  display: none
}

.section-faq .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 20px;
  transition: transform .3s ease
}

.section-faq .faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(0deg)
}

.section-faq .faq-body {
  padding: 0 16px 16px 22px;
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.55;
  border-top: 1px dashed #E6E8FF
}

.section-faq .faq-body p {
  font-family: "DM Sans", system-ui, sans-serif;
  margin: 0;
  padding-top: 12px
}

@media(max-width:768px) {

  .section-faq.yt-howto,
  .section-faq {
    padding: 60px 0
  }

  .section-faq.yt-howto .faq-list,
  .section-faq .faq-grid {
    gap: 16px
  }

  .section-faq.yt-howto .faq-item,
  .section-faq .faq-item {
    padding: 16px
  }

  .section-faq.yt-howto .faq-item h3 {
    font-size: 18px
  }

  .section-faq .faq-item summary {
    font-size: 16px;
    padding: 14px 40px 14px 18px
  }

  .section-faq .faq-body {
    padding: 0 16px 16px 18px;
    font-size: 15px
  }
}

@media(max-width:480px) {

  .section-faq.yt-howto,
  .section-faq {
    padding: 50px 0
  }

  .section-faq.yt-howto .section-title,
  .section-faq .section-title {
    margin-bottom: 40px;
    font-size: 1.75rem
  }

  .section-faq.yt-howto .faq-item h3::before {
    width: 28px;
    height: 28px;
    font-size: 14px
  }

  .section-faq .faq-item summary {
    font-size: 15px
  }
}