/* ==========================================================
   FINAL CTA – UNIVERSAL PLATFORM (BMP / SAAS)
   HARD OVERRIDE VERSION – LOCKED
   Purpose:
   - Force contrast & visibility
   - Override any conflicting CSS
========================================================== */

/* ==========================================================
   ROOT CTA SECTION
========================================================== */
.cta-section {
    position: relative !important;
    padding: 120px 0 !important;
    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #020617 100%
    ) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    isolation: isolate !important; /* prevent bleed */
}

/* ----------------------------------------------------------
   Overlay – Depth & Focus
---------------------------------------------------------- */
.cta-section .cta-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(255,255,255,0.10),
            transparent 55%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(255,255,255,0.06),
            transparent 60%
        ) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* ----------------------------------------------------------
   Container
---------------------------------------------------------- */
.cta-section .container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 980px !important;
    text-align: center !important;
}

/* ==========================================================
   TEXT ELEMENTS – FORCE COLOR
========================================================== */

/* Eyebrow */
.cta-section .cta-eyebrow {
    display: inline-block !important;
    margin-bottom: 14px !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #38bdf8 !important;
}

/* Title */
.cta-section .cta-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35) !important;
}

/* Subtitle */
.cta-section .cta-subtitle {
    max-width: 760px !important;
    margin-inline: auto !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #cbd5f5 !important;
    margin-bottom: 38px !important;
}

/* Note */
.cta-section .cta-note {
    margin-top: 26px !important;
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
}

/* ==========================================================
   ACTIONS
========================================================== */
.cta-section .cta-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

/* ----------------------------------------------------------
   PRIMARY BUTTON (DECISION)
---------------------------------------------------------- */
.cta-section .cta-actions .btn-light {
    padding: 14px 36px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    color: #020617 !important;
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}

.cta-section .cta-actions .btn-light:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 48px rgba(0,0,0,0.45) !important;
}

/* ----------------------------------------------------------
   SECONDARY BUTTON (SUPPORTING)
---------------------------------------------------------- */
.cta-section .cta-actions .btn-outline-light {
    padding: 14px 36px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.65) !important;
    background: transparent !important;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease !important;
}

.cta-section .cta-actions .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.12) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================
   SERVICE VARIANT
========================================================== */
.cta-section.cta-service {
    padding: 96px 24px !important;
}

.cta-section.cta-service .cta-title {
    font-size: 2rem !important;
}

.cta-section.cta-service .cta-subtitle,
.cta-section.cta-service p {
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-section.cta-service .cta-actions {
    margin-top: 28px !important;
    gap: 16px !important;
}

.cta-section.cta-service .btn {
    min-width: 220px !important;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 767px) {

    .cta-section {
        padding: 90px 0 !important;
    }

    .cta-section .cta-title {
        font-size: 2rem !important;
    }

    .cta-section .cta-subtitle {
        font-size: 1rem !important;
    }

}
