.how_section {
  max-width: 1920px;
  margin: 96px auto 0;
  padding: 0 40px;
}

.how_inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.how_title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}
body.light .how_title { color: #0f0f0f; }

.how_subtitle {
  font-size: 15px;
  color: #ffffff55;
  margin: 0 0 56px;
  font-weight: 400;
}
body.light .how_subtitle { color: #0f0f0f66; }

.how_steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.how_step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.how_step_icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(254,153,255,.18) 0%, rgba(254,153,255,.06) 100%);
  border: 1px solid rgba(254,153,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe99ff;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.how_step:hover .how_step_icon {
  background: linear-gradient(135deg, rgba(254,153,255,.28) 0%, rgba(254,153,255,.12) 100%);
  border-color: rgba(254,153,255,.5);
}
body.light .how_step_icon {
  background: linear-gradient(135deg, rgba(176,32,224,.12) 0%, rgba(176,32,224,.04) 100%);
  border-color: rgba(176,32,224,.2);
  color: #b020e0;
}

.how_step_num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fe99ff;
  margin-bottom: 10px;
  opacity: 0.7;
}
body.light .how_step_num { color: #b020e0; }

.how_step_title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}
body.light .how_step_title { color: #0f0f0f; }

.how_step_desc {
  font-size: 13px;
  line-height: 160%;
  color: #ffffff55;
  margin: 0;
}
body.light .how_step_desc { color: #0f0f0f77; }

.how_arrow {
  flex-shrink: 0;
  color: rgba(254,153,255,.35);
  margin-top: 20px;
  padding: 0 4px;
}
body.light .how_arrow { color: rgba(176,32,224,.3); }

.faq_section {
  max-width: 1920px;
  margin: 100px auto 0;
  padding: 0 40px;
}

.faq_inner {
  max-width: 1060px;
  margin: 0 auto;
}

.faq_title {
  text-align: center;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  margin: 0 0 40px;
  color: #fff;
}
body.light .faq_title { color: #0f0f0f; }

.faq_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.faq_item {
  border-radius: 14px;
  overflow: hidden;
  background: #131313;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color 0.25s ease, background 0.25s ease;
}
body.light .faq_item {
  background: #f4f4f4;
  border-color: rgba(0,0,0,.07);
}

.faq_item.open {
  background: linear-gradient(145deg, rgba(254,153,255,.08) 0%, rgba(254,153,255,.03) 100%);
  border-color: rgba(254,153,255,.3);
}

body.light .faq_item.open {
  background: linear-gradient(145deg, rgba(176,32,224,.07) 0%, rgba(176,32,224,.02) 100%);
  border-color: rgba(176,32,224,.25);
}

.faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffffbb;
  line-height: 1.4;
  transition: color 0.2s ease;
}
body.light .faq_question { color: #0f0f0fcc; }

.faq_item.open .faq_question {
  color: #fff;
}
body.light .faq_item.open .faq_question { color: #0f0f0f; }

.faq_chevron {
  flex-shrink: 0;
  display: block;
  color: rgba(255,255,255,.3);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), color 0.25s ease;
  fill: none;
}
body.light .faq_chevron { color: rgba(0,0,0,.3); }

.faq_item.open .faq_chevron {
  transform: rotate(180deg);
  color: #fe99ff;
}
body.light .faq_item.open .faq_chevron { color: #b020e0; }

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq_item.open .faq_answer {
  border-top: 1px solid rgba(254,153,255,.12);
}
body.light .faq_item.open .faq_answer {
  border-top-color: rgba(176,32,224,.1);
}

.faq_answer p {
  padding: 14px 20px 18px;
  margin: 0;
  font-size: 13px;
  line-height: 165%;
  color: #ffffff66;
}
body.light .faq_answer p { color: #0f0f0faa; }

@media (max-width: 1024px) {
  .how_section { padding: 0 24px; }
  .faq_section { padding: 0 24px; }
}

@media (max-width: 900px) {
  .how_section { margin-top: 72px; }
  .how_step { max-width: 180px; padding: 0 10px; }
  .how_step_icon { width: 54px; height: 54px; border-radius: 14px; }
  .how_arrow svg { width: 24px; height: 24px; }
  .faq_section { margin-top: 80px; }
}

@media (max-width: 680px) {
  .how_section { padding: 0 16px; margin-top: 56px; }
  .how_steps { flex-direction: column; align-items: center; }
  .how_step { max-width: 100%; width: 100%; padding: 0; }
  .how_step_icon { width: 52px; height: 52px; }
  .how_arrow { transform: rotate(90deg); margin: 6px 0; }

  .faq_section { padding: 0 16px; margin-top: 64px; }
  .faq_grid { grid-template-columns: 1fr; }
  .faq_question { padding: 16px 16px; font-size: 13px; }
  .faq_answer p { padding: 12px 16px 16px; }
}

@media (max-width: 400px) {
  .faq_question { font-size: 12.5px; }
}

body.dark .faq_chevron,
body.dark .faq_chevron path,
body.dark .how_step_icon svg,
body.dark .how_step_icon svg path,
body.dark .how_step_icon svg circle,
body.dark .how_step_icon svg rect,
body.dark .how_arrow svg,
body.dark .how_arrow svg path {
  fill: none;
}

body.light .faq_chevron,
body.light .faq_chevron path,
body.light .how_step_icon svg,
body.light .how_step_icon svg path,
body.light .how_step_icon svg circle,
body.light .how_step_icon svg rect,
body.light .how_arrow svg,
body.light .how_arrow svg path {
  fill: none;
}