/* ===========================
   INJECTIONS PAGE
=========================== */

.injections-page{
  padding-top:34px;
}

.injections-head{
  margin-top:0;
  margin-bottom:28px;
  text-align:center;
}

.injections-head h2{
  margin:0;
  color:var(--brand);
  font-size:clamp(26px,4vw,38px);
  font-weight:900;
  line-height:1.4;
  display:inline-block;
  position:relative;
}

.injections-head h2::after{
  content:'';
  position:absolute;
  right:50%;
  transform:translateX(50%);
  bottom:-10px;
  width:78px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff5ba5,var(--brand));
}

.injections-bottom-form{
  margin-top:10px;
}

/* Mobile */

@media (max-width:768px){

  .injections-page{
    padding-top:24px;
  }

  .injections-head{
    margin-bottom:22px;
  }

  .injections-head h2{
    font-size:28px;
  }

  .injections-head h2::after{
    width:60px;
    height:3px;
    bottom:-8px;
  }

}
/* ===========================
   INJECTIONS SEO CONTENT
=========================== */

.injections-page-intro{
  text-align:center;
  padding:10px 14px 6px;
}

.injections-page-intro h1{
  margin:0 0 8px;
  color:var(--brand);
  font-size:clamp(26px,4vw,40px);
  font-weight:900;
  line-height:1.4;
}

.injections-page-intro p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}

.injections-seo-content{
  max-width:1100px;
  margin:34px auto 0;
  padding:0 14px;
}

.seo-block{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  padding:24px;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.seo-block h2{
  margin:0 0 14px;
  color:var(--brand);
  font-size:24px;
  font-weight:900;
  line-height:1.5;
}

.seo-block p{
  margin:0 0 14px;
  color:#555;
  font-size:15px;
  line-height:2;
}

.seo-block p:last-child{
  margin-bottom:0;
}

/* ===========================
   FAQ
=========================== */

.faq-section{
  max-width:1100px;
  margin:22px auto 0;
  padding:0 14px;
}

.faq-section h2{
  margin:0 0 16px;
  color:var(--brand);
  font-size:28px;
  font-weight:900;
  text-align:center;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faq-item{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.04);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  font-size:16px;
  font-weight:800;
  color:#222;
  position:relative;
}

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

.faq-item summary::after{
  content:"+";
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  color:var(--brand);
  font-size:22px;
  font-weight:900;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  margin:0;
  padding:0 20px 20px;
  color:#666;
  line-height:2;
  font-size:14px;
}

@media(max-width:768px){

  .injections-page-intro{
    padding-top:0;
  }

  .injections-page-intro h1{
    font-size:28px;
  }

  .injections-page-intro p{
    font-size:13px;
  }

  .seo-block{
    padding:18px;
    border-radius:18px;
  }

  .seo-block h2{
    font-size:20px;
  }

  .seo-block p{
    font-size:14px;
    line-height:1.9;
  }

  .faq-section h2{
    font-size:24px;
  }

  .faq-item summary{
    font-size:15px;
    padding:16px 18px;
  }

}