/* ===== A1 CONNECT — FAQ Page =====
   Requires in <head>, in this order: base.css, header.css, faq.css.
   Self-contained — dark intro hero + a light accordion list below,
   built with native <details>/<summary> (no JS required). */

:root {
  --faq-black: #060606;
  --faq-black-soft: #121212;
}

/* Intro hero */
.faq-hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(700px 400px at 5% 110%, rgba(59,130,246,0.1), transparent 60%),
    linear-gradient(180deg, var(--faq-black) 0%, var(--faq-black-soft) 100%);
  color: #ffffff;
  padding: 96px 0 80px;
  overflow: hidden;
  text-align: center;
}
.faq-hero .eyebrow {
  color: var(--gold-light); background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.faq-hero h1 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin: 0 auto 18px; max-width: 700px;
  background: linear-gradient(100deg, #ffffff 0%, #cfe0ff 22%, #8fb8ff 45%, #ffffff 65%, #cfe0ff 85%, #8fb8ff 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 42px rgba(59,130,246,0.28);
  animation: faqGradientMove 7s ease-in-out infinite;
}
@keyframes faqGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.faq-hero p.lead {
  color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* Accordion list */
.faq-list-section { background: #ffffff; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p {
  margin: 0 0 22px;
  padding-right: 38px;
  color: var(--gray-600);
}
.faq-item p a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .faq-hero { padding: 64px 0 56px; }
  .faq-item summary { font-size: 0.95rem; padding: 18px 0; }
}
