.page-faq {
  --faq-deco: rgba(212, 175, 55, 0.30);
  --faq-line: rgba(10, 46, 29, 0.12);
  --faq-grid-line: rgba(255, 255, 255, 0.055);
  background: var(--gray-100);
  color: var(--gray-900);
}

.page-faq__crumbs {
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-faq__crumbs .breadcrumbs__link {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 500;
}

.page-faq__crumbs .breadcrumbs__item {
  color: rgba(255, 255, 255, 0.6);
}

.page-faq__hero {
  position: relative;
  background: var(--green-900);
  color: var(--white);
  padding: 48px 0 64px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-500);
}

.page-faq__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 5px;
  background: var(--gold-500);
  z-index: 3;
}

.page-faq__hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--faq-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--faq-grid-line) 1px, transparent 1px);
  background-size: 34px 34px;
}

.page-faq__hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 52%, rgba(212, 175, 55, 0.09) 100%);
}

.page-faq__hero .container {
  position: relative;
  z-index: 2;
}

.page-faq__hero-mega {
  display: none;
}

.page-faq__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-number);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.page-faq__title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.16;
  color: var(--white);
  max-width: 920px;
}

.page-faq__lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 800px;
}

.page-faq__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 11px 16px;
  border: 1px solid var(--faq-deco);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
  line-height: 1.6;
}

.page-faq__hint svg {
  flex: 0 0 auto;
  color: var(--gold-500);
}

.page-faq__hint kbd {
  margin: 0 2px;
  padding: 1px 6px;
  border-radius: 3px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-number);
  font-size: 0.76rem;
}

.page-faq__index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
}

.page-faq__index-card {
  position: relative;
  display: block;
  padding: 18px 18px 16px;
  background: var(--green-900);
  border: 1px solid var(--faq-deco);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(10, 46, 29, 0.18);
  overflow: hidden;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-faq__index-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.16);
  transform: translate(24px, -24px);
}

.page-faq__index-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 3px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.page-faq__index-card:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-3px);
}

.page-faq__index-card:hover::after {
  width: 100%;
}

.page-faq__index-num {
  display: block;
  font-family: var(--font-number);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  color: var(--gold-500);
}

.page-faq__index-card:hover .page-faq__index-num {
  color: var(--green-900);
}

.page-faq__index-name {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 500;
}

.page-faq__index-desc {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.page-faq__index-card:hover .page-faq__index-desc {
  color: rgba(10, 46, 29, 0.72);
}

.page-faq__index-meta {
  display: block;
  margin-top: 12px;
  font-family: var(--font-number);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-faq__index-card:hover .page-faq__index-meta {
  color: rgba(10, 46, 29, 0.6);
}

.page-faq__index-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--gold-500);
}

.page-faq__index-card:hover .page-faq__index-arrow {
  color: var(--green-900);
}

.page-faq__body {
  position: relative;
  padding: 64px 0 48px;
}

.page-faq__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  bottom: 0;
  width: 1px;
  background: rgba(10, 46, 29, 0.04);
  pointer-events: none;
}

.page-faq__body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 75%;
  bottom: 0;
  width: 1px;
  background: rgba(10, 46, 29, 0.04);
  pointer-events: none;
}

.page-faq__section {
  position: relative;
  margin-bottom: 56px;
}

.page-faq__section:last-child {
  margin-bottom: 0;
}

.page-faq__section-code {
  display: none;
}

.page-faq__part-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--faq-line);
}

.page-faq__part-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 88px;
  height: 7px;
  background: var(--gold-500);
  transform: skewX(-18deg);
}

.page-faq__part-index {
  font-family: var(--font-number);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-500);
}

.page-faq__part-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--green-900);
}

