.page-faq {
  --faq-hero-min-height: 460px;
  --faq-border-radius: 18px;
  overflow-x: clip;
  background: var(--hf-white);
}

/* ===== Hero ===== */
.page-faq .faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--faq-hero-min-height);
  overflow: hidden;
  background: var(--hf-green-dark);
}
.page-faq .faq-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.72) contrast(1.06);
}
.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 31, 22, 0.95) 0%, rgba(6, 31, 22, 0.76) 42%, rgba(11, 61, 46, 0.38) 80%, rgba(6, 31, 22, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-faq .faq-hero__emblem {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(130px, 16vw, 230px);
  height: auto;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 720px) {
  .page-faq .faq-hero__emblem { opacity: 0.22; right: -6%; }
}
.page-faq .faq-hero__container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .page-faq .faq-hero__container {
    padding-top: 108px;
    padding-bottom: 88px;
  }
}
.page-faq .faq-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(232, 240, 236, 0.75);
  margin-bottom: 18px;
}
.page-faq .faq-hero__crumb a {
  color: var(--hf-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-faq .faq-hero__crumb a:hover { color: var(--hf-neon); }
.page-faq .faq-hero__crumb .hf-breadcrumb__sep {
  opacity: 0.6;
  color: var(--hf-gold-light);
}
.page-faq .faq-hero__title {
  font-family: var(--hf-font-heading);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hf-white);
  max-width: 780px;
  margin: 0 0 16px;
}
.page-faq .faq-hero__lead {
  font-family: var(--hf-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--hf-light);
  max-width: 620px;
  margin: 0;
}
@media (min-width: 720px) {
  .page-faq .faq-hero__lead { font-size: 17px; }
}

/* ===== Category nav ===== */
.page-faq .faq-catnav {
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(11, 61, 46, 0.025) 12px 13px),
    var(--hf-light);
  padding: 56px 0 72px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}
.page-faq .faq-catnav__head {
  max-width: 640px;
  margin-bottom: 28px;
}
.page-faq .faq-catnav__eyebrow {
  display: inline-block;
  font-family: var(--hf-font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-green);
  border-bottom: 2px solid var(--hf-gold);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.page-faq .faq-catnav__title {
  font-family: var(--hf-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--hf-green);
  margin: 0 0 10px;
}
.page-faq .faq-catnav__sub {
  font-family: var(--hf-font-body);
  color: var(--hf-gray-mid);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.page-faq .faq-catnav__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .page-faq .faq-catnav__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .page-faq .faq-catnav__grid { grid-template-columns: repeat(4, 1fr); }
}
.page-faq .faq-catnav__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--hf-white);
  padding: 28px 24px 22px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 31, 22, 0.06);
  border-bottom: 3px solid transparent;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}
@media (hover: hover) {
  .page-faq .faq-catnav__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(6, 31, 22, 0.12);
    border-bottom-color: var(--hf-gold);
  }
}
.page-faq .faq-catnav__card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 72px;
  height: 72px;
  background: var(--hf-light);
  transform: rotate(45deg);
  opacity: 0.6;
  transition: background 0.3s ease;
  z-index: 0;
}
.page-faq .faq-catnav__card:hover::after {
  background: rgba(212, 175, 55, 0.2);
}
.page-faq .faq-catnav__icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-faq .faq-catnav__icon svg {
  width: 30px;
  height: 30px;
}
.page-faq .faq-catnav__card--login .faq-catnav__icon {
  background: rgba(11, 61, 46, 0.12);
  color: var(--hf-green);
}
.page-faq .faq-catnav__card--view .faq-catnav__icon {
  background: rgba(212, 175, 55, 0.17);
  color: #a88620;
}
.page-faq .faq-catnav__card--member .faq-catnav__icon {
  background: rgba(6, 31, 22, 0.1);
  color: var(--hf-green-dark);
}
.page-faq .faq-catnav__card--contact .faq-catnav__icon {
  background: rgba(57, 255, 20, 0.15);
  color: #16820a;
}
.page-faq .faq-catnav__card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--hf-font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--hf-green);
}
.page-faq .faq-catnav__card p {
  position: relative;
  z-index: 1;
  font-family: var(--hf-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--hf-gray-mid);
  margin: 0;
}
.page-faq .faq-catnav__go {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hf-font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hf-gold);
  margin-top: auto;
  padding-top: 10px;
}
.page-faq .faq-catnav__go svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.page-faq .faq-catnav__card:hover .faq-catnav__go svg { transform: translateX(4px); }

/* ===== Main FAQ layout ===== */
.page-faq .faq-main {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 30%),
    var(--hf-white);
  padding: 72px 0 96px;
}
.page-faq .faq-main__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}
@media (min-width: 1024px) {
  .page-faq .faq-main__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 72px;
  }
}

/* ===== Sidebar ===== */
.page-faq .faq-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .page-faq .faq-side {
    position: sticky;
    top: 34px;
  }
}
.page-faq .faq-side__art {
  position: relative;
  border-radius: var(--faq-border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 31, 22, 0.1);
}
.page-faq .faq-side__art img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.page-faq .faq-side__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--hf-green);
  color: var(--hf-white);
  padding: 6px 14px;
  font-family: var(--hf-font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 3px solid var(--hf-neon);
}
.page-faq .faq-side__card {
  background: var(--hf-green-dark);
  color: var(--hf-light);
  padding: 24px;
  border-radius: var(--faq-border-radius);
  position: relative;
  overflow: hidden;
}
.page-faq .faq-side__card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  pointer-events: none;
}
.page-faq .faq-side__card h3 {
  font-family: var(--hf-font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--hf-gold-light);
  margin: 0 0 12px;
}
.page-faq .faq-side__card p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.page-faq .faq-side__card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-faq .faq-side__card li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
}
.page-faq .faq-side__card li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: var(--hf-gold);
  transform: rotate(45deg);
  align-self: center;
}

