/* ============================================================
   CTA SECTION — Healthcare Migration Platform
   ============================================================ */

.full-width-section.cta-section {
    /* Rich brand gradient: Deep Trust Blue fading slightly to a dark teal hue */
    background: linear-gradient(135deg, #0B3C5D 0%, #0E4B75 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow to add depth */
.full-width-section.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(31, 138, 112, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Keeps content above the decorative glow */
}

.cta-section__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF; /* Inverted to white */
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    padding-top: 64px;
}

.cta-section__subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px; /* Slightly larger for better readability on dark */
    font-weight: 400;
    color: #E2E8F0; /* Soft off-white to contrast the bright title */
    line-height: 1.6;
    margin: 0 0 40px 0; /* Increased margin for breathing room */
    max-width: 620px;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px; /* Slightly taller for a primary CTA */
    padding: 14px 32px; /* Wider padding */
    border-radius: 8px; /* Matched to primary button style */
    border: none;
    
    /* Inverted button colors */
    background-color: #FFFFFF;
    color: #0B3C5D; /* Deep Trust Blue text */
    
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 700; /* Bolder to stand out */
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms ease-out;
    margin-bottom: 64px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-section__btn:hover {
    background-color: #F5F7FA;
    color: #1F8A70; /* Text shifts to Calm Teal on hover */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cta-section__btn:active {
    background-color: #E2E8F0;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-section__btn:focus-visible {
    outline: 3px solid #1F8A70; /* Brand Calm Teal */
    outline-offset: 4px;
}

.cta-section__btn-icon {
    font-size: 14px;
    transition: transform 200ms ease-out;
}

.cta-section__btn:hover .cta-section__btn-icon {
    transform: translateX(4px); /* Pushes the arrow slightly to the right */
}

/* Responsive adjustments */
@media screen and (min-width: 640px) and (max-width: 1023px) {
    .cta-section__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 639px) {
    .cta-section__title {
        font-size: 28px;
        padding-top: 48px;
    }

    .cta-section__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .cta-section__btn {
        width: 100%;
        padding: 14px 20px;
        margin-bottom: 48px;
    }
}