/* FAQ page */
.faq-page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 214, 255, 0.22), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(14, 199, 181, 0.18), transparent 30%),
    linear-gradient(135deg, #06172d 0%, #092958 54%, #0b3fa8 120%);
  overflow: hidden;
}

.faq-page-hero::before {
  position: absolute;
  top: -250px;
  left: -190px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.faq-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  transform: perspective(700px) rotateX(65deg) translateY(42%);
  transform-origin: bottom;
}

.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
}

.faq-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.faq-breadcrumb a:hover {
  color: #fff;
}

.faq-breadcrumb i {
  font-size: 0.58rem;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #8ce9df;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-kicker > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.5);
  animation: badge-pulse 2s infinite;
}

.faq-page-hero h1 {
  max-width: 780px;
  margin: 1rem 0 1.25rem;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.faq-page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
  line-height: 1.75;
}

.faq-hero-search {
  display: grid;
  max-width: 680px;
  align-items: center;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(15px);
}

.faq-hero-search > i {
  color: #8ce9df;
}

.faq-hero-search input {
  min-width: 0;
  padding: 0.65rem 0.2rem;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.86rem;
}

.faq-hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.faq-hero-search kbd {
  padding: 0.35rem 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  font-size: 0.58rem;
}

.faq-hero-search button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--skiisy-navy);
  border: 0;
  border-radius: 50%;
  background: var(--skiisy-orange);
  font-size: 0.7rem;
}

.faq-popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.64rem;
}

.faq-popular-searches > span {
  color: rgba(255, 255, 255, 0.46);
}

.faq-popular-searches button {
  padding: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.62rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq-popular-searches button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.faq-orbit {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(450px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.faq-orbit::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: rgba(85, 214, 255, 0.12);
  content: "";
  filter: blur(34px);
}

.faq-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.faq-orbit-ring::before {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--skiisy-orange);
  box-shadow: 0 0 18px rgba(255, 176, 32, 0.75);
  content: "";
}

.faq-orbit-ring.ring-one {
  width: 75%;
  height: 75%;
  animation: faq-orbit-spin 18s linear infinite;
}

.faq-orbit-ring.ring-one::before {
  top: 12%;
  left: 14%;
}

.faq-orbit-ring.ring-two {
  width: 96%;
  height: 56%;
  border-color: rgba(85, 214, 255, 0.22);
  animation: faq-orbit-spin-reverse 15s linear infinite;
}

.faq-orbit-ring.ring-two::before {
  right: 16%;
  bottom: 3%;
  background: #55d6ff;
}

.faq-orbit-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 176px;
  height: 176px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--skiisy-navy);
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) translateZ(52px) rotate(-4deg);
}

.faq-orbit-core > i {
  color: var(--skiisy-primary);
  font-size: 1.5rem;
}

.faq-orbit-core strong {
  margin: 0.2rem 0;
  color: var(--skiisy-primary-dark);
  font-size: 3.2rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.faq-orbit-core span {
  color: var(--skiisy-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-orbit-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem;
  color: var(--skiisy-navy);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  font-size: 0.66rem;
  font-weight: 700;
  animation: faq-card-float 4.5s ease-in-out infinite;
}

.faq-orbit-card i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 9px;
  background: #eaf1ff;
}

.faq-orbit-card.card-one {
  top: 8%;
  left: 1%;
}

.faq-orbit-card.card-two {
  top: 17%;
  right: 0;
  animation-delay: -1.1s;
}

.faq-orbit-card.card-three {
  right: 3%;
  bottom: 12%;
  animation-delay: -2.2s;
}

.faq-orbit-card.card-four {
  bottom: 7%;
  left: 1%;
  animation-delay: -3.3s;
}

@keyframes faq-orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes faq-orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}

@keyframes faq-card-float {
  50% {
    transform: translateY(-10px);
  }
}

.faq-shortcuts {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.faq-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--skiisy-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(9, 32, 63, 0.13);
  overflow: hidden;
}

.faq-shortcut-grid button {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
  color: var(--skiisy-muted);
  border: 0;
  border-right: 1px solid var(--skiisy-border);
  background: #fff;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq-shortcut-grid button:last-child {
  border-right: 0;
}

.faq-shortcut-grid button:hover,
.faq-shortcut-grid button.active {
  color: var(--skiisy-primary);
  background: #f4f8ff;
}

