.page-faq {
  --faq-line: #39FF14;
  --faq-grid: #1E2A3A;
  --faq-muted: #A0B0C0;
  --faq-panel-bg: #121D2D;
  --faq-cut: 8px 20px 8px 20px;
  --faq-ease: cubic-bezier(0.22, 0.68, 0.37, 1);
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}

.page-faq .container {
  width: min(calc(100% - 32px), var(--container-width));
  margin-inline: auto;
}

.page-faq img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 16px;
  font-size: 14px;
  color: var(--faq-muted);
  flex-wrap: wrap;
}

.page-faq .breadcrumb a {
  color: var(--faq-muted);
  text-decoration: none;
  transition: color 0.25s var(--faq-ease);
}

.page-faq .breadcrumb a:hover {
  color: var(--faq-line);
}

.page-faq .breadcrumb-sep {
  color: var(--faq-muted);
  opacity: 0.7;
}

.page-faq .breadcrumb-current {
  color: var(--c-white);
  font-weight: 500;
}

.page-faq .faq-intro {
  position: relative;
  padding-bottom: 40px;
}

.page-faq .faq-intro::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 40px;
  width: 340px;
  height: 340px;
  background:
    linear-gradient(135deg, transparent 15%, rgba(57, 255, 20, 0.07) 15%, rgba(57, 255, 20, 0.07) 20%, transparent 20%),
    linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 30%, rgba(255, 107, 53, 0.05) 33%, transparent 33%);
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

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

.page-faq .faq-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 0 8px;
}

.page-faq .faq-hero-copy {
  max-width: 720px;
}

.page-faq .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--faq-line);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-faq .section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--faq-line);
  display: inline-block;
}

.page-faq .faq-hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  color: var(--c-white);
  text-transform: uppercase;
  border-left: 4px solid var(--faq-line);
  padding-left: 16px;
}

.page-faq .faq-hero-lead {
  font-size: 16px;
  color: var(--faq-muted);
  max-width: 620px;
  margin: 0 0 24px;
}

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

.page-faq .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--faq-line);
  background: var(--faq-line);
  color: #062814;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--faq-cut);
  transition: transform 0.25s var(--faq-ease), box-shadow 0.25s var(--faq-ease);
  font-family: var(--font-body);
}

.page-faq .btn:hover {
  transform: translateX(3px);
  box-shadow: 8px 8px 0 rgba(57, 255, 20, 0.2);
}

.page-faq .btn--ghost {
  background: transparent;
  color: var(--c-white);
}

.page-faq .btn--ghost:hover {
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.08);
}

.page-faq .btn--orange {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: #201007;
}

.page-faq .btn--orange:hover {
  box-shadow: 8px 8px 0 rgba(255, 107, 53, 0.22);
}

.page-faq .faq-hero-aside {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.page-faq .faq-route-map {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--faq-panel-bg);
  border-radius: var(--faq-cut);
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 96px;
}

.page-faq .route-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-body);
  color: #08121E;
}

.page-faq .route-marker--start {
  background: var(--faq-line);
}

.page-faq .route-marker--mid {
  background: var(--c-orange);
}

.page-faq .route-marker--end {
  background: var(--c-white);
}

.page-faq .route-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--faq-line), var(--c-orange));
  position: relative;
}

.page-faq .route-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.page-faq .faq-meta-card {
  background: var(--faq-panel-bg);
  border-radius: var(--faq-cut);
  padding: 20px 28px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-faq .meta-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--faq-muted);
  text-transform: uppercase;
}

.page-faq .faq-meta-num {
  font-family: var(--font-data);
  font-size: 2.2rem;
  color: var(--faq-line);
  line-height: 1.2;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 80px;
}

.page-faq .faq-sidebar {
  position: relative;
}

.page-faq .faq-sidebar-head {
  margin-bottom: 16px;
}

.page-faq .faq-sidebar-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0 0 4px;
  color: var(--c-white);
  letter-spacing: 0.04em;
}

.page-faq .faq-sidebar-desc {
  font-size: 14px;
  color: var(--faq-muted);
  margin: 0;
}

.page-faq .faq-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.page-faq .filter-button {
  padding: 10px 18px;
  border: 1px solid rgba(160, 176, 192, 0.35);
  background: transparent;
  color: var(--faq-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s var(--faq-ease);
}

.page-faq .filter-button:hover {
  border-color: var(--faq-line);
  color: var(--faq-line);
}

.page-faq .filter-button.is-active {
  background: var(--faq-line);
  border-color: var(--faq-line);
  color: #062814;
  font-weight: 700;
}

.page-faq .faq-sidebar-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(57, 255, 20, 0.08);
  padding: 14px 16px;
  border-radius: var(--faq-cut);
  border: 1px dashed rgba(57, 255, 20, 0.35);
}

.page-faq .faq-sidebar-note p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--faq-muted);
  margin: 0;
}

.page-faq .live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--faq-line);
  flex: 0 0 10px;
  margin-top: 5px;
  position: relative;
}

.page-faq .live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--faq-line);
  animation: faq-pulse 1.6s ease-out infinite;
}

@keyframes faq-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.page-faq .faq-group {
  margin-bottom: 20px;
}

.page-faq .faq-group-head {
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 18px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: start;
}

.page-faq .faq-group-index {
  font-family: var(--font-data);
  font-size: 2rem;
  color: var(--faq-line);
  line-height: 1;
  grid-row: span 2;
}

