
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 1) 0%, rgba(11, 29, 53, 0.95) 100%);
    color: #ffffff;
}

.cta-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-banner-heading {
    font-family: var(--font-family);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: 18px;
    color: #ffffff;
}

.cta-banner-subtitle {
    font-size: 1.1rem;
    color: #8beafe;
    margin-bottom: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 229, 255, 0.2);
}

.cta-button-primary {
    background-color: #00e5ff;
    color: #020617;
}

.cta-button-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

@media screen and (max-width: 991px) {
    .cta-banner {
        padding: 80px 0;
    }

    .cta-banner-heading {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
}

@media screen and (max-width: 767px) {
    .cta-banner-actions {
        /* flex-direction: column; */
        gap: 12px;
    }


}