/* ============================================================
   FAQ PAGE — faq.css
   ============================================================ */

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 6vw, 100px) clamp(60px, 8vh, 100px);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--bg-base);
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(147, 216, 27, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(123, 47, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-content .label-tag {
  display: block;
  margin-bottom: 20px;
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.page-hero-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.page-hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ── FAQ Main ──────────────────────────────────────────────── */
.faq-main {
  padding: var(--section-pad) clamp(24px, 6vw, 100px);
  background: var(--bg-base);
}

.faq-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-sidebar {
  position: relative;
}

.faq-sidebar-label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--electric-blue);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0 auto;
  white-space: nowrap;
}

.faq-sidebar-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--electric-blue), transparent);
  margin: 12px auto 0;
  opacity: 0.3;
}

/* ── Accordion ─────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
}

.faq-item.is-open {
  border-left: 2px solid var(--electric-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--electric-blue);
}

.faq-item.is-open .faq-question {
  color: var(--electric-blue);
  padding-left: 16px;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.faq-item.is-open .faq-chevron {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  background: rgba(147, 216, 27, 0.08);
}

.faq-chevron svg {
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 0 24px 16px;
}

.faq-item.is-open .faq-answer-inner {
  padding-left: 16px;
}

.faq-answer-inner p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-answer-inner a {
  color: var(--electric-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── CTA Strip ─────────────────────────────────────────────── */
.faq-cta {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  background: var(--bg-surface);
  border-top: 1px solid rgba(147, 216, 27, 0.08);
}

.faq-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.faq-cta-text .label-tag {
  display: block;
  margin-bottom: 16px;
}

.faq-cta-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.faq-cta-heading em {
  font-style: normal;
  color: var(--electric-blue);
}

.faq-cta-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-sidebar {
    display: none;
  }

  .faq-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
