:root {
  --bg: #eeeeee;
  --fg: #090302;
  --accent: #A9D01E;
  --accent-dark: #7a9a0e;
}

.faq-hero {
  background: var(--bg);
  padding: 60px 48px 40px;
  border-bottom: 1px solid rgba(9,3,2,0.08);
}

.faq-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-eyebrow {
  display: inline-block;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.faq-hero h1 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 10px;
  line-height: 1.15;
}

.faq-hero-sub {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 16px;
  color: rgba(9,3,2,0.6);
  margin: 0;
  line-height: 1.5;
}

.faq-body {
  padding: 48px 24px 80px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(9,3,2,0.08);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(9,3,2,0.08);
}

.faq-question {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  padding-top: 12px;
}

.faq-answer a {
  color: var(--accent-dark);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta-block {
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--bg-dark, #090302);
  color: var(--white, #ffffff);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
}

.faq-cta-block h2 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white, #ffffff);
  margin: 0 0 12px;
}

.faq-cta-block p {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin: 0 0 28px;
  line-height: 1.6;
}

.faq-cta-block .btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark, #090302);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.faq-cta-block .btn-primary:hover {
  background: #c4f020;
}

.faq-cta-block .faq-contact {
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.faq-cta-block .faq-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 40px 20px 28px;
  }

  .faq-hero h1 {
    font-size: 28px;
  }

  .faq-body {
    padding: 32px 16px 60px;
  }

  .faq-cta-block {
    padding: 36px 24px;
    margin-top: 40px;
  }
}
