.page-faq {
  position: relative;
  color: #E0E0E0;
  background:
    radial-gradient(circle at 85% -10%, rgba(75, 0, 130, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 10% 45%, rgba(128, 0, 32, 0.18) 0%, transparent 38%),
    linear-gradient(180deg, #0A0A0F 0%, #0E0E15 100%);
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px 90px;
}

.page-faq .faq-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #9A9AA8;
  margin-bottom: 28px;
}

.page-faq .breadcrumb a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-faq .breadcrumb a:hover,
.page-faq .breadcrumb a:focus-visible {
  color: #FFD700;
  outline: none;
  text-decoration: underline;
}

.page-faq .breadcrumb-sep {
  color: #6E6E78;
}

.page-faq .faq-hero {
  display: grid;
  gap: 28px;
  margin-bottom: 48px;
}

.page-faq .faq-hero-text {
  position: relative;
}

.page-faq .section-kicker {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-faq .section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.page-faq .page-title {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 0 0 16px;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.page-faq .page-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #9A9AA8;
  max-width: 560px;
  margin: 0;
}

.page-faq .faq-hero-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #101018;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.page-faq .faq-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 229, 255, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-faq .faq-hero-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #D4AF37, rgba(212, 175, 55, 0.1));
  z-index: 2;
}

.page-faq .faq-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-faq .faq-index-inner {
  background: rgba(16, 16, 24, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.page-faq .faq-index-title {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0 0 14px;
}

.page-faq .faq-index-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-faq .faq-index-link {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #E0E0E0;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-faq .faq-index-link:hover,
.page-faq .faq-index-link:focus-visible {
  background: #D4AF37;
  color: #0A0A0F;
  border-color: #FFD700;
  outline: none;
  transform: translateY(-1px);
}

.page-faq .faq-index-note {
  font-size: 12px;
  color: #6E6E78;
  margin: 0;
}

.page-faq .faq-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-faq .faq-section {
  position: relative;
  border-radius: 24px;
  padding: 28px 20px 24px;
  background: linear-gradient(135deg, rgba(26, 26, 36, 0.92) 0%, rgba(16, 16, 24, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.page-faq .faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 3px;
}

.page-faq .faq-section-violet::before {
  background: linear-gradient(90deg, #4B0082, rgba(75, 0, 130, 0.2));
}

.page-faq .faq-section-wine::before {
  background: linear-gradient(90deg, #800020, rgba(128, 0, 32, 0.2));
}

.page-faq .faq-section-teal::before {
  background: linear-gradient(90deg, #0F4C5C, rgba(15, 76, 92, 0.2));
}

.page-faq .faq-section-gold::before {
  background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.2));
}

.page-faq .faq-section-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.page-faq .faq-section-num {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 8px 12px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-faq .faq-section-head h2 {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.page-faq .faq-section-head p {
  font-size: 13px;
  line-height: 1.6;
  color: #9A9AA8;
  margin: 0;
}

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

.page-faq .faq-item {
  background: rgba(16, 16, 24, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-faq .faq-item:hover,
.page-faq .faq-item:focus-within {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(26, 26, 36, 0.95);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.page-faq .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #F0F0F0;
  position: relative;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

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

.page-faq .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: #D4AF37;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.page-faq .faq-item:hover summary,
.page-faq .faq-item:focus-within summary {
  color: #FFD700;
}

.page-faq .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: #D4AF37;
  color: #0A0A0F;
  border-color: #FFD700;
}

.page-faq .faq-item summary:focus-visible {
  outline: 2px solid #00E5FF;
  outline-offset: -2px;
  border-radius: 14px;
}

.page-faq .faq-answer {
  padding: 0 20px 20px;
  color: #9A9AA8;
  font-size: 14px;
  line-height: 1.8;
}

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

.page-faq .faq-item[open] .faq-answer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 14px;
}

.page-faq .faq-contact {
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.16) 0%, rgba(10, 10, 15, 0.9) 45%, rgba(128, 0, 32, 0.14) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

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

.page-faq .contact-card {
  background: rgba(16, 16, 24, 0.92);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.page-faq .contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
}

.page-faq .contact-card-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.page-faq .contact-card-main img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
}

.page-faq .contact-card-body h3,
.page-faq .contact-card-alt h3 {
  font-family: "Orbitron", "Avenir Next Condensed", "DIN Condensed", "PingFang SC", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.page-faq .contact-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-faq .contact-line:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.page-faq .contact-line span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6E6E78;
}

.page-faq .contact-line a {
  color: #00E5FF;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s ease;
}

.page-faq .contact-line a:hover,
.page-faq .contact-line a:focus-visible {
  color: #FFD700;
  outline: none;
  text-decoration: underline;
}

.page-faq .contact-card-alt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-faq .contact-card-alt p {
  font-size: 14px;
  line-height: 1.7;
  color: #9A9AA8;
  margin: 0;
}

.page-faq .contact-card-alt .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.page-faq .contact-trust {
  font-size: 12px;
  line-height: 1.6;
  color: #6E6E78;
  margin-top: 8px;
  border-left: 2px solid #D4AF37;
  padding-left: 12px;
}

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

.page-faq [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .page-faq {
    padding: 48px 32px 110px;
  }

  .page-faq .faq-hero-media {
    height: 300px;
    border-radius: 28px;
  }

  .page-faq .faq-section {
    padding: 32px 28px 28px;
  }

  .page-faq .contact-card-main {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .page-faq .contact-card-main img {
    flex-shrink: 0;
  }

  .page-faq .contact-line {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
  }

  .page-faq .faq-hero-media {
    height: 360px;
    border-radius: 0;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    border-right: none;
  }

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

  .page-faq .faq-index {
    position: sticky;
    top: 100px;
  }

  .page-faq .faq-index-list {
    flex-direction: column;
    gap: 4px;
  }

  .page-faq .faq-index-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: #9A9AA8;
    transition: all 0.2s ease;
  }

  .page-faq .faq-index-link:hover,
  .page-faq .faq-index-link:focus-visible {
    background: rgba(212, 175, 55, 0.08);
    color: #FFD700;
    border-left-color: #D4AF37;
    transform: none;
    border-radius: 10px;
  }

  .page-faq .faq-index-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .page-faq .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .page-faq {
    padding: 60px 48px 120px;
  }

  .page-faq .faq-hero-media {
    height: 420px;
  }

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

  .page-faq .page-lead {
    font-size: 16px;
  }
}
