.footer-cta {
    padding: 24px 0 72px;
}

.footer-cta__container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-cta__panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at 50% 16%, rgba(59,130,246,0.78), rgba(6,18,62,0.32) 24%, rgba(1,8,34,0.95) 62%),
        linear-gradient(90deg, #010824 0%, #04164d 48%, #010824 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 0 44px rgba(37,99,235,0.14);
}

.footer-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.18), rgba(255,255,255,0.02), rgba(0,0,0,0.18));
    pointer-events: none;
}

.footer-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 58px 24px 40px;
}

.footer-cta__eyebrow {
    font-size: 14px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #dbeafe;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-cta__title {
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-cta__text {
    margin: 0 auto;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(219, 234, 254, 0.88);
}

.footer-cta__actions {
    margin-top: 30px;
}

.footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    background: #f4d58d;
    color: #03235a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(244, 213, 141, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(244, 213, 141, 0.28);
}

.footer-cta__bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 8px;
    padding: 20px 24px 24px;
    font-size: 13px;
    color: rgba(219, 234, 254, 0.72);
    border-top: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .footer-cta__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 18px 0 56px;
    }

    .footer-cta__container {
        width: min(100% - 32px, 1180px);
    }

    .footer-cta__content {
        padding: 42px 18px 32px;
    }

    .footer-cta__title {
        font-size: 34px;
    }

    .footer-cta__text {
        font-size: 16px;
    }

    .footer-cta__button {
        min-height: 50px;
        padding: 0 24px;
        font-size: 16px;
    }
}