.page-faq {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
}

.page-faq .faq-hero {
  position: relative;
  padding: 48px 20px 36px;
  max-width: var(--container);
  margin: 0 auto;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 56px;
  transform: rotate(28deg);
  pointer-events: none;
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  top: 120px;
  left: -60px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--line);
  border-radius: 32px;
  transform: rotate(16deg);
  pointer-events: none;
  opacity: 0.5;
}

.page-faq .faq-hero .breadcrumb {
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.page-faq .faq-hero__grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.page-faq .faq-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-faq .faq-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--rust);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.page-faq .faq-hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}

.page-faq .faq-hero__title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 680px;
}

.page-faq .faq-hero__lede {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 28px;
}

.page-faq .faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-faq .faq-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.page-faq .faq-hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  flex-shrink: 0;
}

.page-faq .faq-hero__visual {
  position: relative;
  margin: 0;
}

.page-faq .faq-hero__visual::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -14px;
  right: 14px;
  bottom: -14px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  opacity: 0.7;
  pointer-events: none;
}

.page-faq .faq-hero__visual img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-panel);
}

.page-faq .faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 20px 36px;
  max-width: var(--container);
  margin: 0 auto;
}

.page-faq .faq-filter__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.page-faq .faq-filter__pill:hover,
.page-faq .faq-filter__pill:focus-visible {
  border-color: var(--rust);
  color: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 23, 16, 0.08);
  outline: none;
}

.page-faq .faq-filter__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--rust);
}

.page-faq .faq-section {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 20px;
  scroll-margin-top: 120px;
}

.page-faq .faq-section__inner {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--sand);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: var(--shadow-panel);
}

.page-faq .faq-section__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold) 50%, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.page-faq .faq-section:target .faq-section__inner {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 154, 90, 0.14), var(--shadow-panel);
}

.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.page-faq .faq-section__index {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--rust);
  background: rgba(217, 83, 30, 0.08);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.page-faq .faq-section__index::before {
  content: "[";
}

.page-faq .faq-section__index::after {
  content: "]";
}

.page-faq .faq-section__heading {
  min-width: 0;
}

.page-faq .faq-section__title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}

.page-faq .faq-section__lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.page-faq .faq-section__list {
  display: grid;
  gap: 14px;
}

.page-faq .faq-section__split {
  display: grid;
  gap: 28px;
}

.page-faq .faq-item {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.page-faq .faq-item:hover {
  border-color: var(--sand);
}

.page-faq .faq-item[open] {
  border-color: rgba(217, 83, 30, 0.5);
  box-shadow: 0 8px 24px rgba(31, 23, 16, 0.08);
}

.page-faq .faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  border-radius: var(--radius-lg);
}

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

.page-faq .faq-item__summary::marker {
  content: "";
}

.page-faq .faq-item__summary:hover {
  background: rgba(217, 83, 30, 0.04);
}

.page-faq .faq-item__summary:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: -2px;
}

.page-faq .faq-item__num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--rust);
  min-width: 30px;
}

.page-faq .faq-item__title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  min-width: 0;
}

.page-faq .faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  position: relative;
  transition: background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.page-faq .faq-item__icon::before,
.page-faq .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--rust);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out);
}

.page-faq .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .faq-item[open] .faq-item__icon {
  background: rgba(217, 83, 30, 0.08);
}

.page-faq .faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-faq .faq-item__body {
  padding: 0 16px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  animation: faqBodyIn 0.25s var(--ease-out);
}

.page-faq .faq-item__body p {
  margin: 0 0 12px;
}

.page-faq .faq-item__body p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-section__visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--sand);
}

