/* =========================
   STATS SECTION
========================= */

.stats-section{

padding:90px 0;

background:#ffffff;

position:relative;

}

.stats-card{

background:#fff;

padding:35px 25px;

text-align:center;

border-radius:24px;

box-shadow:
0 10px 30px rgba(0,0,0,.06);

transition:.35s ease;

height:100%;

border:1px solid #eef2f7;

}

.stats-card:hover{

transform:translateY(-8px);

box-shadow:
0 20px 50px rgba(37,99,235,.12);

}

.stats-icon{

width:80px;
height:80px;

margin:auto;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:32px;

margin-bottom:20px;

}

.stats-card h2{

font-size:42px;

font-weight:800;

color:#2563eb;

margin-bottom:10px;

}

.stats-card p{

margin:0;

color:#64748b;

font-size:15px;

font-weight:500;

}

/* Feature Strip */

.feature-strip{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:20px;

padding:25px;

background:
linear-gradient(
135deg,
#2563eb,
#3b82f6
);

border-radius:24px;

box-shadow:
0 15px 40px rgba(37,99,235,.20);

}

.feature-item{

display:flex;

align-items:center;

gap:10px;

color:#fff;

font-weight:600;

font-size:15px;

}

.feature-item i{

font-size:20px;

}

/* Responsive */

@media(max-width:768px){

.stats-section{

padding:60px 0;

}

.stats-card{

padding:25px 20px;

}

.stats-card h2{

font-size:34px;

}

.feature-strip{

justify-content:flex-start;

}

}