.page-faq {
  background: var(--light);
  color: var(--dark);
  min-height: 100vh;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 12px;
  font-size: 0.9rem;
}

.page-faq .breadcrumb__link {
  color: var(--deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.page-faq .breadcrumb__link:hover {
  color: var(--mid);
  border-bottom-color: var(--accent);
}

.page-faq .breadcrumb__link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.page-faq .breadcrumb__item {
  font-weight: 700;
  color: var(--deep);
}

.page-faq .breadcrumb__sep {
  color: var(--line);
  font-family: var(--font-data);
}

.page-faq .faq-hero {
  background: var(--deep);
  color: var(--white);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.page-faq .faq-hero::before {
  content: "HELP DESK";
  position: absolute;
  right: -12px;
  bottom: 18px;
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(149, 213, 178, 0.08);
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
}

.page-faq .faq-hero__grid {
  align-items: center;
  row-gap: 32px;
}

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

.page-faq .faq-hero .section-kicker {
  color: var(--accent);
  font-family: var(--font-data);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-faq .faq-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 4.2vw, 2.6rem);
  line-height: 1.18;
  margin: 0 0 18px;
  max-width: 15ch;
  text-wrap: balance;
}

.page-faq .faq-hero h1::after {
  content: "";
  display: block;
  width: 112px;
  height: 8px;
  margin-top: 18px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 10px,
    var(--dark) 10px 14px
  );
}

.page-faq .faq-hero__lead {
  color: var(--mint);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 56ch;
  margin: 0;
}

.page-faq .faq-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-faq .faq-hero .data-tag {
  background: rgba(255, 214, 10, 0.14);
  color: var(--white);
  border: 1px solid var(--line);
}

.page-faq .faq-hero .data-tag--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--dark);
}

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

.page-faq .faq-hero__imgwrap {
  position: relative;
  border: 3px solid var(--dark);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
  background: var(--mid);
}

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

.page-faq .faq-hero__imgwrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 8px,
    var(--dark) 8px 12px
  );
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

.page-faq .faq-hero__strip {
  height: 14px;
  margin-top: 48px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 14px,
    rgba(17, 17, 17, 0.85) 14px 18px
  );
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  position: relative;
  z-index: 1;
}

.page-faq .faq-desk {
  padding: 48px 0 0;
}

.page-faq .faq-desk__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.page-faq .faq-toc {
  border-top: 4px solid var(--deep);
  padding-top: 14px;
}

.page-faq .faq-toc__panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-faq .faq-toc__title {
  display: none;
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.page-faq .faq-toc__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 2px solid var(--deep);
  background: var(--white);
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(27, 67, 50, 0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.page-faq .faq-toc__link:hover {
  transform: translate(1px, 1px);
  box-shadow: 5px 5px 0 rgba(27, 67, 50, 0.24);
  background: var(--accent);
}

.page-faq .faq-toc__link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.page-faq .faq-toc__num {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--mid);
  transition: color 0.15s ease;
}

.page-faq .faq-toc__link:hover .faq-toc__num {
  color: var(--dark);
}

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

.page-faq .faq-section {
  margin-bottom: 56px;
  scroll-margin-top: 120px;
}

.page-faq .faq-section__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--deep);
}

.page-faq .faq-section__head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  margin: 10px 0 4px;
  color: var(--deep);
}

.page-faq .faq-section__head p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.page-faq .faq-item {
  border: 2px solid var(--deep);
  background: var(--white);
  margin-bottom: 14px;
  box-shadow: 6px 6px 0 rgba(27, 67, 50, 0.14);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.page-faq .faq-item[open] {
  box-shadow: 8px 8px 0 rgba(27, 67, 50, 0.22);
}

.page-faq .faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--deep);
  position: relative;
  transition: background 0.15s ease;
}

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

.page-faq .faq-item summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 5px;
  background: var(--accent);
}

.page-faq .faq-item summary:hover {
  background: rgba(255, 214, 10, 0.12);
}

.page-faq .faq-item summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

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

.page-faq .faq-item__mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid var(--dark);
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-faq .faq-item[open] .faq-item__mark {
  transform: rotate(45deg);
  background: var(--white);
}

.page-faq .faq-item__body {
  border-top: 2px solid var(--line);
  padding: 16px 20px 20px;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

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

.page-faq .faq-item[open] .faq-item__body {
  animation: faq-fade-in 0.25s ease;
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-faq .faq-inline-link {
  color: var(--deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease, background 0.15s ease;
}

.page-faq .faq-inline-link:hover {
  text-decoration-color: var(--mid);
  background: rgba(255, 214, 10, 0.2);
}

.page-faq .faq-inline-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.page-faq .faq-contact {
  margin-top: 64px;
  scroll-margin-top: 110px;
}

.page-faq .faq-contact__inner {
  display: grid;
  gap: 0;
  background: var(--deep);
  border: 3px solid var(--dark);
  box-shadow: 12px 12px 0 rgba(17, 17, 17, 0.22);
  padding: 32px 24px 40px;
  color: var(--white);
}

.page-faq .faq-contact__imgwrap {
  border: 2px solid var(--accent);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
  background: var(--mid);
  margin-bottom: 24px;
}

.page-faq .faq-contact__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.page-faq .faq-contact__copy {
  max-width: 580px;
}

.page-faq .faq-contact__head {
  border-bottom-color: var(--accent);
}

.page-faq .faq-contact__head h2 {
  color: var(--white);
}

.page-faq .faq-contact__copy > p {
  color: var(--mint);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.page-faq .faq-contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
}

.page-faq .faq-contact__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-faq .faq-contact__list strong {
  font-family: var(--font-data);
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 700;
}

.page-faq .faq-contact__note {
  color: var(--mint);
  font-size: 0.88rem;
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin: 0 0 20px;
}

.page-faq .faq-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-faq .button-accent {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--dark);
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 5px 5px 0 var(--dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-faq .button-accent:hover {
  transform: translate(1px, 1px);
  box-shadow: 6px 6px 0 var(--dark);
}

.page-faq .button-accent:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.page-faq .button-ghost {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--mint);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.page-faq .button-ghost:hover {
  background: rgba(149, 213, 178, 0.14);
  border-color: var(--accent);
  color: var(--accent);
}

.page-faq .button-ghost:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .page-faq .faq-contact__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 48px;
    align-items: center;
  }

  .page-faq .faq-contact__imgwrap {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .page-faq .faq-desk__inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
  }

  .page-faq .faq-toc {
    position: sticky;
    top: 120px;
    border-top: none;
    border-left: 4px solid var(--deep);
    padding-left: 20px;
    padding-top: 2px;
  }

  .page-faq .faq-toc__panel {
    display: block;
  }

  .page-faq .faq-toc__title {
    display: block;
    margin-bottom: 14px;
  }

  .page-faq .faq-toc__link {
    display: flex;
    padding: 10px 14px;
    margin-bottom: 10px;
  }

  .page-faq .faq-toc__num {
    color: var(--accent);
  }
}

@media (min-width: 1200px) {
  .page-faq .faq-hero {
    padding-top: 56px;
  }

  .page-faq .faq-hero__lead {
    font-size: 1.08rem;
  }
}