.faq-shortcut-grid button > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 11px;
  background: #eaf1ff;
}

.faq-shortcut-grid strong,
.faq-shortcut-grid small {
  display: block;
}

.faq-shortcut-grid strong {
  color: var(--skiisy-text);
  font-size: 0.68rem;
}

.faq-shortcut-grid small {
  margin-top: 0.15rem;
  color: var(--skiisy-muted);
  font-size: 0.55rem;
}

.faq-library-intro {
  position: sticky;
  top: 110px;
}

.faq-library-intro > p {
  max-width: 430px;
  line-height: 1.75;
}

.faq-result-summary {
  display: grid;
  width: 150px;
  margin: 1.8rem 0;
  padding: 1rem;
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 16px;
  background: #f4f8ff;
}

.faq-result-summary span,
.faq-result-summary small {
  color: var(--skiisy-muted);
  font-size: 0.6rem;
}

.faq-result-summary strong {
  margin: 0.15rem 0;
  color: var(--skiisy-primary);
  font-size: 2.2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.faq-support-card {
  position: relative;
  max-width: 360px;
  padding: 1.5rem;
  color: #fff;
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 10%, rgba(85, 214, 255, 0.22), transparent 32%),
    var(--skiisy-navy);
  overflow: hidden;
}

.faq-support-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.02);
  content: "";
}

.faq-support-card > div {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 2rem;
  color: #55d6ff;
  border-radius: 13px;
  background: rgba(85, 214, 255, 0.12);
}

.faq-support-card > span {
  color: #8ce9df;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-support-card h3 {
  margin: 0.45rem 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-support-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.65;
}

.faq-support-card a {
  position: relative;
  z-index: 1;
  color: var(--skiisy-orange);
  font-size: 0.7rem;
  font-weight: 800;
}

.faq-active-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.2rem;
}

