/* FUN FAQ MODE */

/* FAQ HERO */
.faq-hero{
  position: relative;
  height: 48vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* FAQ JUMP SECTION */
.faq-jump{
  padding: 70px 0 40px;
}

/* Constrain width properly */
.faq-jump-grid{
  max-width: 920px;   /* 🔑 prevents edge-to-edge stretch */
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

/* Individual cards */
.faq-jump-card{
  padding: 18px 16px;   /* slightly smaller */
  text-align: center;

  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);

  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-jump-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.faq-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.25) 40%,
      rgba(0,0,0,.45)
    );
}

.faq-hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
}

.faq-hero.fun{
  padding: 140px 0 90px;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,0));
}

.faq-category-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 14px;
  margin-top: 30px;
}

.faq-card{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  font-weight: 600;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

FAQ SECTIONS
.faq-section.fun{
  padding: 60px 0;
}

.faq-stack{
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

/* FAQ bubbles */
.faq-bubble{
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  overflow: hidden;
}

.faq-toggle{
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.faq-toggle span{
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .25s ease;
}

.faq-content{
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition: all .35s ease;
}

.faq-bubble.active .faq-content{
  max-height: 300px;
  padding-bottom: 18px;
  opacity: 1;
}

.faq-bubble.active .faq-toggle span{
  transform: rotate(45deg);
}

/* Mobile */
@media(max-width:700px){
  .faq-category-cards{
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ HELP CTA */

.faq-help{
  padding: 110px 0 140px;
  background: rgba(0,0,0,.02);

  /* 🔑 THIS centres the box */
  display: flex;
  justify-content: center;
  align-items: center;
}

Force EVERYTHING inside the help box to centre properly
.faq-help-box{
  display: flex;
  flex-direction: column;
  align-items: center;     /* ✅ centres children */
  text-align: center;      /* ✅ centres text */
}

/* Ensure the button row spans the full width then centres */
/* .faq-help-box .hero-buttons{
  width: 100%;
  display: flex;
  /* justify-content: center; ✅ centres button(s)
  } */

/* .faq-help-box{
  max-width: 820px;
  width: 100%;
  padding: 48px 52px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  text-align: center;
}


.faq-help-box{
  max-width: 820px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  text-align: center;
}

.faq-help-box .hero-buttons {
    width: 100%;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
} */

/* Back to top */

.faq-mini-cta{
  margin: 30px 0 60px;
}

/* Back to top bounce */

.faq-mini-cta .text-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Target the arrow */
.faq-mini-cta .text-link::after{
  content: "↑";
  display: inline-block;
  animation: bounceArrow 1.6s infinite;
}

/* Bounce animation */
@keyframes bounceArrow{
  0%,100%{
    transform: translateY(0);
  }
  40%{
    transform: translateY(-6px);
  }
  60%{
    transform: translateY(-3px);
  }
}