/* ============================================================
   Let's Solve Together — CTA section
   The section background is driven entirely by a CSS custom
   property so it can be swapped later without touching the HTML.
   ============================================================ */
:root {
    --solve-together-bg-image: url("../images/solve-together-bg.png");
    --solve-together-navy: #050b16;
    --solve-together-orange: #fb4e0b;
    --solve-together-white: #ffffff;
}

.solve-together {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

/* Left-to-right fade keeps the copy readable over any background image. */
.solve-together::before {
    content: "";
    position: absolute; 
    inset: 0;
    background: linear-gradient(97deg, #052a5a 0%, rgba(0, 22, 50, 0) 61.23%);
}

.solve-together__shell {
    margin: 0 auto;
    max-width: 1440px;
    padding: 60px 68px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.solve-together__content {
    max-width: 560px;
}

.solve-together__title {
    margin: 0 0 24px;
    color: var(--exl-white);
    font-size: 44px;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
}

.solve-together__title span {
    color: #FB4E0B;
}

.solve-together__copy {
    color: var(--exl-white);
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    margin: 0 0 32px;
    max-width: 460px;
}

.solve-together__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 10px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f74d0c, #ff8a3d);
    color: var(--solve-together-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: filter 180ms ease, transform 180ms ease;
}

.solve-together__cta:hover,
.solve-together__cta:focus-visible {
    color: var(--solve-together-white);
    filter: brightness(1.08);
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .solve-together__shell {
        padding: 56px 40px;
    }

    .solve-together__title {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    .solve-together {
        min-height: 0;
        background-position: center;
    }

    .solve-together::before {
        background: linear-gradient(180deg, rgba(5, 11, 22, 0.55) 0%, rgba(5, 11, 22, 0.88) 55%, var(--solve-together-navy) 100%);
    }

    .solve-together__shell {
        padding: 32px 24px;
        min-height: 410px;
    }

    .solve-together__content {
        max-width: 100%;
    }

    .solve-together__title {
        font-size: 36px;
        line-height: 30px;
    }

    .solve-together__copy {
        font-size: 20px;
        line-height: 24px;
    }
}