/*
  FAQ Premium — clean glass accordion, no heavy bottom vignette
*/

body.sr-site .sr-faq-section {
  position: relative;
  background: transparent !important;
}

body.sr-site .sr-faq-section::before,
body.sr-site .sr-faq-section::after {
  display: none !important;
}

body.sr-site .sr-faq-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

body.sr-site .sr-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.88);
  border: 1px solid rgba(186, 230, 253, 0.18);
  background: rgba(56, 189, 248, 0.08);
}

body.sr-site .sr-faq-kicker svg {
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.85;
}

body.sr-site .sr-faq-title {
  margin: 0.85rem 0 0 !important;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3.5vw, 2rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc !important;
}

body.sr-site .sr-faq-lead {
  margin: 0.65rem auto 0 !important;
  max-width: 38rem;
  font-size: 0.9375rem !important;
  line-height: 1.6;
  color: rgba(186, 230, 253, 0.72) !important;
}

body.sr-site .sr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.sr-site .sr-faq-card {
  border-radius: 1rem !important;
  border: 1px solid rgba(186, 230, 253, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(186, 230, 253, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
    linear-gradient(180deg, rgba(6, 14, 26, 0.48), rgba(4, 10, 20, 0.58)) !important;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 36px rgba(2, 8, 20, 0.18) !important;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.sr-site .sr-faq-card:hover {
  border-color: rgba(186, 230, 253, 0.2) !important;
}

body.sr-site .sr-faq-card.open {
  border-color: rgba(226, 193, 120, 0.28) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 44px rgba(2, 8, 20, 0.24),
    0 0 24px rgba(212, 160, 23, 0.06) !important;
}

body.sr-site .sr-faq-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

body.sr-site .sr-faq-index {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fde68a;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.22);
}

body.sr-site .sr-faq-question {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #f1f5f9;
}

body.sr-site .sr-faq-chevron {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  color: rgba(186, 230, 253, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

body.sr-site .sr-faq-card.open .sr-faq-chevron {
  transform: rotate(180deg);
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.22);
  color: #fde68a;
}

body.sr-site .sr-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

body.sr-site .sr-faq-card.open .sr-faq-answer {
  max-height: 24rem;
  opacity: 1;
}

body.sr-site .sr-faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1.1rem 3.85rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(186, 230, 253, 0.78);
}

@media (max-width: 640px) {
  body.sr-site .sr-faq-answer p {
    padding-left: 1.1rem;
    padding-top: 0.15rem;
  }
}
