.cta-footer {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;

    padding: 80px 80px;

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.cta-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        #f04e30 0%,
        #f04e30 35%,
        rgba(240, 78, 48, 0.6) 48%,
        rgba(240, 78, 48, 0.25) 58%,
        rgba(240, 78, 48, 0.08) 66%,
        rgba(240, 78, 48, 0) 72%
    );

    z-index: 1;
}

.cta-footer::after {
    content: "";
    position: absolute;
    left: -220px;
    top: -180px;
    width: 700px;
    height: 700px;

    background: repeating-radial-gradient(
        circle,
        rgba(255,255,255,0.12) 0px,
        rgba(255,255,255,0.12) 2px,
        transparent 2px,
        transparent 16px
    );

    z-index: 1;
}

/* INNER */
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* CONTENT */
.cta-content {
    max-width: 520px;
    color: #fff;
}

.cta-sub {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0.85;
}

.cta-content h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-button {
    margin-top: 10px;
    display: inline-block;
    background: #f1f1f1;
    color: #f04e30;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 2px;

    transition: all 0.25s ease;
}

/* subtle hover */
.cta-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ================= FOOTER FIX ================= */

.site-footer {
    background: #0f3f4d;
    padding: 14px 80px; 
    color: #fff;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner img {
    height: 22px;
}

.footer-inner p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .cta-footer {
        padding: 60px 24px;
        min-height: auto;
        align-items: flex-start;
        background-position: center;
    }

    /* Make gradient more vertical for mobile */
    .cta-footer::before {
        background: linear-gradient(
            180deg,
            #f04e30 0%,
            #f04e30 45%,
            rgba(240, 78, 48, 0.6) 65%,
            rgba(240, 78, 48, 0.2) 80%,
            rgba(240, 78, 48, 0) 100%
        );
    }

    /* Reduce circle pattern size */
    .cta-footer::after {
        left: -150px;
        top: -120px;
        width: 400px;
        height: 400px;
        opacity: 0.6;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-sub {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .cta-content h2 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 14px;
    }

    /* ================= FOOTER ================= */

    .site-footer {
        padding: 16px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-inner img {
        height: 18px;
    }

    .footer-inner p {
        font-size: 11px;
    }
}