/* faq.css */
/* Page scoped only. Matches Legal and Standards styling. */

body.faq { scroll-padding-top: 110px; }

body.faq{
  padding-top:76px;
  background: var(--bg);
  color: var(--text);
  font-size:15px;
}

/* Header */
body.faq .site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
}

/* Hero */
body.faq .faq-hero{
  position:relative;
  padding:120px 0 42px;
  text-align:center;
  overflow:hidden;
}

body.faq .faq-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(0,0,0,0.96) 70%);
  z-index:1;
  pointer-events:none;
}

body.faq .faq-hero .container{
  position:relative;
  z-index:2;
}

body.faq .faq-hero h1{
  margin:0 0 12px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height:1.05;
}

body.faq .faq-sub{
  max-width:760px;
  margin:0 auto;
  color:rgba(255,255,255,0.74);
  font-size:18px;
  line-height:1.5;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.faq .faq-hero-links{
  margin-top:18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Body spacing */
body.faq .faq-body{
  padding:56px 0 90px;
}

/* Grid */
body.faq .faq-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:44px;
  align-items:start;
}

/* Left nav */
body.faq .faq-nav{
  position:sticky;
  top:110px;
  padding:18px 16px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.26);
  border-radius:14px;
  backdrop-filter: blur(10px);
}

body.faq .faq-nav a{
  display:block;
  padding:10px 10px;
  margin:2px 0;
  text-decoration:none;
  color:rgba(255,255,255,0.72);
  font-size:14px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border-radius:10px;
}

body.faq .faq-nav a:hover{
  color:#fff;
  background:rgba(255,255,255,0.06);
}

/* Content */
body.faq .faq-content{
  max-width:860px;
}

/* Section blocks */
body.faq .fblock{
  padding:22px 0 28px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

body.faq .fblock:last-child{
  border-bottom:none;
}

body.faq .fblock h2{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.15;
}

/* FAQ cards */
body.faq details.faq-item{
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  background:rgba(0,0,0,0.25);
  padding:14px 16px;
  margin:12px 0;
}

body.faq details.faq-item summary{
  cursor:pointer;
  list-style:none;
  color:rgba(255,255,255,0.92);
  font-weight:600;
  font-size:15px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.faq details.faq-item summary::-webkit-details-marker{
  display:none;
}

body.faq .faq-answer{
  margin-top:10px;
  color:rgba(255,255,255,0.78);
  font-size:16px;
  line-height:1.55;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Inline link */
body.faq .faq-inline-link{
  margin-top:10px;
}

/* CTA */
body.faq .faq-cta{
  margin-top:28px;
}

/* Responsive */
@media (max-width: 980px){
  body.faq .faq-grid{
    grid-template-columns:1fr;
  }
  body.faq .faq-nav{
    position:relative;
    top:auto;
  }
}

@media (max-width: 560px){
  body.faq .faq-hero{
    padding-top:110px;
  }
  body.faq .fblock h2{
    font-size:28px;
  }
}