.page-faq__part-intro {
  margin: 0;
  flex: 1 1 100%;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.page-faq__items {
  display: grid;
  gap: 12px;
}

.page-faq__item {
  background: var(--white);
  border: 1px solid var(--faq-line);
  border-left-width: 3px;
  border-left-color: var(--green-700);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-faq__item[open] {
  border-color: var(--gold-500);
  border-left-color: var(--gold-500);
  box-shadow: 0 10px 28px rgba(10, 46, 29, 0.07);
}

.page-faq__item-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 16px 14px 16px 16px;
  list-style: none;
  cursor: pointer;
}

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

.page-faq__item-no {
  flex: 0 0 auto;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(20, 83, 45, 0.08);
  font-family: var(--font-number);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--green-700);
  white-space: nowrap;
}

.page-faq__item[open] .page-faq__item-no {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-500);
}

.page-faq__item-question {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gray-900);
}

.page-faq__item-summary:hover .page-faq__item-question {
  color: var(--green-700);
}

.page-faq__item-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green-700);
  transition: transform 0.28s ease, color 0.28s ease;
}

.page-faq__item[open] .page-faq__item-icon {
  transform: rotate(45deg);
  color: var(--gold-500);
}

.page-faq__item-body {
  padding: 2px 18px 18px;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.page-faq__item-body p {
  margin: 0 0 8px;
}

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

.page-faq__item-body a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-faq__figure {
  margin: 26px 0 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  background: var(--green-900);
}

.page-faq__figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq__figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.page-faq__figcaption::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 2px;
  background: var(--gold-500);
}

.page-faq__contact {
  position: relative;
  margin-top: 8px;
  padding: 60px 0 68px;
  background: var(--green-900);
  color: var(--white);
  overflow: hidden;
}

.page-faq__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), rgba(212, 175, 55, 0.2));
}

.page-faq__contact-grid {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.page-faq__contact-main h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--white);
}

.page-faq__contact-main > p {
  max-width: 640px;
  margin: 0 0 26px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-faq__contact-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.page-faq__contact-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__contact-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-300);
}

.page-faq__contact-value {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  word-break: break-word;
}

.page-faq__contact-btn {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.page-faq__contact-btn:hover {
  background-color: var(--gold-500);
  color: var(--green-900);
}

.page-faq__contact-side {
  display: none;
}

@media (min-width: 680px) {
  .page-faq__hero {
    padding: 56px 0 72px;
  }

  .page-faq__hero-mega {
    display: block;
    position: absolute;
    top: 28px;
    right: 4%;
    z-index: 1;
    pointer-events: none;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.28);
  }

  .page-faq__hint {
    padding: 12px 18px;
  }

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

  .page-faq__title {
    font-size: 2.2rem;
  }

  .page-faq__part-title {
    font-size: 1.65rem;
  }

  .page-faq__item-question {
    font-size: 1rem;
  }

  .page-faq__item-body {
    padding-left: 22px;
  }
}

@media (min-width: 1000px) {
  .page-faq__hero {
    padding: 64px 0 88px;
  }

  .page-faq__hero-mega {
    font-size: 9rem;
  }

  .page-faq__title {
    font-size: 2.5rem;
  }

  .page-faq__index {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -44px;
  }

  .page-faq__index-card {
    padding: 22px 20px 20px;
  }

  .page-faq__index-name {
    font-size: 1.25rem;
  }

  .page-faq__section {
    max-width: 930px;
  }

  .page-faq__section:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }

  .page-faq__section-code {
    display: block;
    position: absolute;
    top: -8px;
    right: 0;
    font-family: var(--font-number);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(10, 46, 29, 0.32);
  }

  .page-faq__part-head {
    flex-wrap: nowrap;
    align-items: flex-end;
  }

  .page-faq__part-intro {
    flex: 1 1 auto;
    text-align: right;
  }

  .page-faq__contact {
    padding: 72px 0 80px;
  }

  .page-faq__contact-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .page-faq__contact-main h2 {
    font-size: 1.75rem;
  }

  .page-faq__contact-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: right;
  }

  .page-faq__mega {
    font-family: var(--font-heading);
    font-size: 6.2rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.5);
  }

  .page-faq__mega-meta {
    font-family: var(--font-number);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.55);
  }
}
