.faq-page {
  background: #fff;
}



.faq-hero {
  background: #f7f8fa;
  padding: 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.faq-hero::before,
.faq-hero::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 680px;
  height: 680px;
  background: #d0fae5;
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.6;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-hero::before {
  left: -340px;
}

.faq-hero::after {
  right: -340px;
}

.faq-hero__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-hero__kicker {
  margin: 0 0 14px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #009966;
}

.faq-hero__title {
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.1;
  margin: 0;
  color: #0F172B;
}

.faq-hero__subtitle {
  margin: 12px auto 0;
  max-width: 640px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  color: #62748E;
  font-size: 20px;
  line-height: 1.4;
}

.faq-body {
  padding: 60px 0 72px;
}

.faq-layout {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-sidebar {
  align-self: stretch;
  height: 100%;
  position: relative;
}

.faq-sidebar__inner {
  width: 100%;
  margin-bottom: 48px;
}

.faq-sidebar__heading {
  margin: 0 0 14px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #0f172b;
}

.faq-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid #e5e7eb;
  margin-top: 6px;
  position: relative;
}

.faq-support-card {
  margin-top: 48px;
  padding: 26px 24px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
}

.faq-support-card__title {
  margin: 0 0 8px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #0f172b;
}

.faq-support-card__body {
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #62748e;
}

.faq-support-card__body p {
  margin: 0;
}

.faq-support-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  text-decoration: none;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  color: #009966;
}

.faq-support-card__link:hover {
  text-decoration: underline;
}

.faq-sidebar__nav {
  position: relative;
}

.faq-sidebar__link:focus,
.faq-sidebar__link:active {
  outline: none;
  box-shadow: none;
}

.faq-sidebar__link:focus-visible {
  outline: none;
  box-shadow: none;
}

.faq-sidebar__link {
  display: block;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #62748e;
  border: 1px solid transparent;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease;
}

.faq-sidebar__link:hover {
  background: #f5f7fb;
}

.faq-sidebar__link.is-active {
  color: #0f172b;
  font-weight: 500;
  background: transparent;
}

.faq-sidebar__link.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  border-radius: 999px;
  background: #69be94;
}

.faq-content {
  min-width: 0;
}

.faq-category {
  padding: 0;
  border-bottom: none;
  scroll-margin-top: 140px;
}

.faq-category:first-child {
  padding-top: 0;
}

.faq-category + .faq-category {
  margin-top: 65px;
}

.faq-category__title {
  margin: 0 0 24px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #0f172b;
}

.faq-item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
  padding: 0;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 0;
  user-select: none;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0f172b;
}

.faq-item__icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #69be94;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item__answer {
  padding: 0 0 16px;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  color: #62748e;
  font-size: 16px;
  line-height: 1.7;
}

.faq-item__answer p {
  margin: 10px 0 0;
}

.faq-item__answer p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 240px 1fr;
  }
}

@media screen and (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .faq-hero {
    min-height: 360px;
  }

  /* Mobile: only show the right glow, and smaller */
  .faq-hero::before {
    display: none;
  }

  .faq-hero::after {
    width: 460px;
    height: 460px;
    right: -260px;
    top: 60%;
    filter: blur(80px);
    opacity: 0.55;
  }

  .faq-hero__title {
    font-size: 36px;
  }

  .faq-hero__subtitle {
    font-size: 18px;
  }

  .faq-hero__inner,
  .faq-layout {
    width: calc(100% - 28px);
  }
}

