/* CTA Card Section */
.cta-card-section {
    position: relative;
    padding: 2rem 0 80px;
    background-color: #F0EEFF;
    overflow: hidden;
}

.cta-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: white;
    z-index: 0;
}

.cta-card-section > .container {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: linear-gradient(135deg, #7B89FF, #6678f7);
    margin-top: 0;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(123, 137, 255, 0.2), 0 10px 20px rgba(0, 11, 16, 0.05);
    overflow: hidden;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.cta-card-content {
    padding: 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-card-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

.cta-card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.cta-card-button.primary {
    background-color: #7C89FF;
    color: white;
    border: 2px solid #7C89FF;
    box-shadow: 0 4px 15px rgba(124, 137, 255, 0.3);
}

.cta-card-button.primary:hover {
    background-color: #6a77e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 137, 255, 0.4);
}

.cta-card-button.secondary {
    background-color: #7B89FF;
    color: white;
    border: 2px solid white;
}

.cta-card-button.secondary:hover {
    background-color: #6a77e8;
    transform: translateY(-2px);
}

.cta-card-button.demo {
    background-color: white;
    color: #7C89FF;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-card-button.demo:hover {
    background-color: #F0EEFF;
    color: #7C89FF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cta-card-button.demo:active {
    text-decoration: none;
}

.cta-card-illustration {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-color: #E1DFFE;
    border-radius: 0 28px 28px 0;
    overflow: hidden;
    padding: 0;
}

.cta-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.cta-image:hover {
    transform: scale(1.02);
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-card-content {
        padding: 3rem 2rem;
    }
    
    .cta-card-illustration {
        padding: 3rem 2rem;
    }
    
    .cta-card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .cta-card-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-card-button {
        width: 100%;
    }
    
    .cta-card-title {
        font-size: 1.6rem;
    }
}
