/* CTA Section */
.cta-section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #4141A1, #9B9BCD);
    opacity: 0.05;
}

.cta-blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
}

.cta-blob-top {
    top: 0;
    right: 0;
    background-color: rgba(65, 65, 161, 0.1);
}

.cta-blob-bottom {
    bottom: 0;
    left: 0;
    background-color: rgba(155, 155, 205, 0.1);
}

/* CTA Card */
.cta-card {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 2px solid #e5e7eb;
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-heading {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.cta-heading .highlight {
    background: linear-gradient(to right, #4141A1, #9B9BCD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subheading {
    font-size: 1.25rem; /* 20px */
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form */
.cta-form-wrapper {
    max-width: 448px;
    margin: 0 auto;
    padding-top: 16px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
    }
}

.cta-input {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.cta-input:focus {
    outline: none;
    border-color: #4141A1;
    box-shadow: 0 0 0 3px rgba(65, 65, 161, 0.1);
}

.cta-input::placeholder {
    color: #9ca3af;
}

.cta-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    height: 48px;
    background-color: #4141A1;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(65, 65, 161, 0.5);
    white-space: nowrap;
}

.cta-submit-btn:hover {
    background-color: #2d2d7a;
    box-shadow: 0 0 25px rgba(65, 65, 161, 0.6);
}

.cta-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-submit-btn:hover svg {
    transform: translateX(4px);
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 16px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cta-section {
        padding: 64px 0;
    }
    
    .cta-card {
        padding: 32px 24px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subheading {
        font-size: 1.125rem;
    }
    
    .cta-blob {
        width: 256px;
        height: 256px;
    }
}

@media (max-width: 639px) {
    .cta-input,
    .cta-submit-btn {
        width: 100%;
    }
}
