.page-faq {
  background: var(--bg-light);
  color: var(--text);
  font-family: var(--font-body);
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, var(--navy) 0%, var(--navy-deep) 62%, rgba(10, 30, 60, 0.88) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 22px);
  border-bottom: 4px solid var(--orange);
  padding: 28px 0 40px;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 180px;
  height: 100%;
  background: repeating-linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0, rgba(255, 107, 0, 0.25) 2px, transparent 2px, transparent 12px);
  transform: skewX(-14deg);
  pointer-events: none;
}

.page-faq .faq-hero::after {
  content: "FAQ";
  position: absolute;
  right: -12px;
  bottom: -18px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  letter-spacing: -0.03em;
  pointer-events: none;
}

.page-faq .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.page-faq .breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.page-faq .breadcrumbs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}

.page-faq .breadcrumbs a:hover {
  color: var(--orange);
}

.page-faq .breadcrumbs a:hover::after {
  width: 100%;
}

.page-faq .breadcrumb-sep {
  opacity: 0.5;
}

.page-faq .breadcrumbs [aria-current="page"] {
  color: var(--orange);
  font-weight: 600;
}

.page-faq .faq-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-faq .faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.5);
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.page-faq .update-pulse {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
}

.page-faq .faq-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  color: #fff;
  line-height: 1.04;
  letter-spacing: 0.008em;
  text-transform: uppercase;
}

.page-faq .faq-hero-desc {
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 620px;
  font-size: 0.9375rem;
}

.page-faq .faq-topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-faq .faq-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 0.8125rem;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-faq .faq-chip span {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--orange);
  transition: color 0.2s;
}

.page-faq .faq-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.page-faq .faq-chip:hover span {
  color: #fff;
}

.page-faq .faq-hero-img {
  width: min(100%, 420px);
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 10px 10px 0 rgba(255, 107, 0, 0.38);
}

.page-faq .faq-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--navy-deep);
  border-bottom: 3px solid var(--orange);
}

.page-faq .faq-stat {
  padding: 16px 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.page-faq .faq-stat:nth-child(2n) {
  border-right: 0;
}

.page-faq .faq-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  color: var(--orange);
  line-height: 1.15;
}

.page-faq .faq-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.page-faq .faq-category {
  margin: 28px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top-width: 4px;
  box-shadow: 0 1px 0 rgba(10, 30, 60, 0.02);
  transition: box-shadow 0.2s;
}

.page-faq .faq-category:hover {
  box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.12), 0 8px 24px rgba(10, 30, 60, 0.06);
}

.page-faq .faq-category h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 16px 18px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-faq .cat-num {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 2px 5px 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  color: var(--orange);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}

.page-faq .cat-mark {
  width: 34px;
  height: 7px;
  margin-left: auto;
  background: var(--orange);
  transform: skewX(-24deg);
  opacity: 0.9;
}

.page-faq .faq-cat-data {
  border-top-color: var(--orange);
}

.page-faq .faq-cat-data .cat-mark {
  background: var(--orange);
}

.page-faq .faq-cat-mobile {
  border-top-color: var(--blue);
}

.page-faq .faq-cat-mobile .cat-mark {
  background: var(--blue);
}

.page-faq .faq-cat-account {
  border-top-color: var(--success);
}

.page-faq .faq-cat-account .cat-mark {
  background: var(--success);
}

.page-faq .faq-cat-privacy {
  border-top-color: var(--navy);
}

.page-faq .faq-cat-privacy .cat-mark {
  background: var(--navy);
}

.page-faq .faq-items details {
  border-bottom: 1px solid var(--border);
}

.page-faq .faq-items details:last-of-type {
  border-bottom: 0;
}

.page-faq .faq-items summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 48px 17px 18px;
  list-style: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  border-left: 4px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.page-faq .faq-items summary:hover {
  background: var(--bg-light);
}

.page-faq .faq-items summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.page-faq .faq-items summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  color: var(--gray);
  font-size: 1.1rem;
  text-align: center;
  line-height: 20px;
  transition: transform 0.22s ease, color 0.22s ease;
}

