/* ===== SOLUTIONS ===== */

.solutions-hero{
    padding:120px 0 80px;
    text-align:center;
    background:#f8fafc;
}

.solutions-hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    max-width:900px;
    margin:auto;
}

.solutions-hero h1 span{
    color:#266D6C;
}

.solutions-hero p{
    max-width:700px;
    margin:25px auto 0;
    font-size:18px;
    color:#64748b;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:#dff5f4;
    color:#266D6C;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;
}

.solutions-grid-section{
    padding:90px 0;
}

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.solution-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:35px;
    transition:.3s;
}

.solution-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.solution-card.featured{
    background:#131b2e;
    color:#fff;
}

.solution-card.featured p{
    color:#d6dbe7;
}

.solution-card.featured a{
    color:#6ee7e7;
}

.solution-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#e7f7f6;
    color:#266D6C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.solution-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.solution-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.solution-card a{
    text-decoration:none;
    color:#266D6C;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.solutions-cta{
    padding:100px 0;
}

.cta-box{
    background:#131b2e;
    border-radius:30px;
    text-align:center;
    padding:80px;
}

.cta-box h2{
    color:white;
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    color:#cbd5e1;
    font-size:18px;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#266D6C;
    color:white;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);
    color:white;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

    .solutions-hero h1{
        font-size:40px;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:32px;
    }

}
/* =========================
   BENEFITS SECTION
========================= */
.benefits-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #0b1220, #070b14);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-header p {
    max-width: 750px;
    margin: 0 auto;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* glow effect */
.benefit-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96,165,250,0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(96,165,250,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ICON */
.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
}

.benefit-icon i {
    font-size: 24px;
    color: #60a5fa;
}

/* TEXT */
.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefit-item p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}