/* ===== FAQ groups ===== */
.page-faq .faq-qa {
  position: relative;
  min-width: 0;
}
@media (min-width: 1024px) {
  .page-faq .faq-qa {
    padding-left: 40px;
    border-left: 1px solid rgba(11, 61, 46, 0.08);
  }
}
.page-faq .faq-group {
  position: relative;
  scroll-margin-top: 28px;
  margin-bottom: 52px;
  padding-top: 6px;
}
.page-faq .faq-group:last-child { margin-bottom: 0; }
.page-faq .faq-group__head {
  position: relative;
  margin-bottom: 8px;
  padding: 0 0 12px 16px;
  border-left: 4px solid var(--hf-gold);
}
.page-faq .faq-group__index {
  position: absolute;
  right: 0;
  top: -20px;
  font-family: var(--hf-font-heading);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: rgba(11, 61, 46, 0.06);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.page-faq .faq-group__title {
  position: relative;
  z-index: 1;
  font-family: var(--hf-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  color: var(--hf-green);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.page-faq .faq-group__sub {
  position: relative;
  z-index: 1;
  font-family: var(--hf-font-body);
  color: var(--hf-gray-mid);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* ===== Collapse items ===== */
.page-faq .faq-item {
  background: var(--hf-light);
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 14px;
  margin-top: 14px;
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.page-faq .faq-item[data-open] {
  background: var(--hf-white);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 7px 20px rgba(6, 31, 22, 0.07);
}
.page-faq .faq-item__btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--hf-font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--hf-green);
  transition: color 0.3s ease;
}
.page-faq .faq-item__btn:hover { color: var(--hf-green-dark); }
.page-faq .faq-item__q { flex: 1 1 auto; min-width: 0; }
.page-faq .faq-q-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hf-white);
  background: var(--hf-green);
  margin-top: 1px;
}
.page-faq .faq-q-icon svg {
  width: 14px;
  height: 14px;
}
.page-faq .faq-group--login .faq-q-icon {
  background: var(--hf-green);
  color: var(--hf-white);
}
.page-faq .faq-group--view .faq-q-icon {
  background: var(--hf-gold);
  color: var(--hf-white);
}
.page-faq .faq-group--member .faq-q-icon {
  background: var(--hf-green-dark);
  color: var(--hf-gold-light);
}
.page-faq .faq-group--contact .faq-q-icon {
  background: var(--hf-neon);
  color: var(--hf-green-dark);
}
.page-faq .faq-item__arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(11, 61, 46, 0.08);
  color: var(--hf-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}
.page-faq .faq-item__arrow svg {
  width: 14px;
  height: 14px;
}
.page-faq .faq-item[data-open] .faq-item__arrow {
  transform: rotate(180deg);
  background: var(--hf-gold);
  color: var(--hf-white);
}
.page-faq .faq-item__body {
  padding: 2px 18px 18px 42px;
  font-family: var(--hf-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.page-faq .faq-item__body p { margin: 0 0 8px; }
.page-faq .faq-item__body p:last-child { margin-bottom: 0; }
.page-faq .faq-item__body ul {
  margin: 6px 0 10px;
  padding-left: 18px;
}
.page-faq .faq-item__body li { margin-bottom: 4px; }

/* ===== Contact card ===== */
.page-faq .faq-contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 20px;
  background: rgba(11, 61, 46, 0.1);
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-left: 4px solid var(--hf-green);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .page-faq .faq-contact-card { grid-template-columns: repeat(3, 1fr); }
}
.page-faq .faq-contact-card__item {
  background: var(--hf-light);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-faq .faq-contact-card__label {
  font-family: var(--hf-font-heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-gray-mid);
}
.page-faq .faq-contact-card__value {
  font-family: var(--hf-font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hf-green);
  text-decoration: none;
  word-break: break-all;
}
.page-faq a.faq-contact-card__value:hover {
  color: var(--hf-gold);
}

/* ===== Outbound ===== */
.page-faq .faq-outbound {
  position: relative;
  background: linear-gradient(135deg, var(--hf-green-dark) 0%, var(--hf-green) 72%);
  color: var(--hf-white);
  overflow: hidden;
  padding: 72px 0;
}
.page-faq .faq-outbound::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 58px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}
.page-faq .faq-outbound::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -80px;
  width: 200px;
  height: 200px;
  background: rgba(57, 255, 20, 0.08);
  transform: rotate(28deg);
  pointer-events: none;
}
.page-faq .faq-outbound__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}
@media (min-width: 920px) {
  .page-faq .faq-outbound__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.page-faq .faq-outbound__title {
  font-family: var(--hf-font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hf-gold-light);
  margin: 0 0 8px;
}
.page-faq .faq-outbound__text {
  font-family: var(--hf-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(232, 240, 236, 0.85);
  margin: 0;
  max-width: 520px;
}
.page-faq .faq-outbound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.page-faq .faq-outbound__link {
  display: inline-flex;
  align-items: center;
  color: var(--hf-light);
  text-decoration: none;
  font-family: var(--hf-font-heading);
  font-size: 15px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--hf-gold);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.page-faq .faq-outbound__link:hover {
  color: var(--hf-gold);
  border-color: var(--hf-neon);
}