.page-faq .faq-group-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
  color: var(--c-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-faq .faq-group-desc {
  font-size: 14px;
  color: var(--faq-muted);
  margin: 4px 0 0;
}

.page-faq .faq-image-card {
  position: relative;
  border-radius: var(--faq-cut);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--faq-panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-faq .faq-image-card img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, #1b2f4a, #091527);
}

.page-faq .faq-image-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 48px);
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(6, 19, 33, 0.92) 40%, rgba(6, 19, 33, 0.7));
  backdrop-filter: blur(3px);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 12px 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-faq .faq-image-card__overlay p {
  margin: 0;
  font-size: 13px;
  color: var(--c-white);
  line-height: 1.4;
}

.page-faq .data-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--c-orange);
  color: #1a0904;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  white-space: nowrap;
}

.page-faq .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-faq .faq-item {
  background: var(--faq-panel-bg);
  border-radius: var(--faq-cut);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.3s var(--faq-ease);
}

.page-faq .faq-item:hover {
  border-color: rgba(57, 255, 20, 0.4);
}

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

.page-faq .faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: var(--c-white);
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  appearance: none;
  border-radius: var(--faq-cut);
  position: relative;
}

.page-faq .faq-q-marker {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--faq-line);
  background: rgba(57, 255, 20, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.page-faq .faq-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 24px;
}

.page-faq .faq-toggle-icon::before,
.page-faq .faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--faq-line);
  transition: transform 0.3s var(--faq-ease);
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
}

.page-faq .faq-toggle-icon::before {
  transform: translateY(-50%) rotate(90deg);
}

.page-faq .faq-toggle-icon::after {
  transform: translateY(-50%);
}

.page-faq .faq-question-btn[aria-expanded="true"] .faq-toggle-icon::before,
.page-faq .faq-question-btn[aria-expanded="false"] .faq-toggle-icon::before {
  transform: translateY(-50%) rotate(0deg);
}

.page-faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--faq-ease);
}

.page-faq .faq-answer.is-open {
  grid-template-rows: 1fr;
}

.page-faq .faq-answer-inner {
  overflow: hidden;
  padding: 0 16px;
}

.page-faq .faq-answer.is-open .faq-answer-inner {
  padding: 0 16px 20px;
}

.page-faq .faq-answer p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--faq-muted);
  line-height: 1.85;
}

.page-faq .faq-answer-inner > p:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.page-faq .faq-tips {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-faq .faq-tips li {
  font-size: 14px;
  color: var(--faq-muted);
  padding-left: 22px;
  position: relative;
}

.page-faq .faq-tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--c-orange);
  transform: rotate(-45deg);
  transform-origin: left center;
}

.page-faq .faq-more {
  margin-top: 36px;
}

.page-faq .faq-more-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-radius: var(--faq-cut);
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.9), rgba(30, 42, 58, 0.9));
  border: 1px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.page-faq .faq-more-card::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 107, 53, 0.2) 40%, rgba(255, 107, 53, 0.2) 45%, transparent 45%);
  transform: rotate(12deg);
}

.page-faq .faq-more-card .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.page-faq .faq-more-title {
  font-size: 1.4rem;
  color: var(--c-white);
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-faq .faq-more-desc {
  font-size: 14px;
  color: var(--faq-muted);
  margin: 0;
  max-width: 540px;
  line-height: 1.75;
}

.page-faq [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--faq-ease), transform 0.6s var(--faq-ease);
}

.page-faq [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-faq [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-faq .live-dot::after {
    animation: none;
  }

  .page-faq .faq-item {
    border-color: rgba(57, 255, 20, 0.18);
  }
}

@media (min-width: 860px) {
  .page-faq .faq-hero-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-faq .faq-hero-copy {
    max-width: 780px;
  }

  .page-faq .faq-hero-aside {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
    max-width: 400px;
  }

  .page-faq .faq-route-map {
    padding: 14px 18px;
    gap: 8px;
  }

  .page-faq .route-marker {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .page-faq .route-line {
    width: 30px;
  }

  .page-faq .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .page-faq .faq-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
  }

  .page-faq .faq-filter-bar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
  }

  .page-faq .filter-button {
    justify-content: flex-start;
    border-radius: 0;
    border: none;
    border-left: 3px solid rgba(160, 176, 192, 0.25);
    background: transparent;
    padding: 12px 16px;
    position: relative;
  }

  .page-faq .filter-button:hover {
    border-left-color: var(--faq-line);
    background: rgba(57, 255, 20, 0.06);
    color: var(--faq-line);
    transform: translateX(2px);
  }

  .page-faq .filter-button.is-active {
    border-left-color: var(--faq-line);
    background: rgba(57, 255, 20, 0.12);
    color: var(--faq-line);
    border-radius: 0;
  }

  .page-faq .faq-sidebar-note {
    margin-top: 20px;
  }

  .page-faq .faq-group-head {
    grid-template-columns: auto 1fr;
  }

  .page-faq .faq-question-btn {
    padding: 20px 22px;
    font-size: 16px;
  }

  .page-faq .faq-answer-inner,
  .page-faq .faq-answer.is-open .faq-answer-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-faq .faq-answer-inner {
    max-width: 760px;
  }

  .page-faq .faq-image-card__overlay {
    width: auto;
    right: 0;
  }

  .page-faq .faq-more-card {
    padding: 36px 32px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .page-faq .faq-more-card .btn {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (min-width: 1120px) {
  .page-faq .faq-hero-aside {
    max-width: 460px;
  }

  .page-faq .faq-meta-card {
    padding: 24px 32px;
  }

  .page-faq .faq-group .faq-accordion {
    padding-left: 56px;
  }
}
