
/* Proplix FAQ layer - append only */
.proplix-faq-section{
  padding:84px 0;
}
.proplix-faq-shell{
  background:linear-gradient(135deg,#ffffff 0%,#f6fbff 46%,#eef8f7 100%);
  border:1px solid #e5ebf3;
  border-radius:32px;
  box-shadow:0 24px 70px rgba(15,23,42,.10);
  padding:30px;
}
.proplix-faq-head{
  max-width:940px;
  margin:0 0 26px;
}
.proplix-faq-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:#1f5eff;
}
.proplix-faq-kicker::before{
  content:'';
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#1f5eff,#0ea5a4);
  box-shadow:0 0 0 6px rgba(31,94,255,.10);
}
.proplix-faq-head h2{
  margin:0 0 14px;
  font-size:clamp(1.95rem,3vw,2.8rem);
  line-height:1.08;
  letter-spacing:-.03em;
}
.proplix-faq-head p{
  margin:0;
  color:#5b6474;
  line-height:1.82;
  font-size:1.02rem;
}
.proplix-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
.proplix-faq-col{
  display:grid;
  gap:14px;
}
.proplix-faq-item{
  background:#fff;
  border:1px solid #e5ebf3;
  border-radius:20px;
  box-shadow:0 16px 44px rgba(15,23,42,.06);
  overflow:hidden;
}
.proplix-faq-item[open]{
  border-color:#cdd9ec;
  box-shadow:0 20px 50px rgba(15,23,42,.09);
}
.proplix-faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  font-size:1rem;
  font-weight:800;
  line-height:1.45;
  color:#10223e;
}
.proplix-faq-item summary::-webkit-details-marker{display:none}
.proplix-faq-item summary::after{
  content:'+';
  flex:0 0 auto;
  width:26px;
  height:26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  font-weight:700;
  color:#1f5eff;
  background:#eef5ff;
  border:1px solid #dce8ff;
  transition:transform .18s ease, background .18s ease, color .18s ease;
}
.proplix-faq-item[open] summary::after{
  content:'–';
  background:#e9faf7;
  color:#0b8f86;
  transform:rotate(180deg);
}
.proplix-faq-answer{
  padding:0 20px 18px;
}
.proplix-faq-answer p{
  margin:0;
  color:#5b6474;
  line-height:1.8;
  font-size:.98rem;
}
@media (max-width:980px){
  .proplix-faq-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .proplix-faq-section{padding:64px 0}
  .proplix-faq-shell{padding:22px}
  .proplix-faq-item summary{padding:16px 16px}
  .proplix-faq-answer{padding:0 16px 16px}
}