.page-faq .faq-section__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-faq .faq-section--navy .faq-section__inner {
  background: linear-gradient(140deg, var(--navy) 0%, #0e3a63 70%, #123f6b 100%);
  border-color: var(--navy);
  color: var(--cream);
}

.page-faq .faq-section--navy .faq-section__inner::before {
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0.8;
}

.page-faq .faq-section--navy .faq-section__head {
  border-bottom-color: rgba(244, 238, 223, 0.14);
}

.page-faq .faq-section--navy .faq-section__index {
  color: var(--gold);
  background: rgba(198, 154, 90, 0.14);
}

.page-faq .faq-section--navy .faq-section__title {
  color: var(--cream);
}

.page-faq .faq-section--navy .faq-section__lede {
  color: rgba(244, 238, 223, 0.72);
}

.page-faq .faq-section--navy .faq-item {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-faq .faq-section--navy .faq-item:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.page-faq .faq-section--navy .faq-item[open] {
  border-color: rgba(198, 154, 90, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.page-faq .faq-section--navy .faq-item__summary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.page-faq .faq-section--navy .faq-item__summary:focus-visible {
  outline-color: var(--gold);
}

.page-faq .faq-section--navy .faq-item__num {
  color: var(--gold);
}

.page-faq .faq-section--navy .faq-item__title {
  color: var(--cream);
}

.page-faq .faq-section--navy .faq-item__icon {
  border-color: var(--gold);
}

.page-faq .faq-section--navy .faq-item__icon::before,
.page-faq .faq-section--navy .faq-item__icon::after {
  background: var(--gold);
}

.page-faq .faq-section--navy .faq-item[open] .faq-item__icon {
  background: rgba(198, 154, 90, 0.14);
}

.page-faq .faq-section--navy .faq-item__body {
  color: rgba(244, 238, 223, 0.78);
}

.page-faq .faq-section--navy .faq-section__visual {
  border-color: rgba(198, 154, 90, 0.35);
}

.page-faq .faq-section--alt .faq-section__inner {
  background: rgba(214, 201, 188, 0.32);
}

.page-faq .faq-section--alt .faq-item {
  background: rgba(255, 255, 255, 0.6);
}

.page-faq .faq-support {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 0 20px 80px;
}

.page-faq .faq-support__card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  box-shadow: var(--shadow-panel);
}

.page-faq .faq-support__card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at center, rgba(198, 154, 90, 0.32), transparent 70%);
  pointer-events: none;
}

.page-faq .faq-support__card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(217, 83, 30, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.page-faq .faq-support__content {
  position: relative;
  z-index: 1;
}

.page-faq .faq-support__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  margin: 0 0 12px;
}

.page-faq .faq-support__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(244, 238, 223, 0.72);
  max-width: 480px;
  margin: 0 0 28px;
}

.page-faq .faq-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-faq .faq-support .btn--navy {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.page-faq .faq-support .btn--navy:hover,
.page-faq .faq-support .btn--navy:focus-visible {
  background: #d4ab6e;
  border-color: #d4ab6e;
  color: var(--ink);
}

.page-faq .faq-support .btn--ghost {
  border-color: rgba(244, 238, 223, 0.35);
  color: var(--cream);
  background: transparent;
}

.page-faq .faq-support .btn--ghost:hover,
.page-faq .faq-support .btn--ghost:focus-visible {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .page-faq .faq-hero {
    padding: 48px 32px 40px;
  }

  .page-faq .faq-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
  }

  .page-faq .faq-hero__visual img {
    aspect-ratio: 3 / 1.1;
    height: 100%;
    max-height: 400px;
  }

  .page-faq .faq-filter {
    padding: 8px 32px 40px;
  }

  .page-faq .faq-section {
    padding: 0 32px 48px;
    margin-bottom: 48px;
  }

  .page-faq .faq-section__inner {
    padding: 36px 36px 40px;
  }

  .page-faq .faq-section__head {
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .page-faq .faq-item__summary {
    padding: 18px 22px;
  }

  .page-faq .faq-item__body {
    padding: 0 22px 22px;
  }

  .page-faq .faq-section__split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 36px;
  }

  .page-faq .faq-section__visual {
    position: sticky;
    top: 116px;
  }

  .page-faq .faq-support {
    padding: 0 32px 96px;
  }

  .page-faq .faq-support__card {
    padding: 48px 44px;
  }
}

@media (min-width: 1024px) {
  .page-faq .faq-hero__content {
    padding-right: 20px;
  }

  .page-faq .faq-hero__title {
    font-size: 56px;
  }

  .page-faq .faq-filter {
    justify-content: center;
    gap: 14px;
  }

  .page-faq .faq-filter__pill {
    padding: 12px 22px;
    font-size: 15px;
  }

  .page-faq .faq-section__lede {
    max-width: 560px;
  }

  .page-faq .faq-item__title {
    font-size: 16px;
  }

  .page-faq .faq-item__body {
    font-size: 15px;
  }
}

@keyframes faqBodyIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
