.page-faq {
  --faq-muted: #5A6E7A;
  --faq-card-bg: #FFFFFF;
  --faq-focus: #F2B134;
  background: linear-gradient(180deg, #EAF1F6 0%, #F5F7FA 45%, #F5F7FA 100%);
  padding: 24px 0 0;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  .page-faq {
    scroll-behavior: auto;
  }
}

.page-faq .breadcrumb {
  margin: 0 0 32px;
}

.page-faq .faq-hero {
  padding: 0 0 56px;
}

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

.page-faq .faq-hero-copy {
  min-width: 0;
}

.page-faq .faq-hero-copy::before {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F2B134 0%, #F2B134 30%, #C23B22 30%, #C23B22 55%, #3A8E5A 55%, #3A8E5A 75%, #0B3C5D 75%, #0B3C5D 100%);
  margin-bottom: 18px;
}

.page-faq .faq-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B3C5D;
  margin: 0 0 10px;
}

.page-faq .faq-kicker-dot {
  width: 8px;
  height: 8px;
  background: #F2B134;
  display: inline-block;
  border-radius: 2px;
}

.page-faq .faq-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0B3C5D;
  margin: 0 0 16px;
}

.page-faq .faq-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #1B232B;
  max-width: 560px;
  margin: 0;
}

.page-faq .faq-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 28px;
}

.page-faq .faq-hero-stat {
  display: flex;
  flex-direction: column;
}

.page-faq .faq-hero-stat span {
  font-size: 28px;
  font-weight: 900;
  color: #0B3C5D;
  line-height: 1.2;
}

.page-faq .faq-hero-stat em {
  font-style: normal;
  font-size: 13px;
  color: #5A6E7A;
  margin-top: 4px;
}

.page-faq .faq-hero-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #D8E0E6;
  background: #F5F7FA;
  min-width: 0;
}

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

.page-faq .faq-skilltree {
  padding: 0 0 72px;
}

.page-faq .faq-skilltree-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-faq .faq-skilltree-nav {
  background: #FFFFFF;
  border: 1px solid #D8E0E6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(11, 60, 93, 0.06);
  min-width: 0;
}

.page-faq .faq-skilltree-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F2B134;
  margin: 0 0 6px;
}

.page-faq .faq-skilltree-title {
  font-size: 24px;
  font-weight: 900;
  color: #0B3C5D;
  margin: 0 0 8px;
}

.page-faq .faq-skilltree-desc {
  font-size: 14px;
  color: #5A6E7A;
  margin: 0 0 24px;
  line-height: 1.6;
}

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

.page-faq .faq-nav-group:last-child {
  margin-bottom: 0;
}

.page-faq .faq-nav-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #0B3C5D;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.page-faq .faq-nav-tag {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 2px;
  flex-shrink: 0;
}

.page-faq .faq-nav-tag--orange {
  background: #F2B134;
}

.page-faq .faq-nav-tag--green {
  background: #1D6E6E;
}

.page-faq .faq-nav-tag--red {
  background: #C23B22;
}

.page-faq .faq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid #D8E0E6;
}

.page-faq .faq-nav-list li {
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 6px;
}

.page-faq .faq-nav-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: #F2B134;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #D8E0E6;
  transition: transform 0.2s ease;
}

.page-faq .faq-nav-list li:hover::before {
  transform: scale(1.25);
}

.page-faq .faq-nav-list a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: #0B3C5D;
  font-size: 14px;
  line-height: 1.5;
}

.page-faq .faq-nav-list a span {
  font-weight: 800;
  color: #F2B134;
  font-size: 12px;
  margin-right: 6px;
}

.page-faq .faq-nav-list a:hover,
.page-faq .faq-nav-list a:focus {
  color: #1D6E6E;
}

.page-faq .faq-nav-list a:focus-visible {
  outline: 2px solid #F2B134;
  outline-offset: 2px;
  border-radius: 4px;
}

.page-faq .faq-skilltree-answers {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.page-faq .faq-answer-item {
  background: #FFFFFF;
  border: 1px solid #D8E0E6;
  border-left: 4px solid #0B3C5D;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(11, 60, 93, 0.04);
  scroll-margin-top: 96px;
}

.page-faq .faq-answer-item:nth-child(4n+2) {
  border-left-color: #1D6E6E;
}

.page-faq .faq-answer-item:nth-child(4n+3) {
  border-left-color: #F2B134;
}

.page-faq .faq-answer-item:nth-child(4n+4) {
  border-left-color: #C23B22;
}

.page-faq .faq-answer-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.page-faq .faq-answer-num {
  flex-shrink: 0;
  background: #0B3C5D;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 6px;
  min-width: 36px;
  text-align: center;
}

.page-faq .faq-answer-head h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #0B3C5D;
  margin: 2px 0 0;
}

