/* Enhanced Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0; /* Aligned with other sections */
    text-align: left; /* Reset default */
    color: white;
    border-radius: var(--border-radius-xl);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 52, 64, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjUwMCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0idXJsKCNhKSIgZD0iTTE0NDAgMEgwdjUwMGgxNDQwVjB6IiBvcGFjaXR5PSIuMiIvPjxkZWZzPjxyYWRpYWxHcmFkaWVudCBpZD0iYSIgY3g9IjAiIGN5PSIwIiByPSIxIiBncmFkaWVudFRyYW5zZm9ybT0icm90YXRlKDQ1KSBzY2FsZSgxNDQwIDI5MzYuNykiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48L3N2Zz4=');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.cta-text-side {
    text-align: left;
    flex: 1;
}

.cta-button-side {
    flex-shrink: 0;
}

.cta-title {
    font-size: 2.2rem; /* Reduced for sleeker feel */
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.demo-notice {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.demo-notice:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.demo-notice p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 2rem;
        text-align: left;
    }

    .cta-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center; /* keep content and button centered together in column */
    }

    .cta-text-side {
        text-align: left;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .demo-notice {
        padding: 1.25rem 2rem;
        width: 100%;
    }
}
