/* Creative Idea — Why Choose + FAQ section */

.ci-why-faq {
  width: 100%;
  padding: 0;
  background: #070b20;
  color: #f4f5fb;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.ci-why-faq *,
.ci-why-faq *::before,
.ci-why-faq *::after {
  box-sizing: border-box;
}

.ci-wf-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 20px;
}

.ci-wf-card {
  position: relative;
  min-height: 310px;
  padding: 25px 28px;
  border: 1px solid #25345b;
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 90%, rgba(99, 56, 205, .06), transparent 30%),
    linear-gradient(145deg, #080e22 0%, #060b1c 100%);
  box-shadow: inset 0 0 35px rgba(24, 45, 94, .08);
  overflow: hidden;
}

.ci-wf-card-title {
  margin: 0 0 20px;
  color: #a76cff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 1px;
}

.ci-why-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 650px;
}

.ci-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 13px;
  color: #c7cede;
  font-size: 14px;
  line-height: 1.55;
}

.ci-check {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #8b3ff0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(139, 63, 240, .45);
}

.ci-robot {
  position: absolute;
  right: 35px;
  bottom: 27px;
  width: 105px;
  height: 105px;
  opacity: .55;
}

.ci-robot svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #a875ff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(133, 77, 255, .25));
}

.ci-faq-card {
  padding-bottom: 19px;
}

.ci-faq {
  margin-bottom: 8px;
}

.ci-faq-question {
  width: 100%;
  min-height: 39px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #26385f;
  border-radius: 5px;
  background: #111d3a;
  color: #dfe5f2;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.ci-faq-question:hover,
.ci-faq-question.active {
  border-color: #344a79;
  background: #142342;
}

.ci-faq-arrow {
  flex: 0 0 auto;
  color: #c4ccdc;
  font-size: 15px;
  line-height: 1;
}

.ci-faq-answer {
  display: none;
  padding: 11px 12px 3px;
  color: #9faac0;
  font-size: 13px;
  line-height: 1.55;
}

.ci-faq-answer.open {
  display: block;
}

@media (max-width: 900px) {
  .ci-wf-container {
    grid-template-columns: 1fr;
  }

  .ci-wf-card {
    min-height: auto;
  }

  .ci-why-card {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .ci-wf-container {
    width: min(100% - 24px, 1180px);
    gap: 14px;
  }

  .ci-wf-card {
    padding: 21px 18px;
    border-radius: 7px;
  }

  .ci-wf-card-title {
    font-size: 17px;
    margin-bottom: 17px;
  }

  .ci-why-list li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-right: 35px;
  }

  .ci-robot {
    right: 18px;
    bottom: 18px;
    width: 75px;
    height: 75px;
    opacity: .4;
  }

  .ci-faq-question {
    min-height: 43px;
    font-size: 12px;
  }

  .ci-faq-answer {
    font-size: 12px;
  }
}
