.page-faq {
  background: var(--blue-900);
  color: var(--cream);
  overflow-x: hidden;
}

.page-faq .breadcrumb {
  padding-top: 28px;
}

.page-faq__hero {
  padding-top: 30px;
  display: grid;
  gap: 24px;
}

.page-faq__hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5.6vw, 46px);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.page-faq__hero-copy .page-intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.84);
  max-width: 760px;
  margin: 0;
}

.page-faq__hero-img {
  margin: 0;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: var(--blue-800);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-faq__hero-img img,
.page-faq__download-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--cream);
}

.page-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.page-faq__toc {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--site-radius);
  padding: 18px;
}

.page-faq__toc-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.page-faq__toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-faq__toc-link {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.85);
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.page-faq__toc-link:hover,
.page-faq__toc-link[aria-current="true"] {
  background: var(--gold);
  color: var(--blue-900);
  border-color: var(--gold);
}

.page-faq__chapter {
  scroll-margin-top: 96px;
  margin: 0 0 30px;
}

.page-faq__chapter h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-faq .panel-fold {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--site-radius);
  margin: 0 0 14px;
  transition: background 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(6px);
}

.page-faq .panel-fold[open] {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.26);
}

.page-faq .panel-fold summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.page-faq .panel-fold summary::-webkit-details-marker,
.page-faq .panel-fold summary::marker {
  display: none;
  content: "";
}

.page-faq .panel-fold summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-numeric);
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.page-faq .panel-fold[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-faq .panel-fold p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 20px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.84);
}

.page-faq .panel-fold[open]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: repeating-linear-gradient(
    118deg,
    transparent 0px,
    transparent 10px,
    rgba(255, 212, 160, 0.08) 10px,
    rgba(255, 212, 160, 0.08) 13px,
    transparent 13px,
    transparent 26px
  );
  animation: pageFaqSpeedlines 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pageFaqSpeedlines {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.page-faq__download {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-faq__download::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22), transparent 65%);
  pointer-events: none;
}

.page-faq__download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.page-faq__download-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
  margin: 0 0 14px;
}

.page-faq__download-copy > p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.86);
  margin: 0 0 18px;
}

.page-faq__steps {
  counter-reset: faqStep;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-faq__steps li {
  position: relative;
  padding: 12px 0 12px 46px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.9);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.page-faq__steps li:last-child {
  border-bottom: 0;
}

.page-faq__steps li::before {
  counter-increment: faqStep;
  content: counter(faqStep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue-900);
  font-family: var(--font-numeric);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-faq__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  background: var(--gold);
  color: var(--blue-900);
  border-radius: 999px;
  padding: 15px 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.28);
}

.page-faq__download-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 46px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.page-faq__download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 160, 23, 0.4);
}

.page-faq__download-btn:hover::after {
  opacity: 1;
  left: calc(100% + 40px);
  transition: left 0.6s ease, opacity 0.2s ease;
}

.page-faq__download-img {
  margin: 0;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-faq__contact {
  padding-top: 56px;
  padding-bottom: 80px;
}

.page-faq__contact-intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.84);
  max-width: 620px;
  margin: 8px 0 28px;
}

.page-faq__contact-grid {
  gap: 18px;
}

.page-faq .data-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--site-radius);
  padding: 24px;
  min-height: 100%;
}

.page-faq .data-card h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.page-faq .data-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 240, 230, 0.88);
  margin: 0 0 8px;
}

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

.page-faq .data-card:nth-child(3) {
  grid-column: 1 / -1;
}

.page-faq__contact-line {
  font-family: var(--font-numeric);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  word-break: break-all;
}

.page-faq__inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq__inline-link:hover {
  color: var(--orange);
}

@media (min-width: 720px) {
  .page-faq__download-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
  }
}

@media (min-width: 900px) {
  .page-faq__hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding-top: 48px;
  }

  .page-faq__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  .page-faq__toc {
    position: sticky;
    top: 100px;
  }

  .page-faq__toc-list {
    flex-direction: column;
    gap: 4px;
  }

  .page-faq__toc-link {
    border-radius: 12px;
    padding: 10px 16px;
  }
}
