/* ==========================================================
   BLOOPIN HOME — FAQ V2
========================================================== */

.bp-home-faq{
  padding:clamp(48px,6vw,82px) 0;
}

.bp-home-faq,
.bp-home-faq *{
  box-sizing:border-box;
}

.bp-home-faq__inner{
  width:min(980px,calc(100% - 32px));
  margin:0 auto;
}

.bp-home-faq__head{
  max-width:900px;
  margin:0 auto 42px;
}

.bp-home-faq .bp-title-global > span{
  white-space:normal;
}

.bp-home-faq__list{
  display:grid;
  gap:8px;
}

.bp-faq-item{
  border-bottom:1px solid var(--border,#E5EEF6);
}

.bp-faq-item:first-child{
  border-top:1px solid var(--border,#E5EEF6);
}

.bp-faq-item__trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:20px 12px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:var(--text,#0F172A);
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:background-color .22s ease;
}

.bp-faq-item__trigger:hover{
  background:rgba(15,23,42,.035);
}

.bp-faq-item__trigger:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(34,161,238,.14);
}

.bp-faq-item__question{
  font-size:clamp(1.08rem,1.35vw,1.28rem);
  line-height:1.3;
  font-weight:700;
  color:var(--text,#0F172A);
  letter-spacing:-.02em;
}

.bp-faq-item__icon{
  flex:0 0 auto;
  width:22px;
  height:22px;
  color:var(--text-soft,#64748B);
  transition:transform .3s ease,color .25s ease;
}

.bp-faq-item__icon svg{
  width:22px;
  height:22px;
  display:block;
}

.bp-faq-item__icon path{
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.bp-faq-item__content{
  height:0;
  overflow:hidden;
  transition:height .32s cubic-bezier(.2,.7,.2,1);
}

.bp-faq-item__content-inner{
  max-width:760px;
  padding:0 12px 22px;
}

.bp-faq-item__content-inner p{
  margin:0;
  font-size:1rem;
  line-height:1.65;
  color:var(--text-soft,#64748B);
}

.bp-faq-item.is-open .bp-faq-item__trigger{
  background:rgba(15,23,42,.045);
}

.bp-faq-item.is-open .bp-faq-item__icon{
  transform:rotate(45deg);
  color:var(--text,#0F172A);
}

@media (max-width:767px){
  .bp-home-faq{
    padding:30px 0;
  }

  .bp-home-faq__inner{
    width:calc(100% - 16px);
  }

  .bp-home-faq__head{
    margin-bottom:22px;
  }

  .bp-faq-item__trigger{
    min-height:64px;
    padding:17px 10px;
  }

  .bp-faq-item__question{
    font-size:1rem;
    line-height:1.35;
  }

  .bp-faq-item__content-inner{
    padding:0 10px 18px;
  }

  .bp-faq-item__content-inner p{
    font-size:.94rem;
    line-height:1.58;
  }
}

@media (prefers-reduced-motion:reduce){
  .bp-faq-item__trigger,
  .bp-faq-item__icon,
  .bp-faq-item__content{
    transition:none !important;
  }
}
