/* ================================
WHY YANOVA SECTION
================================ */

.why-section{
padding:120px 20px;
background:white;
font-family:'Open Sans',sans-serif;
}

.why-container{
max-width:1200px;
margin:auto;
text-align:center;
}


/* Title */

.why-title{
font-family:'Montserrat',sans-serif;
font-size:40px;
font-weight:700;
color:#1f2937;
margin-bottom:20px;
}


/* Subtitle */

.why-subtitle{
max-width:650px;
margin:auto;
font-size:16px;
line-height:1.7;
color:#6b7280;
margin-bottom:80px;
}


/* Grid */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
gap:35px;
}


/* Card */

.why-card{
background:#f9fafc;
padding:35px 30px;
border-radius:16px;
transition:all 0.35s ease;
text-align:left;
border:1px solid #eef1f5;
}


/* Hover */

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
background:white;
}


/* Icon */

.why-icon{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
border-radius:12px;
background:#eef2ff;
margin-bottom:18px;
}


/* Title */

.why-card h3{
font-family:'Montserrat',sans-serif;
font-size:20px;
font-weight:600;
color:#111827;
margin-bottom:10px;
}


/* Text */

.why-card p{
font-size:15px;
line-height:1.7;
color:#6b7280;
}


/* ================================
TABLET
================================ */

@media(max-width:1024px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* ================================
MOBILE
================================ */

@media(max-width:768px){

.why-section{
padding:80px 20px;
}

.why-title{
font-size:30px;
}

.why-subtitle{
font-size:14px;
margin-bottom:50px;
padding:0 10px;
}

/* IMPORTANT FIX */

.why-grid{
grid-template-columns:1fr;
}

.why-card{
padding:25px;
text-align:center;
}

.why-icon{
margin:auto;
margin-bottom:15px;
}

}