/* ---------- FAQ SECTION ---------- */
.oc-faq-section {
  padding: 96px 32px;
}

.oc-faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

/* LEFT --------------------------------------------------- */
.oc-faq-left { position: sticky; top: 96px; }
.oc-faq-left h2 { margin-bottom: 18px; }

.oc-faq-visual {
  position: relative;
  margin-top: 48px;
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
}
.oc-faq-halo {
  position: absolute; inset: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(177,75,255,0.35) 0%, rgba(110,55,255,0.10) 50%, transparent 75%);
  filter: blur(10px);
  animation: faqHalo 5s var(--oc-ease) infinite;
}
@keyframes faqHalo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.oc-faq-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(177,75,255,0.20);
  pointer-events: none;
}
.oc-faq-ring-1 {
  inset: 4%;
  animation: faqRotCw 22s linear infinite;
}
.oc-faq-ring-2 {
  inset: 22%;
  border-style: solid;
  border-color: rgba(177,75,255,0.10);
  animation: faqRotCcw 35s linear infinite;
}
@keyframes faqRotCw  { to { transform: rotate(360deg); } }
@keyframes faqRotCcw { to { transform: rotate(-360deg); } }

.oc-faq-octo {
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(177,75,255,0.55));
  animation: faqFloat 6s var(--oc-ease) infinite;
}
@keyframes faqFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 8px)); }
}

.oc-faq-orbit {
  position: absolute;
  width: 56px; height: 56px;
}
.oc-faq-orbit-fb { left: 6%;  top: 14%; animation: faqOrbit 5s var(--oc-ease) infinite; }
.oc-faq-orbit-ig { right: 4%; top: 38%; animation: faqOrbit 5s var(--oc-ease) infinite 1.5s; }
.oc-faq-orbit-tt { left: 22%; bottom: 6%; animation: faqOrbit 5s var(--oc-ease) infinite 3s; }
@keyframes faqOrbit {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.oc-faq-icon {
  width: 100%; height: 100%;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--oc-ink-3);
  border: 1px solid var(--oc-line-3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 24px color-mix(in srgb, var(--c) 30%, transparent);
}
.oc-faq-icon .oc-route-plat-glyph {
  width: 26px; height: 26px;
}

/* RIGHT — accordion -------------------------------------- */
.oc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oc-faq-item {
  border-radius: 12px;
  background: var(--oc-ink-3);
  border: 1px solid var(--oc-line-2);
  transition: all 0.3s var(--oc-ease);
}
.oc-faq-item:hover {
  border-color: rgba(177,75,255,0.3);
}
.oc-faq-item.is-open {
  background: linear-gradient(180deg, rgba(110,55,255,0.10) 0%, var(--oc-ink-3) 100%);
  border-color: rgba(177,75,255,0.4);
  box-shadow: 0 0 0 1px rgba(177,75,255,0.15), 0 12px 32px rgba(110,55,255,0.12);
}

.oc-faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--oc-font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--oc-fg-1);
  text-align: left;
  line-height: 1.4;
}
.oc-faq-q-text { flex: 1; }
.oc-faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--oc-line-2);
  color: var(--oc-fg-3);
  flex-shrink: 0;
  transition: all 0.3s var(--oc-ease);
}
.oc-faq-item.is-open .oc-faq-q-icon {
  background: rgba(177,75,255,0.18);
  border-color: rgba(177,75,255,0.45);
  color: #fff;
  transform: rotate(45deg);
}

.oc-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--oc-ease);
}
.oc-faq-item.is-open .oc-faq-a-wrap {
  grid-template-rows: 1fr;
}
.oc-faq-a-wrap > .oc-faq-a {
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px; line-height: 1.6;
  color: var(--oc-fg-2);
  text-wrap: pretty;
}
.oc-faq-item.is-open .oc-faq-a-wrap > .oc-faq-a {
  padding: 0 22px 22px;
  border-top: 1px dashed rgba(255,255,255,0.05);
  padding-top: 16px;
}

@media (max-width: 900px) {
  .oc-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .oc-faq-left { position: static; }
  .oc-faq-visual { display: none; }
}
