/* ==========================================================
   FINAL CTA – CVAC ENGINEERING PLATFORM
   HARD OVERRIDE VERSION – LOCKED
   Purpose:
   - Force contrast & visibility
   - CVAC Orange identity
   - Conversion-focused
========================================================== */

/* ==========================================================
   ROOT CTA SECTION
========================================================== */
.cta-section {
    position: relative !important;
    padding: 120px 0 !important;
    background: linear-gradient(
        135deg,
        #1b0f0a 0%,
        #020617 100%
    ) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    isolation: isolate !important;
}

/* ----------------------------------------------------------
   Overlay – Heat & Depth
---------------------------------------------------------- */
.cta-section .cta-overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(225,90,31,0.22),
            transparent 55%
        ),
        radial-gradient(
            circle at 72% 78%,
            rgba(255,140,90,0.14),
            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
========================================================== */

/* Eyebrow */
.cta-section .cta-eyebrow {
    display: inline-block !important;
    margin-bottom: 14px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.2em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--mt-brand-primary) !important;
}

/* Title */
.cta-section .cta-title {
    font-size: clamp(2.3rem, 4vw, 3.3rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
    text-shadow: 0 3px 26px rgba(0,0,0,0.45) !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: rgba(255,255,255,0.82) !important;
    margin-bottom: 38px !important;
}

/* Note */
.cta-section .cta-note {
    margin-top: 26px !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.65) !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 – HEAT ACTION
---------------------------------------------------------- */
.cta-section .cta-actions .btn-light {
    padding: 14px 38px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #e15a1f,
        #ff7a3c
    ) !important;
    border: none !important;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.45),
        inset 0 -2px 0 rgba(0,0,0,0.25) !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 22px 56px rgba(0,0,0,0.55),
        inset 0 -2px 0 rgba(0,0,0,0.35) !important;
}

/* ----------------------------------------------------------
   SECONDARY BUTTON – ENGINEERING SUPPORT
---------------------------------------------------------- */
.cta-section .cta-actions .btn-outline-light {
    padding: 14px 36px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.55) !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.14) !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: 2.05rem !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;
    }

}
