/* =========================
   SOLUTIONS HERO
========================= */
.solutions-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.solutions-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.solutions-hero p {
    max-width: 720px;
    margin: auto;
    opacity: 0.7;
}

/* =========================
   SOLUTION SECTION
========================= */
.solution-section {
    padding: 5rem 2rem;
    border-top: 1px solid #eee;
}

.solution-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.solution-section.reverse .solution-content {
    grid-template-columns: 0.9fr 1.1fr;
}

.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.solution-text h4 {
    margin-bottom: 1rem;
    color: #555;
}

.solution-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

.solution-image img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

/* =========================
   IMAGE STRIP
========================= */
.solution-gallery {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-gallery img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-section.reverse .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image img {
        max-height: 260px;
    }
}