:host {
  all: initial;
  display: block;
  color: #0f172a;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Arial,
    sans-serif;
}

.mc-faq-wrap {
  max-width: 1100px;
  margin: 32px auto 48px;
  padding: 0 12px;
}

.mc-faq-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e5e8ee;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(2, 6, 23, 0.06);
}

.mc-faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 350px at 0% 0%, rgba(129, 140, 248, 0.18), transparent 65%),
    radial-gradient(700px 350px at 100% 100%, rgba(45, 212, 191, 0.16), transparent 60%),
    #f8fafc;
}

.mc-faq-content {
  position: relative;
  padding: 28px 22px;
}

@media (min-width: 900px) {
  .mc-faq-content {
    padding: 38px 42px;
  }
}

.mc-faq-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.mc-faq-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #475569;
}

.mc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mc-faq-item {
  padding: 10px 0;
  border-bottom: 1px solid #e5e8ee;
}

.mc-faq-item:last-child {
  border-bottom: none;
}

.mc-faq-q {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mc-faq-q-badge {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.mc-faq-a {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}