/* ==========================================
   SOLUTIONS HERO
========================================== */

.solutions-hero{

    padding:180px 0 120px;

    background:
        linear-gradient(
            rgba(10,15,20,.88),
            rgba(10,15,20,.82)
        ),
        url("../images/hero/hero2.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:#fff;

    text-align:center;

}

.solutions-hero .container{

    max-width:900px;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,193,7,.15);

    color:#FFC107;

    margin-bottom:25px;

    font-size:.9rem;

    letter-spacing:.5px;

}

.solutions-hero h1{

    font-size:clamp(3rem,6vw,5rem);

    font-weight:800;

    margin-bottom:25px;

}

.solutions-hero p{

    font-size:1.15rem;

    line-height:1.9;

    color:#d1d5db;

    margin-bottom:40px;

}

/* ==========================================
   SOLUTIONS GRID
========================================== */

.solutions-section{

    padding:100px 0;

    background:#f8fafc;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-header h2{

    font-size:2.8rem;

    font-weight:700;

    margin:20px 0;

    color:#111827;

}

.section-header p{

    color:#6b7280;

    line-height:1.8;

}

.solution-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    height:100%;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.solution-card:hover{

    transform:translateY(-10px);

    border-top:5px solid #FFC107;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.solution-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    color:#FFC107;

    background:rgba(255,193,7,.12);

    border-radius:50%;

    margin-bottom:28px;

    transition:all .35s ease;

}

.solution-card h3{

    font-size:1.4rem;

    margin-bottom:18px;

    color:#111827;

}

.solution-card p{

    color:#6b7280;

    line-height:2;

}

.solution-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:25px;

    color:#FFC107;

    text-decoration:none;

    font-weight:600;

}

.solution-link i{

    transition:.3s;

}

.solution-card:hover .solution-icon{

    transform:scale(1.08);

    background:#FFC107;

    color:#111827;

}

/* ==========================================
   BULK CTA
========================================== */

.bulk-cta{

    padding:90px 0;

    background:#111827;

    text-align:center;

    color:#fff;

}

.bulk-cta h2{

    font-size:2.4rem;

    margin-bottom:20px;

}

.bulk-cta p{

    max-width:700px;

    margin:auto;

    color:#d1d5db;

    line-height:1.8;

}

.cta-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    padding:14px 28px;

    border-radius:50px;

}