.cta-bg {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1), rgba(29, 78, 216, 0.1)) !important;

}
		
		/* 2. PULSIERENDE FARBVERLÄUFE IN BLAU/LILA/CYAN */
.verlauf-pulsieren {
    background: linear-gradient(127deg, /*87cefa, #9370db, #00ffff*/gold, goldenrod);
    background-size: 400% 400%;
    animation: gradient-pulse 9s ease infinite;
}

@keyframes gradient-pulse {
    0% { background-position: 0% 50%; }
		/*25% { background-position: 20% 70%; }*/
    50% { background-position: 100% 50%; }
		/*75% { background-position: 50% 0%; }*/
    100% { background-position: 0% 50%; }
}

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxx NEON SCHRIFT xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.text-verlauf {
		
background: linear-gradient(90deg, gold 0%, goldenrod 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

/* 6. TEXT MIT NEON-GLOW IN BLAU/LILA/CYAN */
.neon-glow-text {
    color: #ffffff;
    text-shadow: 
        0 0 7px #87cefa,
        0 0 10px #87cefa,
        0 0 21px #87cefa,
        0 0 42px #9370db,
        0 0 82px #9370db,
        0 0 92px #00ffff,
        0 0 102px #00ffff,
        0 0 151px #00ffff;
}

/* xxxxxxxxxxx Title Gradient - Blue to Purple xxxxxxxxxx */
 .titel-verlauf {
		 background: linear-gradient(135deg, gold 0%, darkviolet 50%, goldenrod 100%);   /*(135deg, #0066ff 0%, #8A2BE2 100%)*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
		  background-clip: text;
        }