/* =========================================
   FINAL HIGH-IMPACT CTA SECTION
   ========================================= */

.final-cta-section {
    background: #F5C518;
    padding: 64px 40px;
    width: 100%;
    box-sizing: border-box;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.final-cta-left {
    flex: 1;
}

.final-cta-line1,
.final-cta-line2 {
    font-size: 36px;
    font-weight: 800;
    color: #1A0A3C;
    line-height: 1.2;
    margin-bottom: 10px;
    display: block;
}

.final-cta-line3 {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: rgba(26,10,60,0.7);
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
}

.final-cta-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-final-cta {
    background: #1A0A3C;
    color: #F5C518;
    font-weight: 800;
    font-size: 18px;
    padding: 20px 48px;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.btn-final-cta:hover {
    background: #2D1A6E;
    color: #F5C518;
    text-decoration: none;
}

.final-cta-sub {
    font-size: 14px;
    font-weight: 400;
    color: rgba(26,10,60,0.6);
    text-align: center;
}

@media (max-width: 767px) {
    .final-cta-section {
        padding: 48px 24px;
    }

    .final-cta-container {
        flex-direction: column;
        gap: 24px;
    }

    .final-cta-left {
        text-align: center;
    }

    .final-cta-line1,
    .final-cta-line2 {
        font-size: 26px;
    }

    .final-cta-line3 {
        font-size: 18px;
    }

    .final-cta-right {
        width: 100%;
        align-items: center;
    }

    .btn-final-cta {
        width: 100%;
        max-width: 380px;
        text-align: center;
        white-space: normal;
        box-sizing: border-box;
    }
}
