:root {
  --bg-e1d652d8: #07090a;
  --cyan: #51FBFD;
  --cyan-dim: rgba(81, 251, 253, 0.12);
  --card-border: rgba(81, 251, 253, 0.16);
  --white: #f5f7f7;
  --muted: #9aa3a3;
  --muted2: #6c7676;
}

.faq-sec-e1d652d8 {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--bg-e1d652d8);
  font-family: 'Inter', sans-serif;
  color: var(--white);
}

.glow-e1d652d8 {
  position: absolute;
  width: 460px;
  height: 460px;
  background: var(--cyan);
  opacity: 0.06;
  filter: blur(120px);
  top: -120px;
  left: -140px;
  pointer-events: none;
}

.wrap-e1d652d8 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.faq-grid-e1d652d8 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: flex-start;
}

.mono-e1d652d8 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.mono-e1d652d8::before {
  content: '—';
}

.left-e1d652d8 h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.left-e1d652d8 p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 380px;
  margin-bottom: 36px;
}

.left-card-e1d652d8 {
  background: var(--cyan-dim);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.left-card-e1d652d8 h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.left-card-e1d652d8 p {
  color: var(--muted);
  font-size: 14px;
  max-width: 100%;
  margin-bottom: 20px;
}

.btn-e1d652d8 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--cyan);
  color: #04201f;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-e1d652d8:hover {
  box-shadow: 0 0 24px rgba(81, 251, 253, 0.5);
  transform: translateY(-2px);
}

.faq-list-e1d652d8 {
  display: flex;
  flex-direction: column;
}

.faq-item-e1d652d8 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px 0;
}

.faq-item-e1d652d8:first-child {
  padding-top: 0;
}

.faq-q-e1d652d8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
}

.faq-num-e1d652d8 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted2);
  margin-right: 14px;
}

.faq-q-text-e1d652d8 {
  display: flex;
  align-items: center;
}

.faq-plus-e1d652d8 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 15px;
  transition: transform .35s ease, background .35s ease;
}

.faq-item-e1d652d8.open .faq-plus-e1d652d8 {
  transform: rotate(45deg);
  background: var(--cyan-dim);
}

.faq-a-e1d652d8 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}

.faq-item-e1d652d8.open .faq-a-e1d652d8 {
  max-height: 200px;
  opacity: 1;
}

.faq-a-e1d652d8 p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  padding-top: 14px;
  max-width: 520px;
  padding-left: 34px;
}

@media(max-width: 900px) {
  .faq-grid-e1d652d8 {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .left-e1d652d8 h2 {
    font-size: 28px;
  }
}
