/* =====================================================
   YUGANTIX — Theme v4 PREVIEW (about.html)
   Mirrors the same system applied to index.html:
     - light mint page background, lightened twice per feedback
     - solid white header (no translucent cream blur)
     - "deep" alternating sections -> white
     - first section (hero) and last section (final CTA wrapper) -> white
   Plus: proper FAQ accordion styling, since .faq-item/.faq-question/
   .faq-answer had no CSS at all before this — it was rendering as
   plain unstyled buttons and always-visible text.
   ===================================================== */

:root {
  --paper: #F8FCF9;
  --paper-deep: #EFF8F1;
  --paper-warm: #FAFDFB;
}

.site-header {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(13, 18, 32, .06);
}
.site-header.is-scrolled {
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(13, 18, 32, .06);
}

body::before,
body::after {
  content: none;
}

.bg-deep {
  background: #FFFFFF;
}

.page-hero {
  background: #FFFFFF;
}
.section--final {
  background: #FFFFFF;
}

/* =========== FAQ — proper accordion styling =========== */

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.faq-item {
  background: var(--surface, #fff);
  border: 1px solid var(--line, #DCE1ED);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover {
  border-color: var(--brand, #004BDA);
}
.faq-item.is-open {
  border-color: var(--brand, #004BDA);
  box-shadow: 0 8px 24px -12px rgba(0, 75, 218, .18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, .95rem + .2vw, 1.1rem);
  font-weight: 600;
  color: var(--ink, #0D1220);
  cursor: pointer;
}
.faq-question span {
  flex: 1;
}
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--ink-muted, #5A6178);
  transition: transform .25s ease, color .2s ease;
}
.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
  color: var(--brand, #004BDA);
}
.faq-question:focus-visible {
  outline: 2px solid var(--brand, #004BDA);
  outline-offset: -2px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 320px;
}
.faq-answer p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-muted, #5A6178);
  font-size: var(--fs-sm, .95rem);
  line-height: 1.6;
}