.faq-active-filter span {
  color: var(--skiisy-navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.faq-active-filter button {
  color: var(--skiisy-primary);
  border: 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list-item {
  border: 1px solid var(--skiisy-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(9, 32, 63, 0.035);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-list-item:hover,
.faq-list-item.is-open {
  border-color: rgba(21, 94, 239, 0.25);
  box-shadow: 0 16px 38px rgba(9, 32, 63, 0.08);
}

.faq-list-item.is-open {
  transform: translateY(-2px);
}

.faq-list-item.is-hidden {
  display: none;
}

.faq-question {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  color: var(--skiisy-text);
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-question-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 12px;
  background: #eaf1ff;
}

.faq-question small,
.faq-question strong {
  display: block;
}

.faq-question small {
  margin-bottom: 0.25rem;
  color: var(--skiisy-primary);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-question strong {
  color: var(--skiisy-navy);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-toggle-icon {
  color: var(--skiisy-muted);
  transition: color 0.25s ease, transform 0.3s ease;
}

.faq-list-item.is-open .faq-toggle-icon {
  color: var(--skiisy-primary);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 5.05rem;
}

.faq-answer p {
  margin: 0;
  color: var(--skiisy-muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.faq-answer.is-entering {
  animation: faq-answer-enter 0.35s ease;
}

.faq-answer-helpful {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.faq-answer-helpful span {
  margin-right: 0.25rem;
  color: #8a98aa;
  font-size: 0.6rem;
}

.faq-answer-helpful button {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--skiisy-muted);
  border: 1px solid var(--skiisy-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.68rem;
}

.faq-answer-helpful button:hover,
.faq-answer-helpful button.active {
  color: var(--skiisy-primary);
  border-color: rgba(21, 94, 239, 0.25);
  background: #eef4ff;
}

@keyframes faq-answer-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.faq-empty {
  padding: 4rem 1rem;
  border: 1px dashed rgba(21, 94, 239, 0.28);
  border-radius: 20px;
  background: #f7faff;
  text-align: center;
}

.faq-empty > i {
  color: var(--skiisy-primary);
  font-size: 2.4rem;
}

.faq-empty h3 {
  margin: 1rem 0 0.4rem;
  color: var(--skiisy-navy);
  font-weight: 800;
}

.faq-empty p {
  color: var(--skiisy-muted);
}

.faq-guide-section {
  background: var(--skiisy-soft);
}

.faq-guide-card {
  position: relative;
  display: block;
  min-height: 290px;
  height: 100%;
  padding: 1.5rem;
  color: var(--skiisy-text);
  border: 1px solid var(--skiisy-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(9, 32, 63, 0.04);
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq-guide-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(21, 94, 239, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(21, 94, 239, 0.025);
  content: "";
}

.faq-guide-card:hover {
  color: var(--skiisy-text);
  border-color: rgba(21, 94, 239, 0.25);
  box-shadow: 0 22px 50px rgba(9, 32, 63, 0.1);
  transform: translateY(-6px);
}

.faq-guide-card > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 2.8rem;
  color: var(--skiisy-primary);
  border-radius: 15px;
  background: #eaf1ff;
  font-size: 1.15rem;
}

.faq-guide-card > span {
  color: var(--skiisy-primary);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-guide-card h3 {
  margin: 0.35rem 0;
  color: var(--skiisy-navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-guide-card p {
  color: var(--skiisy-muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.faq-guide-card strong {
  position: absolute;
  z-index: 1;
  bottom: 1.5rem;
  color: var(--skiisy-primary);
  font-size: 0.68rem;
}

.faq-cta-section {
  padding: 6rem 0;
  background: #fff;
}

.faq-cta-shell {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 100%, rgba(14, 199, 181, 0.24), transparent 34%),
    linear-gradient(135deg, var(--skiisy-primary-dark), var(--skiisy-primary));
  box-shadow: 0 28px 70px rgba(21, 94, 239, 0.22);
  overflow: hidden;
}

.faq-cta-shell h2 {
  max-width: 760px;
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.faq-cta-shell p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.faq-cta-pattern {
  position: absolute;
  top: -120px;
  right: -70px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.025),
    0 0 0 130px rgba(255, 255, 255, 0.015);
}

@media (max-width: 1199.98px) {
  .faq-shortcut-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-shortcut-grid button:nth-child(3) {
    border-right: 0;
  }

  .faq-shortcut-grid button:nth-child(-n + 3) {
    border-bottom: 1px solid var(--skiisy-border);
  }
}

@media (max-width: 991.98px) {
  .faq-page-hero {
    padding: 5.5rem 0 6.5rem;
  }

  .faq-orbit {
    width: min(450px, 92%);
    margin: 1rem auto 0;
  }

  .faq-library-intro {
    position: static;
  }

  .faq-support-card {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .faq-page-hero {
    min-height: auto;
    padding: 4.5rem 0 5.5rem;
  }

  .faq-page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .faq-page-hero p {
    font-size: 0.94rem;
  }

  .faq-hero-search {
    grid-template-columns: auto 1fr auto;
    border-radius: 18px;
  }

  .faq-hero-search kbd {
    display: none;
  }

  .faq-orbit {
    width: min(370px, 100%);
  }

  .faq-orbit-core {
    width: 145px;
    height: 145px;
    border-radius: 37px;
  }

  .faq-orbit-core strong {
    font-size: 2.6rem;
  }

  .faq-shortcuts {
    margin-top: -28px;
  }

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

  .faq-shortcut-grid button {
    min-height: 105px;
    border-right: 1px solid var(--skiisy-border) !important;
    border-bottom: 1px solid var(--skiisy-border);
  }

  .faq-shortcut-grid button:nth-child(even) {
    border-right: 0 !important;
  }

  .faq-shortcut-grid button:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .faq-answer {
    padding-left: 1.25rem;
  }

  .faq-question {
    grid-template-columns: 1fr auto;
  }

  .faq-question-icon {
    display: none;
  }

  .faq-cta-section {
    padding: 4rem 0;
  }

  .faq-cta-shell {
    border-radius: 24px;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .faq-orbit {
    width: 320px;
    max-width: 100%;
  }

  .faq-orbit-card span {
    display: none;
  }

  .faq-orbit-card.card-one {
    left: 8%;
  }

  .faq-orbit-card.card-two {
    right: 6%;
  }

  .faq-orbit-card.card-three {
    right: 8%;
  }

  .faq-orbit-card.card-four {
    left: 6%;
  }

  .faq-shortcut-grid button {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-kicker > i,
  .faq-orbit-ring,
  .faq-orbit-card {
    animation: none !important;
  }

  .faq-orbit,
  .faq-list-item,
  .faq-guide-card {
    transform: none !important;
    transition: none !important;
  }
}
