.cs-faq {
  position: relative;
  background: #0B1F3A;
  background: var(--primary, #0B1F3A);
  padding: 96px 0;
  overflow: hidden;
}

/* ── Background ── */
.cs-faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cs-faq__bg-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,194,168,0.11) 0%, transparent 70%);
  top: -120px; right: -80px;
  border-radius: 50%;
  filter: blur(80px);
  animation: faqGlow 8s ease-in-out infinite alternate;
}
.cs-faq__bg-glow-2 {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,80,200,0.07) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  border-radius: 50%;
  filter: blur(70px);
  animation: faqGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes faqGlow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.2); }
}
.cs-faq__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

/* ── Inner wrapper ── */
.cs-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ============================================================
   HEADER
============================================================ */
.cs-faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cs-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.cs-faq__eyebrow-line {
  display: inline-block;
  width: 24px; height: 2px;
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  border-radius: 2px;
}

.cs-faq__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.cs-faq__title em {
  font-style: normal;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
}

.cs-faq__subtitle {
  font-size: 15.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* ============================================================
   ACCORDION LIST
============================================================ */
.cs-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Single item ── */
.cs-faq__item {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.cs-faq__item:has(.cs-faq__question.is-open) {
  border-color: rgba(0,194,168,0.3);
  background: rgba(0,194,168,0.04);
}

/* ── Question button ── */
.cs-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.cs-faq__question:hover {
  background: rgba(255,255,255,0.03);
}

/* Number */
.cs-faq__question-num {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,194,168,0.35);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s;
}
.cs-faq__question.is-open .cs-faq__question-num {
  color: #00C2A8;
}

/* Text */
.cs-faq__question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  transition: color 0.25s;
}
.cs-faq__question.is-open .cs-faq__question-text {
  color: #ffffff;
}

/* Icon toggle */
.cs-faq__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  position: relative;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.cs-faq__question.is-open .cs-faq__icon {
  background: rgba(0,194,168,0.15);
  border-color: rgba(0,194,168,0.3);
  color: #00C2A8;
}

/* Plus / minus icons */
.cs-faq__icon-plus,
.cs-faq__icon-minus {
  position: absolute;
  transition: opacity 0.25s, transform 0.25s;
}
.cs-faq__icon-minus { opacity: 0; transform: scale(0.7); }
.cs-faq__icon-plus  { opacity: 1; transform: scale(1); }

.cs-faq__question.is-open .cs-faq__icon-plus  { opacity: 0; transform: scale(0.7) rotate(45deg); }
.cs-faq__question.is-open .cs-faq__icon-minus { opacity: 1; transform: scale(1); }

/* ── Answer panel ── */
.cs-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-faq__answer-inner {
  padding: 0 24px 22px 56px; /* align with text past the number */
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cs-faq__answer-inner p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 16px 0 0;
}

/* ============================================================
   BOTTOM CTA
============================================================ */
.cs-faq__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.cs-faq__cta-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.cs-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,194,168,0.28);
}
.cs-faq__cta:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,194,168,0.38);
}
.cs-faq__cta svg { transition: transform 0.2s; }
.cs-faq__cta:hover svg { transform: translateX(4px); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .cs-faq { padding: 72px 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .cs-faq { padding: 56px 0; }
  .cs-faq__inner { gap: 36px; }
  .cs-faq__question { padding: 16px 18px; gap: 12px; }
  .cs-faq__answer-inner { padding: 0 18px 18px 18px; }
  .cs-faq__question-num { display: none; }
  .cs-faq__cta-row {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .cs-faq__cta { width: 100%; justify-content: center; }
}