/* ======================
   SIMPLE FINAL CTA SECTION
====================== */

.simple-final-cta {
    padding: 0 0 clamp(60px, 8vw, 100px);
    background: #05010a;
    position: relative;
    z-index: 5;
}

.simple-cta-card {
    position: relative;
    width: 100%;
    opacity: 0;
    background: linear-gradient(135deg, rgba(13, 10, 25, 0.95) 0%, rgba(5, 1, 10, 0.98) 100%);
    border: 1px solid rgba(165, 148, 253, 0.25);
    border-radius: clamp(24px, 4vw, 36px);
    padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 60px);
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(165, 148, 253, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.simple-cta-card:hover {
    border-color: rgba(165, 148, 253, 0.45);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.65), 0 0 50px rgba(165, 148, 253, 0.18);
}

/* Ambient Radial Glows */
.simple-cta-glow-left {
    position: absolute;
    top: -40%;
    left: -15%;
    width: clamp(250px, 35vw, 500px);
    height: clamp(250px, 35vw, 500px);
    background: radial-gradient(circle, rgba(165, 148, 253, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(30px);
}

.simple-cta-glow-right {
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: clamp(250px, 35vw, 500px);
    height: clamp(250px, 35vw, 500px);
    background: radial-gradient(circle, rgba(99, 44, 155, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(30px);
}

/* Content Container */
.simple-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simple-cta-inner .heading-tag {
    margin-bottom: 24px;
    justify-content: center;
}

.simple-cta-title {
    color: #ffffff;
    margin-bottom: 28px;
}

/* Action Buttons Group */
.simple-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .simple-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .simple-cta-card {
        padding: 36px 18px;
    }
}
