.site-cta {
    max-width: 900px;
    margin: 40px auto;
    padding: 22px 28px;

    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    backdrop-filter: blur(14px);

    box-shadow:
        0 0 30px rgba(0,0,0,0.35),
        0 0 40px rgba(179,107,255,0.12);
}

.site-cta a {
    padding: 12px 22px;
    border-radius: 999px;

    background: linear-gradient(90deg, #ff69b4, #b36bff);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;

    box-shadow:
        0 0 15px rgba(255,105,180,0.35),
        0 0 30px rgba(179,107,255,0.2);

    transition: 0.3s ease;
}

.site-cta a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 25px rgba(255,105,180,0.6),
        0 0 45px rgba(179,107,255,0.4);
}
.site-cta a:last-child {
    transform: scale(1.05);

    box-shadow:
        0 0 25px rgba(145,70,255,0.7),
        0 0 60px rgba(179,107,255,0.5);
}
.cta-title {
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 10px;
}
.site-cta-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}





