/* ==========================================================================
   FULL-WIDTH FINAL CTA SECTION
   ========================================================================== */

.final-cta-fullwidth {
    width: 100%;
    background: linear-gradient(135deg, #071a52 0%, #040e2d 100%);
    padding-top: 110px;
    padding-bottom: 110px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ambient Background Lights */
.cta-bg-glow-left {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.15) 0%, rgba(7, 26, 82, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-bg-glow-right {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(11, 44, 132, 0.3) 0%, rgba(4, 14, 45, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Content Elements */
.cta-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 123, 44, 0.3);
    color: #ff7b2c;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta-title {
    color: #ffffff !important;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.75;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Button & Microcopy */
.btn-cta-gradient {
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 123, 44, 0.35);
    text-decoration: none !important;
}

.btn-cta-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 123, 44, 0.5);
}

.cta-note {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.cta-note i {
    color: #ff7b2c;
}

@media (max-width: 991px) {
    .final-cta-fullwidth {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-subtitle {
        font-size: 16px;
    }
    .btn-cta-gradient {
        width: 100%;
    }
}