.faq {
  max-width: 900px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bgSoft);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font: 700 18px/1.4 Lato, sans-serif;
  cursor: pointer;
  color: var(--text);
}

.faq-body {
  padding: 6px 22px 24px;
  color: var(--textNav);
  line-height: 1.5;
}

.faq-body p {
  margin: 0 0 14px;
}

.faq-icon {
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.site-footer {
  padding: 38px 0;
  background: var(--footerBg);
  border-top: 1px solid var(--footerBg);
}

.footer-row {
  width: var(--wrapW);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 72px;
  display: flex;
  flex-direction: var(--footerDir);
  justify-content: space-between;
  gap: 30px;
}

.lockup-on-dark {
  height: 22px;
  width: auto;
  display: block;
}

.footer-copy {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--footerText);
  text-wrap: pretty;
}

.footer-copy + .footer-copy {
  margin-top: 12px;
}

.footer-legal {
  font-size: 13px;
  color: var(--footerMuted);
  margin-top: 20px;
}

.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: var(--footerLinksTop);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--footerLink);
  font-size: 14px;
}

.footer-links a {
  color: inherit;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  color: var(--onAccent);
  transition: background 0.2s ease;
}

.not-found {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.not-found h1 {
  margin: 8px 0 16px;
  font-size: var(--display);
  line-height: 0.98;
  color: var(--heading);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.not-found-copy {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--textMuted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
}

.btn.orange {
  background: var(--btnOrange);
  color: var(--onAccent);
}

.btn.orange:hover {
  background: var(--btnOrangeHover);
  color: var(--onAccent);
}
