.cta-section {
    position: relative;
    padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: #ffffff;
    overflow: hidden;
}

.section-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    border-radius: 50%;
    filter: blur(clamp(40px, 8vw, 80px));
}

.orb-cta-1 {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(0, 74, 173, 0.15));
    top: -20%;
    right: -10%;
}

.orb-cta-2 {
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.1), rgba(0, 74, 173, 0.1));
    bottom: -20%;
    left: -10%;
}

.content-container-cta {
    width: min(95%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-left {
    padding-right: clamp(0rem, 3vw, 2rem);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.5rem, 2vw, 1rem);
    background: rgba(13, 110, 253, 0.1);
    border-radius: 100px;
    color: #0D6EFD;
    font-weight: 500;
    margin-bottom: clamp(1rem, 3vw, 2rem);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.badge-icon {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1F2937;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.gradient-text {
    background: linear-gradient(135deg, #0D6EFD, #0A58CA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.primary-cta {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #0D6EFD, #0A58CA);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    width: fit-content;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.arrow-icon {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
}

.cta-preview {
    position: relative;
    width: 100%;
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: 0 20px 40px -5px rgba(13, 110, 253, 0.15);
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(16px, 3vw, 24px);
}

.card-icon {
    width: clamp(32px, 5vw, 40px);
    height: clamp(32px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: clamp(8px, 1.5vw, 12px);
    color: #0D6EFD;
}

.card-content h4 {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.card-number {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #0D6EFD;
}

@media (max-width: 768px) {
    .content-container-cta {
        grid-template-columns: 1fr;
    }

    .cta-left {
        padding-right: 0;
        text-align: center;
    }

    .cta-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .floating-cards-container {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .floating-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .card-icon {
        margin-bottom: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-cta {
        width: 100% !important;
        justify-content: center;
    }
}