/* CTA Section - Business Operations Support Page */
.cta-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    background-size: 200px 200px, 200px 200px;
    background-position: 0 0, 0 0;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
    margin: 0 0 20px 0;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--color-white-70);
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(77, 208, 225, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 208, 225, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-text-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: var(--color-white-10);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-banner {
        padding: 60px 50px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-banner {
        padding: 50px 40px;
        border-radius: 20px;
    }

    .cta-headline {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-banner {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .cta-headline {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 14px 28px;
        font-size: 15px;
        max-width: 100%;
    }
}

