.page-faq {
  position: relative;
  color: var(--c-text);
  overflow: clip;
}

.page-faq .faq-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text-dim);
  margin-bottom: 2rem;
}

.page-faq .breadcrumb a {
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

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

.page-faq .crumb-sep {
  color: var(--c-text-dim);
  opacity: 0.5;
}

.page-faq .faq-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-faq .faq-hero-copy h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
  max-width: 720px;
}

.page-faq .faq-hero-copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-text-dim);
  max-width: 600px;
  margin-bottom: 2rem;
}

.page-faq .faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.page-faq .faq-hero-media {
  max-width: 800px;
  width: 100%;
}

.page-faq .faq-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(74, 127, 193, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, rgba(19, 50, 92, 0.9), rgba(4, 16, 31, 0.9));
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 5rem;
  position: relative;
}

.page-faq .faq-sidebar {
  position: relative;
  z-index: 5;
}

.page-faq .faq-sidebar-inner {
  background: rgba(19, 50, 92, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(74, 127, 193, 0.28);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(4, 16, 31, 0.45);
}

.page-faq .faq-anchor-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.page-faq .faq-anchor-list a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-faq .faq-anchor-list a:hover {
  background: rgba(198, 244, 50, 0.06);
  border-color: rgba(198, 244, 50, 0.3);
  color: var(--c-lime);
  transform: translateX(4px);
}

.page-faq .faq-index {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--c-orange);
  letter-spacing: 0.08em;
}

.page-faq .faq-sidebar-status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 212, 240, 0.12);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--c-text-dim);
}

.page-faq .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 0 0 rgba(198, 244, 50, 0.4);
  animation: faqPulse 2s infinite;
}

@keyframes faqPulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 244, 50, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(198, 244, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 244, 50, 0); }
}

.page-faq .faq-content {
  position: relative;
  min-width: 0;
}

.page-faq .faq-section {
  margin-bottom: 3rem;
}

.page-faq .faq-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-faq .faq-section-head .slash-accent {
  flex: 0 0 auto;
  width: 6px;
  height: 2.75rem;
  background: var(--c-lime);
  display: inline-block;
  transform: skewX(-20deg);
  border-radius: 2px;
}

.page-faq .faq-section-head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.25rem;
}

.page-faq .faq-section-head p {
  font-size: 0.9375rem;
  color: var(--c-text-dim);
  margin: 0;
}

.page-faq .faq-list {
  display: grid;
  gap: 1rem;
}

.page-faq .faq-item {
  background: rgba(19, 50, 92, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(74, 127, 193, 0.24);
  overflow: hidden;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.page-faq .faq-item:hover {
  border-color: rgba(198, 244, 50, 0.4);
  background: rgba(19, 50, 92, 0.72);
}

.page-faq .faq-item[open] {
  border-color: rgba(198, 244, 50, 0.6);
  background: rgba(19, 50, 92, 0.82);
}

.page-faq .faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--c-text);
  user-select: none;
}

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

.page-faq .faq-question::marker {
  content: none;
}

.page-faq .faq-icon {
  flex: 0 0 auto;
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--c-bg);
  background: var(--c-lime);
  border-radius: 8px;
  transform: skewX(-8deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-faq .faq-item:hover .faq-icon,
.page-faq .faq-item[open] .faq-icon {
  transform: skewX(-8deg) rotate(4deg);
  background: var(--c-orange);
}

.page-faq .faq-answer {
  padding: 0 1.5rem 1.5rem 4.625rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--c-text-dim);
}

.page-faq .faq-answer p {
  margin: 0 0 0.875rem;
}

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

.page-faq .faq-apple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.page-faq .faq-apple-media {
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}

.page-faq .faq-apple-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(74, 127, 193, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: linear-gradient(160deg, rgba(19, 50, 92, 0.9), rgba(4, 16, 31, 0.95));
}

.page-faq .faq-cta {
  margin-top: 3.5rem;
  padding: 2rem 1.75rem;
  border-radius: 24px;
  border: 1px solid rgba(198, 244, 50, 0.25);
  position: relative;
}

.page-faq .faq-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 1rem 0 0.625rem;
}

.page-faq .faq-cta p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-text-dim);
  margin-bottom: 1.5rem;
}

.page-faq .faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.page-faq .speed-lines {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 320px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(198, 244, 50, 0.08) 18px,
    rgba(198, 244, 50, 0.08) 20px
  );
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

@media (min-width: 640px) {
  .page-faq .faq-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-faq .faq-hero-copy h1 {
    font-size: 2.75rem;
  }

  .page-faq .faq-apple-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-faq .faq-cta {
    padding: 2.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-faq .faq-hero {
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .page-faq .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2.5rem;
  }

  .page-faq .faq-sidebar-inner {
    position: sticky;
    top: 6.5rem;
  }

  .page-faq .faq-section-head h2 {
    font-size: 2rem;
  }

  .page-faq .faq-question {
    font-size: 1.125rem;
    padding: 1.5rem 1.75rem;
  }

  .page-faq .faq-answer {
    padding-right: 2.75rem;
  }
}
