.cta {
        position: relative;
        padding: 4rem 2rem;
        background: #000000;
        overflow: hidden;
    }

    .cta-background {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .cta-gradient-1 {
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(30, 115, 190, 0.15), transparent);
        filter: blur(100px);
        top: -200px;
        right: -200px;
        animation: float 20s ease-in-out infinite;
    }

    .cta-gradient-2 {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 194, 160, 0.15), transparent);
        filter: blur(100px);
        bottom: -150px;
        left: -150px;
        animation: float 15s ease-in-out infinite reverse;
    }

    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        50% {
            transform: translate(30px, -30px) scale(1.1);
        }
    }

    .cta-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .cta-card {
        background: linear-gradient(135deg, rgba(30, 115, 190, 0.1), rgba(0, 194, 160, 0.05));
        border: 2px solid rgba(30, 115, 190, 0.3);
        border-radius: 30px;
        padding: 4rem 5rem;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(20px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }

    .cta-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1E73BE, #00C2A0, #1E73BE);
        background-size: 200% auto;
        animation: gradientMove 3s linear infinite;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% center;
        }
        100% {
            background-position: 200% center;
        }
    }

    .cta-content {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 4rem;
    }

    .cta-text {
        text-align: left;
    }

    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0, 194, 160, 0.15);
        border: 1px solid rgba(0, 194, 160, 0.4);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        margin-bottom: 2rem;
        color: #00C2A0;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-badge-icon {
        width: 8px;
        height: 8px;
        background: #00C2A0;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.3);
        }
    }

    .cta-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            background-position: 0% center;
        }
        50% {
            background-position: 100% center;
        }
    }

    .cta-description {
        font-size: 1.1rem;
        color: #B0B0B0;
        max-width: 600px;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .cta-btn-primary {
        background: linear-gradient(135deg, #1E73BE 0%, #1590D1 100%);
        color: #FFFFFF;
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(30, 115, 190, 0.4);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cta-btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #1590D1 0%, #00C2A0 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .cta-btn-primary:hover::before {
        opacity: 1;
    }

    .cta-btn-primary span {
        position: relative;
        z-index: 1;
    }

    .cta-btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 50px rgba(30, 115, 190, 0.6);
    }

    .cta-btn-secondary {
        background: transparent;
        color: #FFFFFF;
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cta-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #00C2A0;
        transform: translateY(-3px);
    }

    .cta-features {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #E0E0E0;
        font-size: 0.95rem;
    }

    .cta-feature-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .cta-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border: 2px solid rgba(30, 115, 190, 0.2);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-decoration-1 {
        top: -50px;
        left: -50px;
        animation: rotate 20s linear infinite;
    }

    .cta-decoration-2 {
        bottom: -50px;
        right: -50px;
        animation: rotate 15s linear infinite reverse;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .cta {
            padding: 5rem 1.5rem;
        }

        .cta-card {
            padding: 3.5rem 2rem;
        }

        .cta-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }

        .cta-description {
            font-size: 1rem;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .cta-features {
            flex-direction: column;
            gap: 1rem;
        }
    }

    @media (max-width: 640px) {
        .cta-title {
            font-size: 1.8rem;
        }

        .cta-description {
            font-size: 0.95rem;
        }

        .cta-card {
            padding: 3rem 1.5rem;
        }
    }