.page-faq {
  --faq-radius: 16px;
  --faq-shadow: 0 6px 24px rgba(10, 31, 68, 0.08);
  background: var(--c-light);
  color: var(--c-dark);
  overflow-x: clip;
}

.page-faq .faq-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 107, 0, 0.5), transparent 30%),
    linear-gradient(130deg, var(--c-deep) 0%, var(--c-purple) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding: 32px 0 104px;
  color: var(--c-white);
}

.page-faq .faq-hero .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  font-family: var(--font-data);
  font-size: 13px;
}

.page-faq .faq-hero .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-faq .faq-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}

.page-faq .faq-hero .breadcrumb-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.page-faq .faq-hero .breadcrumb-link:hover {
  color: var(--c-gold);
}

.page-faq .faq-hero .breadcrumb-current {
  color: var(--c-gold);
  font-weight: 700;
}

.page-faq .faq-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}

.page-faq .faq-hero-copy {
  animation: none;
}

@media (prefers-reduced-motion: no-preference) {
  .page-faq .faq-hero-copy {
    animation: faq-rise 0.7s var(--ease) both;
  }
}

@keyframes faq-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-faq .faq-hero-kicker {
  color: var(--c-gold);
}

.page-faq .faq-hero h1 {
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.18;
  margin: 10px 0 16px;
  color: var(--c-white);
  letter-spacing: 0.01em;
}

.page-faq .faq-hero-lead {
  max-width: 46em;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.page-faq .faq-hero-note {
  max-width: 40em;
  margin: 20px 0 0;
  font-family: var(--font-data);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.page-faq .faq-hero-note a {
  color: var(--c-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.5);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-faq .faq-hero-note a:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.page-faq .faq-hero-media {
  position: relative;
  z-index: 0;
}

.page-faq .faq-hero-media::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -16px;
  bottom: -16px;
  left: 18px;
  border: 2px solid var(--c-gold);
  border-radius: var(--faq-radius);
}

.page-faq .faq-hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--faq-radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.page-faq .faq-jump {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: -48px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-faq .faq-jump-link {
  flex: 0 0 150px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--c-white);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 31, 68, 0.14);
  border-left: 4px solid var(--c-orange);
  color: var(--c-deep);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-faq .faq-jump-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 31, 68, 0.18);
}

.page-faq .faq-jump-num {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-faq .faq-jump-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.page-faq .faq-group {
  padding: 52px 0 8px;
}

.page-faq .section-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8DFEC;
}

.page-faq .section-head-text {
  min-width: 200px;
}

.page-faq .section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 18px 12px;
  background: var(--c-deep);
  color: var(--c-orange);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.page-faq .section-kicker {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-faq .section-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.2;
  color: var(--c-deep);
}

.page-faq .faq-stack {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.page-faq .faq-item {
  position: relative;
  background: var(--c-white);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
}

.page-faq .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 6px;
  background: var(--c-orange);
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
}

.page-faq .faq-q {
  margin: 0;
}

.page-faq .faq-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 20px 20px 26px;
  background: transparent;
  border: 0;
  border-radius: var(--faq-radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-deep);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.page-faq .faq-toggle:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 2px;
}

.page-faq .faq-q-index {
  flex: none;
  min-width: 26px;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-faq .faq-q-text {
  flex: 1;
}

.page-faq .faq-q-icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}

.page-faq .faq-q-icon::before,
.page-faq .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--c-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.page-faq .faq-q-icon::before {
  left: 3px;
  right: 3px;
  top: 10px;
  height: 2px;
}

.page-faq .faq-q-icon::after {
  top: 3px;
  bottom: 3px;
  left: 10px;
  width: 2px;
}

.page-faq .faq-toggle[aria-expanded="true"] .faq-q-icon::after {
  transform: scaleY(0);
}

.page-faq .faq-toggle[aria-expanded="true"] .faq-q-icon::before {
  background: var(--c-orange);
}

.page-faq .faq-toggle[aria-expanded="true"] {
  color: var(--c-orange);
}

.page-faq .faq-panel {
  padding: 2px 24px 24px 66px;
  border-top: 1px dashed #D8DFEC;
  font-size: 15px;
  line-height: 1.85;
  color: #51607A;
}

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

.page-faq .faq-panel a {
  color: var(--c-orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
}

.page-faq .faq-panel a:hover {
  color: var(--c-deep);
  border-color: var(--c-deep);
}

.page-faq .faq-contact {
  margin-top: 56px;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 215, 0, 0.14), transparent 30%),
    linear-gradient(130deg, var(--c-deep) 0%, var(--c-purple) 100%);
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  color: var(--c-white);
}

.page-faq .faq-contact-head {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.page-faq .faq-contact .section-title {
  color: var(--c-white);
}

.page-faq .faq-contact .section-kicker {
  color: var(--c-gold);
}

.page-faq .faq-contact .section-index {
  background: var(--c-orange);
  color: var(--c-deep);
}

.page-faq .faq-contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-faq .faq-contact-lead {
  max-width: 34em;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.page-faq .faq-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.page-faq .faq-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--c-white);
  text-decoration: none;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-faq a.faq-contact-row:hover {
  background: rgba(255, 107, 0, 0.2);
  border-color: var(--c-orange);
  transform: translateX(6px);
}

.page-faq .faq-contact-label {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-gold);
}

.page-faq .faq-contact-value {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
}

.page-faq .faq-contact-note {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.page-faq .faq-contact-note a {
  color: var(--c-gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.45);
}

.page-faq .faq-contact-note a:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

.page-faq .faq-contact-media {
  position: relative;
  transform: rotate(-1deg);
}

.page-faq .faq-contact-media::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--c-orange);
  border-radius: var(--faq-radius);
}

.page-faq .faq-contact-media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--faq-radius);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

@media (min-width: 880px) {
  .page-faq .faq-jump {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

  .page-faq .faq-jump-link {
    flex: none;
  }

  .page-faq .faq-group {
    padding: 64px 0 16px;
  }

  .page-faq .section-head {
    flex-wrap: nowrap;
    margin-bottom: 36px;
  }
}

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

  .page-faq .faq-hero h1 {
    font-size: 46px;
  }

  .page-faq .faq-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
  }

  .page-faq .faq-hero-media {
    transform: translateY(16px) rotate(1deg);
  }

  .page-faq .section-index {
    font-size: 44px;
    padding: 12px 20px 14px;
  }

  .page-faq .section-title {
    font-size: 32px;
  }

  .page-faq .faq-contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }
}