.page-faq .faq-cat-data .faq-items summary {
  border-left-color: var(--orange);
}

.page-faq .faq-cat-mobile .faq-items summary {
  border-left-color: var(--blue);
}

.page-faq .faq-cat-account .faq-items summary {
  border-left-color: var(--success);
}

.page-faq .faq-cat-privacy .faq-items summary {
  border-left-color: var(--navy-deep);
}

.page-faq .faq-q {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--orange);
  transition: transform 0.2s;
}

.page-faq .faq-cat-mobile .faq-q {
  color: var(--blue);
}

.page-faq .faq-cat-account .faq-q {
  color: var(--success);
}

.page-faq .faq-cat-privacy .faq-q {
  color: var(--navy-deep);
}

.page-faq .faq-items summary:hover .faq-q {
  transform: scale(1.12);
}

.page-faq .faq-items details[open] summary {
  color: #9a3d00;
}

.page-faq .faq-items details[open] summary::after {
  content: "−";
  color: var(--orange);
  transform: rotate(180deg);
}

.page-faq .faq-cat-data details[open] summary {
  background: #fff4ec;
}

.page-faq .faq-cat-data .faq-answer {
  background: #fffaf7;
}

.page-faq .faq-cat-mobile details[open] summary {
  background: #f0f7ff;
}

.page-faq .faq-cat-mobile .faq-answer {
  background: #f6faff;
}

.page-faq .faq-cat-account details[open] summary {
  background: #f1fdf4;
}

.page-faq .faq-cat-account .faq-answer {
  background: #f6fef8;
}

.page-faq .faq-cat-privacy details[open] summary {
  background: #f2f5f8;
}

.page-faq .faq-cat-privacy .faq-answer {
  background: #f7f9fb;
}

.page-faq .faq-answer {
  padding: 2px 24px 20px 52px;
  border-top: 1px dashed var(--border);
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.875rem;
}

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

.page-faq .faq-answer a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}

.page-faq .faq-answer a:hover {
  color: var(--orange);
  text-decoration-style: solid;
}

.page-faq .faq-email {
  color: var(--text);
  font-weight: 600;
  word-break: break-all;
}

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

.page-faq .faq-mobile-img {
  width: min(100%, 300px);
  height: auto;
  margin: 14px auto 20px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 8px 8px 0 rgba(30, 136, 229, 0.18);
}

.page-faq .faq-help {
  position: relative;
  margin: 40px 0 0;
  padding: 34px 0;
  background: var(--navy-deep);
  border-top: 4px solid var(--orange);
  overflow: hidden;
}

.page-faq .faq-help::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 140px;
  height: 100%;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  transform: skewX(-16deg);
}

.page-faq .faq-help-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.page-faq .faq-help-kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.page-faq .faq-help h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
}

.page-faq .faq-help-text p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.page-faq .faq-help-text a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s;
}

.page-faq .faq-help-text a:hover {
  color: var(--orange);
}

.page-faq .faq-help-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid var(--orange);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s, color 0.2s;
  flex: 0 0 auto;
}

.page-faq .faq-help-cta:hover {
  background: transparent;
  color: var(--orange);
}

@media (min-width: 860px) {
  .page-faq .faq-hero {
    padding: 32px 0 56px;
  }

  .page-faq .faq-hero-inner {
    grid-template-columns: 1.55fr 0.75fr;
    gap: 42px;
    align-items: center;
  }

  .page-faq .faq-hero-img {
    justify-self: end;
  }

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

  .page-faq .faq-stat {
    border-bottom: 0;
  }

  .page-faq .faq-stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .page-faq .faq-stat:last-child {
    border-right: 0;
  }

  .page-faq .faq-category {
    margin: 38px 0;
  }

  .page-faq .faq-category h2 {
    padding: 18px 22px;
    font-size: 1.35rem;
  }

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

  .page-faq .faq-mobile-img {
    margin: 0;
    max-width: 300px;
  }

  .page-faq .faq-help-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
