/* ===== CTA ONLY - NO DEPENDENCIES ===== */
.cta-pure-section {
    position: relative !important;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
    width: calc(100% - 4rem) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;

    /* Image settings - FIXED */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    
    /* Force exact aspect ratio of your 1600x850 image */
    aspect-ratio: 1600 / 850 !important;
    min-height: unset !important;
    max-height: unset !important;
    height: auto !important;
}

.cta-pure-container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    height: 85vh !important;
    min-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
}

.cta-pure-content {
    width: 100% !important;
    max-width: 900px !important;  /* Increased from 800px for single line text */
    margin: 0 auto 5rem auto !important;  /* Increased bottom margin to push content up */
    padding: 2rem !important;
    text-align: center !important;
    background: transparent !important;
    position: relative !important;
    z-index: 3 !important;
    margin-top: auto !important;
}

/* Text styles */
.cta-pure-content .cta-pure-title {
    color: #60A5FA !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5) !important;
    font-size: 2rem !important; 
    margin-bottom: 1rem !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;  /* Forces single line on desktop */
    background: rgba(23, 37, 84, 0.7) !important;
    padding: 0.5rem 2rem !important;
    border-radius: 50px !important;
    display: inline-block !important;
}

.cta-pure-content .cta-pure-description {
    color: #6EE7B7 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    white-space: nowrap !important;  /* Forces single line on desktop */
    background: rgba(23, 37, 84, 0.6) !important;
    padding: 0.4rem 1.5rem !important;
    border-radius: 50px !important;
    display: inline-block !important;
}

/* Buttons */
.cta-pure-actions {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 2rem !important;
}

.cta-pure-button {
    padding: 1rem 2.5rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
}

.cta-pure-button-primary {
    background: linear-gradient(135deg, #93C5FD, #60A5FA) !important;
    color: #062038 !important;
    border: none !important;
}

.cta-pure-button-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.cta-pure-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}

/* Features grid */
.cta-pure-features {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 2rem !important;
}

.cta-pure-feature {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    color: #ffffff !important;
    backdrop-filter: blur(5px) !important;
}

.cta-pure-feature i {
    color: #93C5FD !important;
    font-size: 1.2rem !important;
}

/* DESKTOP - Fill the space completely */
@media (min-width: 1025px) {
    .cta-pure-section {
        background-size: contain !important;
        background-position: center !important;
        background-color: #172554 !important;
    }
}

/* TABLET LANDSCAPE */
@media (max-width: 1024px) and (min-width: 821px) {
    .cta-pure-section {
        min-height: 70vh !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ===== MOBILE ADJUSTMENTS - FIXED ===== */
@media (max-width: 820px) {
    .cta-pure-section {
        min-height: 90svh !important;
        height: 90svh !important;
        aspect-ratio: unset !important;
        padding: 0 !important;
        background-size: cover !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        background-color: transparent !important;
    }

    .cta-pure-container {
        min-height: 90svh !important;
        height: 90svh !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding-bottom: 2rem !important;
    }

    .cta-pure-content {
       margin: 0 !important;
       padding: 0 !important;
       width: 100% !important;
    }
    .cta-pure-content .cta-pure-title {
       display: none !important;
    }
    .cta-pure-content .cta-pure-description {
       display: none !important;
    }

    .cta-pure-features {
        display: none !important;
    }

    .cta-pure-actions {
        gap: 0.8rem;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .cta-pure-button {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        white-space: normal !important;
        text-align: center !important;
    }
}

@media (max-width: 820px) and (orientation: landscape) {
    .cta-pure-section {
        min-height: 100svh !important;
        height: 100svh !important;
        aspect-ratio: unset !important;
        background-size: cover !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
    }

    .cta-pure-container {
        min-height: 100svh !important;
        height: 100svh !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding-bottom: 1rem !important;
    }

    .cta-pure-content {
       margin: 0 !important;
       padding: 0 !important;
       width: 100% !important;
    }
    .cta-pure-content .cta-pure-title {
        display: none !important;
    }
    .cta-pure-content .cta-pure-description {
        display: none !important;
    }
    .cta-pure-features {
        display: none !important;
    }

    .cta-pure-actions {
        gap: 0.8rem !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .cta-pure-button {
        font-size: 0.8rem !important;
        padding: 0.5rem 1.2rem !important;
    }
}

@media (max-width: 520px) {
    .cta-pure-section {
        min-height: 90svh !important;
        height: 90svh !important;
    }

    .cta-pure-container {
        min-height: 90svh !important;
        height: 90svh !important;
    }

    .cta-pure-actions {
        flex-direction: column !important;
        gap: 0.6rem !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .cta-pure-button {
        width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

