.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #be37f3 0%, #8b1fa8 100%);
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Audiowide', sans-serif;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: #be37f3;
    font-size: 1.1rem;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    color: #9b2bc4;
}

.cta-box .btn-primary svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-box .btn-primary:hover svg {
    transform: translateX(5px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-box .btn-primary {
        font-size: 1rem;
        padding: 12px 35px;
    }
}

@media (max-width: 480px) {
    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    .cta-box .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}