.faq-section{
  padding:96px 0 88px;
  background:var(--cream);
}

.faq-section .section-head{
  margin-bottom:42px;
}

.faq-list{
  display:grid;
  gap:18px;
  max-width:920px;
  margin:0 auto;
}

.faq-item{
  position:relative;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff 0%, #f8f6f2 100%);
  border:1px solid rgba(21,25,54,.14);
  box-shadow:0 14px 36px rgba(13,16,39,.10), 0 1px 0 rgba(255,255,255,.8) inset;
  overflow:hidden;
  transition:box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:56px;
  height:5px;
  background:var(--orange);
  border-radius:0 0 4px 0;
  z-index:1;
}

.faq-item[open]{
  border-color:rgba(255,90,31,.35);
  box-shadow:0 20px 48px rgba(13,16,39,.14), 0 1px 0 rgba(255,255,255,.9) inset;
  background:linear-gradient(180deg, #ffffff 0%, rgba(255,90,31,.03) 100%);
}

@media (hover: hover){
  .faq-item:hover{
    border-color:rgba(21,25,54,.20);
    box-shadow:0 18px 42px rgba(13,16,39,.12), 0 1px 0 rgba(255,255,255,.8) inset;
  }
}

.faq-item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 28px;
  cursor:pointer;
  list-style:none;
  user-select:none;
}

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

.faq-item summary h3{
  font-size:17px;
  line-height:1.45;
  letter-spacing:-.02em;
  color:var(--navy);
  font-weight:800;
  margin:0;
  padding-right:8px;
}

.faq-icon{
  flex-shrink:0;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(21,25,54,.08);
  border:1px solid rgba(21,25,54,.10);
  position:relative;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:14px;
  height:2px;
  background:var(--navy);
  border-radius:2px;
  transform:translate(-50%,-50%);
  transition:transform .25s ease, background .25s ease;
}

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

.faq-item[open] .faq-icon{
  background:rgba(255,90,31,.12);
  border-color:rgba(255,90,31,.25);
}

.faq-item[open] .faq-icon::before{
  background:var(--orange);
  transform:translate(-50%,-50%) rotate(45deg);
}

.faq-item[open] .faq-icon::after{
  background:var(--orange);
  transform:translate(-50%,-50%) rotate(-45deg);
}

.faq-answer{
  padding:16px 28px 24px;
  border-top:1px solid rgba(21,25,54,.08);
  margin:0 0 0;
}

.faq-answer p{
  margin:0;
  font-size:15px;
  line-height:1.72;
  color:var(--muted);
}

.faq-cta{
  margin-top:48px;
  text-align:center;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}

.faq-cta p{
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:20px;
}

.faq-cta .btn{
  display:inline-flex;
}

@media (max-width:768px){
  .faq-section{
    padding:72px 0 64px;
  }

  .faq-item summary{
    padding:20px 18px;
  }

  .faq-item summary h3{
    font-size:15px;
  }

  .faq-answer{
    padding:14px 18px 20px;
  }

  .faq-answer p{
    font-size:14px;
  }

  .faq-cta{
    margin-top:36px;
  }
}
