/* Überschreibe die bestehenden Icon-Styles */
.btn-chooseus i {
    position: static !important;
    top: auto !important;
    right: auto !important;
    font-size: 16px !important;
    font-weight: normal !important;
}

/* Button Hover Effects */
.btn-chooseus:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3) !important;
}

.btn-chooseus:hover i {
    transform: scale(1.1);
}

.btn-chooseus:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-chooseus {
        min-width: 180px !important;
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
    
    .btn-chooseus i {
        font-size: 14px !important;
    }
}



/* Large CTA Button mit neuen Markenfarben */
.btn-cta-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(120, 235, 84, 0.6);
    border-color: #78EB54;
    background: linear-gradient(45deg, #45A735 0%, #78EB54 100%) !important;
}

.btn-cta-large:active {
    transform: translateY(-2px) scale(1.02);
}

/* Glanz-Animation beim Hover */
.btn-cta-large:hover .btn-shine-large {
    left: 100%;
}

/* Pulsierender Effekt mit Markenfarben */
@keyframes pulse-cta-large {
    0% { 
        box-shadow: 0 10px 30px rgba(120, 235, 84, 0.4); 
    }
    50% { 
        box-shadow: 0 10px 30px rgba(120, 235, 84, 0.7), 0 0 0 15px rgba(120, 235, 84, 0.1); 
    }
    100% { 
        box-shadow: 0 10px 30px rgba(120, 235, 84, 0.4); 
    }
}

.btn-cta-large {
    animation: pulse-cta-large 4s infinite;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px !important;
    }
    
    .cta-section p {
        font-size: 16px !important;
    }
    
    .btn-cta-large {
        font-size: 18px !important;
        padding: 20px 40px !important;
        min-width: 280px !important;
    }
    
    .btn-cta-large i {
        font-size: 20px !important;
    }
    
    .features-list > div {
        justify-content: center !important;
    }
}

/* Glow-Effekt mit Markenfarben */
.btn-cta-large::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #26472B, #78EB54, #45A735, #78EB54);
    border-radius: 60px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-large:hover::before {
    opacity: 0.8;
}

/* Zusätzliche Feature-Badge Styles */
.features-list span:hover {
    background: rgba(120,235,84,0.3) !important;
    border-color: rgba(120,235,84,0.5) !important;
    transform: translateY(-1px);
}



/* Process CTA Button Styles */
.btn-cta-process:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    border-color: #ffd700;
    background: linear-gradient(45deg, #ffed4e 0%, #ffd700 100%) !important;
}

.btn-cta-process:active {
    transform: translateY(-1px) scale(1.02);
}

/* Glanz-Animation beim Hover */
.btn-cta-process:hover .btn-shine-process {
    left: 100%;
}

/* Pulsierender Effekt */
@keyframes pulse-cta-process {
    0% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); 
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7), 0 0 0 10px rgba(255, 215, 0, 0.1); 
    }
    100% { 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); 
    }
}

.btn-cta-process {
    animation: pulse-cta-process 3s infinite;
}

/* Trust-Indicator Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta-process + div {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .btn-cta-process {
        font-size: 16px !important;
        padding: 15px 35px !important;
        min-width: 260px !important;
    }
    
    .btn-cta-process + div {
        font-size: 13px !important;
        padding: 0 20px;
    }
}

/* Zusätzlicher Glow-Effekt */
.btn-cta-process::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #26472B, #ffd700, #26472B);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta-process:hover::before {
    opacity: 0.7;
}



/* CTA Widget Hover Effects mit Markenfarben */
.cta-widget .cta-btn-widget:hover {
    background: linear-gradient(45deg, #45A735 0%, #78EB54 100%) !important;
    color: #26472B !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 235, 84, 0.6);
    border-color: #78EB54;
}

.cta-widget .cta-btn-widget:active {
    transform: translateY(0);
}

/* Hover-Effekt für das gesamte Widget */
.cta-widget:hover .inner-box {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(69, 167, 53, 0.4);
}

/* Icon Animation */
.cta-widget:hover .icon-box i {
    transform: scale(1.1);
    color: #78EB54;
}

/* Decorative Elements Animation */
.cta-widget:hover .inner-box > div:first-child {
    background: rgba(120, 235, 84, 0.2) !important;
}

.cta-widget:hover .inner-box > div:nth-child(2) {
    background: rgba(120, 235, 84, 0.15) !important;
}

/* Pulse Animation für Button */
@keyframes pulse-widget {
    0% { 
        box-shadow: 0 3px 10px rgba(120, 235, 84, 0.4); 
    }
    50% { 
        box-shadow: 0 3px 10px rgba(120, 235, 84, 0.7), 0 0 0 5px rgba(120, 235, 84, 0.1); 
    }
    100% { 
        box-shadow: 0 3px 10px rgba(120, 235, 84, 0.4); 
    }
}

.cta-btn-widget {
    animation: pulse-widget 3s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-widget .inner-box {
        padding: 25px 20px !important;
    }
    
    .cta-widget h4 {
        font-size: 18px !important;
    }
    
    .cta-widget .icon-box i {
        font-size: 32px !important;
    }
}


* Kompakter CTA Banner Hover */
.btn-compact-cta:hover {
    background: linear-gradient(45deg, #45A735 0%, #78EB54 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 235, 84, 0.5);
}

/* Großer CTA Banner Hover */
.btn-cta:hover {
    background: linear-gradient(45deg, #45A735 0%, #78EB54 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(120, 235, 84, 0.6);
}

/* Benefit-Badges Hover */
.benefits-list span:hover {
    background: rgba(120, 235, 84, 0.3) !important;
    border-color: rgba(120, 235, 84, 0.5) !important;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .compact-cta-banner .inner-box {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .cta-button {
        margin-left: 0 !important;
    }
    
    .cta-banner-box h3 {
        font-size: 24px !important;
    }
    
    .cta-banner-box p {
        font-size: 16px !important;
    }
    
    .benefits-list > div {
        flex-direction: column !important;
        align-items: center !important;
    }
}