.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #1d4ed8, #1e3a8a);
}

.cta-section .cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px,
            white 1px,
            transparent 0px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-section .cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-section .cta-circle-1 {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.1);
    top: -130px;
    left: -130px;
}

.cta-section .cta-circle-2 {
    width: 380px;
    height: 380px;
    background: rgba(0, 0, 0, 0.1);
    right: -190px;
    bottom: -190px;
}

.cta-section .cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.cta-section .cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section .cta-title span {
    color: #bfdbfe;
}

.cta-section .cta-description {
    max-width: 650px;
    margin: auto;
    color: #dbeafe;
    margin-bottom: 45px;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-section .primary-btn {
    background: var(--white);
    color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .primary-btn:hover {
    background: #eff6ff;
    transform: translateY(-3px);
}

.cta-section .secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-section .cta-features {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.cta-section .cta-features span {
    color: #dbeafe;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 991px) {

    .cta-section .cta-description {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .cta-section .cta-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .cta-section .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }

    .cta-section .cta-features {
        gap: 18px;
        margin-top: 40px;
    }

    .cta-section .cta-features span {
        width: 100%;
        font-size: 13px;
    }

    .cta-section .cta-circle-1 {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }

    .cta-section .cta-circle-2 {
        width: 250px;
        height: 250px;
        right: -125px;
        bottom: -125px;
    }
}

/* Small Mobile */
@media (max-width: 567px) {

    .cta-section .cta-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-section .cta-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .cta-section .cta-features span {
        font-size: 12px;
    }
}