.page-faq .faq-answer-meta {
  font-size: 12px;
  color: #5A6E7A;
  margin: 4px 0 0;
}

.page-faq .faq-answer-body {
  color: #1B232B;
  font-size: 15px;
  line-height: 1.75;
}

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

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

.page-faq .faq-answer-body a {
  color: #1D6E6E;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-faq .faq-answer-body a:hover,
.page-faq .faq-answer-body a:focus {
  color: #0B3C5D;
}

.page-faq .faq-answer-figure {
  margin: 20px 0 0;
  max-width: 260px;
}

.page-faq .faq-answer-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #D8E0E6;
}

.page-faq .faq-answer-figure figcaption {
  font-size: 12px;
  color: #5A6E7A;
  margin-top: 8px;
  line-height: 1.5;
}

.page-faq .faq-hot {
  padding: 0 0 72px;
  border-top: 1px solid #D8E0E6;
  background: linear-gradient(180deg, #F0F4F7 0%, transparent 100%);
}

.page-faq .faq-hot .section-head {
  margin-bottom: 32px;
}

.page-faq .faq-hot-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F2B134;
  margin: 0 0 6px;
}

.page-faq .faq-hot .section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  color: #0B3C5D;
  margin: 0 0 8px;
}

.page-faq .faq-hot-intro {
  color: #5A6E7A;
  font-size: 15px;
  margin: 0;
}

.page-faq .faq-hot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-faq .faq-hot-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-faq .faq-hot-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-left: 1px solid #D8E0E6;
  border-bottom: 1px solid #D8E0E6;
  border-bottom-left-radius: 12px;
}

.page-faq .faq-rank {
  font-size: 13px;
  font-weight: 900;
  color: #FFFFFF;
  background: #0B3C5D;
  padding: 5px 9px;
  border-radius: 4px;
  align-self: flex-start;
}

.page-faq .faq-hot-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0B3C5D;
  margin: 16px 0 8px;
  line-height: 1.4;
}

.page-faq .faq-hot-card p {
  color: #5A6E7A;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  flex-grow: 1;
}

.page-faq .faq-hot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: #0B3C5D;
  text-decoration: none;
}

.page-faq .faq-hot-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.page-faq .faq-hot-link:hover::after,
.page-faq .faq-hot-link:focus::after {
  transform: translateX(4px);
}

.page-faq .faq-hot-link:focus-visible {
  outline: 2px solid #F2B134;
  outline-offset: 2px;
  border-radius: 4px;
}

.page-faq .faq-support {
  padding: 0 16px 80px;
}

.page-faq .faq-support-inner {
  background: #0B3C5D;
  border-radius: 20px;
  overflow: hidden;
  padding: 32px 24px;
}

.page-faq .faq-support-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F2B134;
  margin: 0 0 6px;
}

.page-faq .faq-support-content h2 {
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.25;
}

.page-faq .faq-support-content > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.page-faq .faq-support-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-faq .faq-support-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.page-faq .faq-support-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-faq .faq-support-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #F4C54A;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: center;
}

.page-faq .faq-support-list span {
  font-weight: 800;
  color: #F2B134;
  min-width: 40px;
}

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

.page-faq .faq-support-cta {
  display: inline-block;
  background: #F2B134;
  color: #0A1E28;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-faq .faq-support-cta:hover,
.page-faq .faq-support-cta:focus {
  background: #F4C54A;
  transform: translateY(-2px);
}

.page-faq .faq-support-cta:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

.page-faq .faq-support-link {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-faq .faq-support-link:hover,
.page-faq .faq-support-link:focus {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.page-faq .faq-support-link:focus-visible {
  outline: 2px solid #F2B134;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .page-faq .faq-hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }

  .page-faq .faq-hero-figure {
    border-radius: 20px;
  }

  .page-faq .faq-hot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-faq .faq-support-list li {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .page-faq .faq-hero {
    padding-bottom: 72px;
  }

  .page-faq .faq-skilltree-inner {
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
  }

  .page-faq .faq-skilltree-nav {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }

  .page-faq .faq-hot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-faq .faq-support-inner {
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr;
  }
}
