.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
  color: var(--system-white);
  background: var(--system-red);
}

.faq-hero::before,
.faq-hero::after {
  position: absolute;
  border: 1px solid rgba(var(--system-white-rgb), 0.26);
  border-radius: 50%;
  content: "";
}

.faq-hero::before {
  right: -130px;
  bottom: -220px;
  width: 520px;
  height: 520px;
}

.faq-hero::after {
  top: -160px;
  right: 23%;
  width: 300px;
  height: 300px;
}

.faq-hero-inner { position: relative; z-index: 1; }
.faq-hero-copy { max-width: 900px; }
.faq-hero .eyebrow, .faq-hero .section-title, .faq-hero .section-copy { color: var(--system-white); }
.faq-hero .section-copy { max-width: 760px; margin-bottom: 0; }

.faq-wrap { max-width: 1040px; }
.faq-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.faq-section-head .eyebrow { margin: 0; }
.faq-section-head > p:last-child { margin: 0; color: var(--muted); text-align: right; }

.faq-list { margin-bottom: 14px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); background: var(--system-white); }
.faq-item summary { display: grid; grid-template-columns: 52px minmax(0, 1fr) 26px; align-items: center; gap: 18px; padding: 24px 0; color: var(--dark); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item-number { color: var(--brand-bordeaux); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.faq-item-question { font-size: clamp(19px, 2.4vw, 26px); font-weight: 750; line-height: 1.22; }
.faq-item-icon { position: relative; width: 24px; height: 24px; border: 1px solid var(--brand-bordeaux); border-radius: 50%; }
.faq-item-icon::before, .faq-item-icon::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--brand-bordeaux); content: ""; transform: translate(-50%, -50%); }
.faq-item-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
.faq-item[open] { background: var(--bg-soft); }
.faq-item[open] .faq-item-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item-answer { max-width: 820px; padding: 0 50px 28px 70px; }
.faq-item-answer p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.faq-more-actions { display: flex; justify-content: flex-end; width: 100%; }
.faq-more-actions .button-outline { margin: 0; }

.faq-contact-note { margin-top: 72px; padding: clamp(28px, 5vw, 56px); color: var(--system-white); background: var(--dark); }
.faq-contact-note .eyebrow, .faq-contact-note h2 { color: var(--system-white); }
.faq-contact-note h2 { max-width: 760px; margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
.faq-contact-note p:not(.eyebrow) { max-width: 720px; margin: 18px 0 30px; color: rgba(var(--system-white-rgb), .82); }
.faq-contact-note .button { color: var(--system-white); }

@media (max-width: 760px) {
  .faq-hero { padding: 118px 0 70px; }
  .faq-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .faq-section-head > p:last-child { text-align: left; }
  .faq-item summary { grid-template-columns: 38px minmax(0, 1fr) 24px; gap: 12px; padding: 19px 0; }
  .faq-item-answer { padding: 0 0 24px 50px; }
}
