.solution-section{
padding:110px 20px;
background:linear-gradient(180deg,#ffffff,#f3f0ff,#ffffff);
text-align:center;
}

.solution-container{
max-width:800px;
margin:auto;
}

.solution-title{
font-size:36px;
font-weight:600;
color:#111;
margin-bottom:12px;
}

.solution-subtitle{
font-size:18px;
color:#666;
max-width:720px;
margin:auto;
margin-bottom:70px;
}

.solution-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.solution-card{
background:#fff;
padding:40px 30px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.05);
transition:all .35s ease;
cursor:pointer;
position:relative;
overflow:hidden;
}

.solution-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.solution-icon{
width:60px;
height:60px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
background:#f3f0ff;
transition:all .35s ease;
}

.solution-icon svg{
width:28px;
height:28px;
stroke:#5F1BF2;
stroke-width:2;
fill:none;
transition:all .35s ease;
}

.solution-card h3{
font-size:20px;
margin-bottom:10px;
color:#111;
}

.solution-card p{
font-size:15px;
color:#666;
line-height:1.5;
}

.solution-card:hover .solution-icon{
background:#5F1BF2;
}

.solution-card:hover svg{
stroke:#fff;
}

.solution-card.active .solution-icon{
background:#F2CE1B;
}

.solution-card.active svg{
stroke:#000;
}

@media(max-width:768px){

.solution-title{
font-size:28px;
}

.solution-subtitle{
font-size:16px;
margin-bottom:50px;
}

.solution-card{
padding:30px 22px;
}

}