.title-ct {
  margin-top: 70px;
}
.faq-cta-ct {
  margin-top: 70px;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, #ff6b35, #ff8c35);
  color: #fff;
}
.faq-cta-ct h2 { margin-bottom: 8px; }
.faq-cta-ct p  { margin-bottom: 14px; }
.faq-cta-ct a  { margin-right: 10px; }


/* ===========================
   STATS SECTION
=========================== */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.stat-card{
    background:#fff;
    border:1px solid #e4eaf5;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
    border-color:#0b6efd;
}

.stat-card h2{
    margin:0 0 10px;
    font-size:48px;
    font-weight:700;
    color:#0b6efd;
    line-height:1;
}

.stat-card p{
    margin:0;
    font-size:17px;
    color:#555;
    font-weight:500;
}

/* Tablet */
@media (max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card h2{
        font-size:40px;
    }
}