/* =====================================================
   MODERNE DESIGN-REVOLUTION FÜR FLIXPLANER 2.0
   Mutige, lebendige Gestaltung für 2025
   ===================================================== */

/* 1. HERO SECTION - HELLER, FREUNDLICHER GRADIENT */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #c7d2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

/* Moderne geometrische Shapes im Hintergrund */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    transform: rotate(-45deg);
    animation: float 25s ease-in-out infinite reverse;
}

/* Gradient Animation entfernt für statischen, ruhigen Look */

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
    50% { transform: translateY(-30px) rotate(50deg) scale(1.1); }
}

/* Hero Content - Dunkler Text für bessere Lesbarkeit */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* 2. TRUST BADGE - GLASSMORPHISMUS DELUXE */
.trust-badge.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    color: #1e293b;
    font-weight: 500;
}

.trust-badge i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* 3. BUTTONS - MODERN & BOLD */
.hero .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero .btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
}

.hero .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.hero .btn-outline {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero .btn-outline:hover {
    background: #f0f9ff;
    color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

/* Button Ripple Effect */
.hero .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.hero .btn:hover::before {
    width: 200px;
    height: 200px;
}

/* Special ripple for primary button */
.hero .btn-primary::before {
    background: rgba(255, 255, 255, 0.15);
}

/* 4. HERO STATS - MODERN CARDS */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.stat {
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    color: #3b82f6;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* 5. KI FEATURES SECTION - MODERN LAYOUT */
.ki-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ki-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ki-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ki-benefit-card:hover::before {
    transform: scaleX(1);
}

.ki-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ki-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

/* 6. SECTION BADGES - MODERN PILLS */
.section-badge {
    background: linear-gradient(135deg, #3b82f615, #8b5cf615);
    color: #3b82f6;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid #3b82f620;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transform: translateY(-50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 7. FEATURE CARDS - NEUMORPHISM TOUCH */
.feature-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 20px 20px 60px #d1d5db, -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 75px #d1d5db, -25px -25px 75px #ffffff;
    border-color: #3b82f620;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

/* 8. NAVIGATION - STICKY & MODERN */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* 9. RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        min-width: auto;
    }
    
    .ki-benefits-grid {
        grid-template-columns: 1fr;
    }
} 

/* Pricing Card Buttons - Modernes, luftiges Design */
.pricing-card .btn-primary {
    background: white !important;
    color: #3b82f6 !important;
    border: 2px solid #e0e7ff !important;
    font-weight: 600;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.pricing-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15) !important;
    background: white !important;
    border-color: #3b82f6 !important;
}

.pricing-card .btn-primary:hover::before {
    opacity: 0.05;
}

/* Spezielle Styles für verschiedene Button-Typen */
.pricing-card.standard .btn-primary {
    border-color: #ddd6fe !important;
    color: #7c3aed !important;
}

.pricing-card.standard .btn-primary:hover {
    border-color: #7c3aed !important;
}

.pricing-card.upgrade-offer .btn-primary {
    background: white !important;
    color: #f59e0b !important;
    border: 2px solid #fed7aa !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.1) !important;
}

.pricing-card.upgrade-offer .btn-primary:hover {
    background: white !important;
    color: #d97706 !important;
    border-color: #f59e0b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.15) !important;
}

.pricing-card.upgrade-offer .btn-primary::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    opacity: 0 !important;
}

.pricing-card.upgrade-offer .btn-primary:hover::before {
    opacity: 0.05 !important;
}

.pricing-card.featured .btn-primary {
    background: transparent !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
    position: relative;
}

.pricing-card.featured .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pricing-card.featured .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.pricing-card.test .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
}

.pricing-card.test .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    animation: none;
    transform: translateY(-2px) !important;
}

/* Icon-Anpassungen in Buttons */
.pricing-card .btn-primary i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .pricing-card .btn-primary {
        width: 100%;
        padding: 1rem 1.5rem !important;
    }
} 

/* Product Card Buttons - Luftiges, modernes Design */
.product-card .btn {
    padding: 0.875rem 1.75rem !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* Primary Button (Jetzt bestellen) */
.product-card .btn-primary {
    background: white !important;
    color: #3b82f6 !important;
    border: 2px solid #e0e7ff !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.product-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15) !important;
}

/* Outline Button (Mehr erfahren) */
.product-card .btn-outline {
    background: white !important;
    color: #64748b !important;
    border: 2px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    overflow: hidden;
}

.product-card .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Active Product Card Special Styling */
.product-card.active .btn-primary {
    background: #3b82f6 !important;
    color: white !important;
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

.product-card.active .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

/* Product Card Hover Effects */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .product-card .btn {
        width: 100%;
        text-align: center;
    }
} 

/* CTA Section Button - Modernes Design */
.cta-section .btn-primary {
    background: white !important;
    color: #3b82f6 !important;
    border: 3px solid white !important;
    padding: 1.25rem 3rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    border-radius: 60px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    position: relative;
    overflow: hidden;
    text-transform: none !important;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    background: #f0f9ff !important;
    border-color: #e0e7ff !important;
}

.cta-section .btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.cta-section .btn-primary i {
    margin-right: 0.75rem;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.cta-section .btn-primary:hover i {
    transform: translateY(-2px);
}

/* Alternative CTA Button Style für Kontrast */
.cta-section.alt .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3) !important;
}

.cta-section.alt .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed) !important;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4) !important;
}

/* CTA Section Background Enhancement */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    transform: rotate(35deg);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section .btn-primary {
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
        width: 100%;
    }
} 

/* Contact Form Button - Modernes Design */
.contact-form-section .btn-primary,
.contact-form-card .btn-primary,
#contactForm .btn-primary {
    background: white !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1) !important;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-section .btn-primary::before,
.contact-form-card .btn-primary::before,
#contactForm .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-form-section .btn-primary:hover,
.contact-form-card .btn-primary:hover,
#contactForm .btn-primary:hover {
    background: #f0f9ff !important;
    color: #2563eb !important;
    border-color: #2563eb !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15) !important;
}

.contact-form-section .btn-primary:hover::before,
.contact-form-card .btn-primary:hover::before,
#contactForm .btn-primary:hover::before {
    left: 0;
}

/* Icon Animation */
.contact-form-section .btn-primary i,
.contact-form-card .btn-primary i,
#contactForm .btn-primary i {
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.contact-form-section .btn-primary:hover i,
.contact-form-card .btn-primary:hover i,
#contactForm .btn-primary:hover i {
    transform: translateX(3px);
}

/* Form Input Focus Enhancement */
.contact-form-section input:focus,
.contact-form-section textarea:focus,
.contact-form-section select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Checkbox Modern Style */
.contact-form-section input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 0.75rem;
    accent-color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-section .btn-primary,
    .contact-form-card .btn-primary,
    #contactForm .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem !important;
    }
} 

/* Success Button (Grüner Kostenlos testen Button) - Modernes Design */
.btn-success,
.pricing-card .btn-success {
    background: white !important;
    color: #10b981 !important;
    border: 2px solid #10b981 !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15) !important;
    position: relative;
    overflow: hidden;
}

.btn-success::before,
.pricing-card .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-success:hover,
.pricing-card .btn-success:hover {
    background: #f0fdf4 !important;
    color: #059669 !important;
    border-color: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15) !important;
}

.btn-success:hover::before,
.pricing-card .btn-success:hover::before {
    left: 0;
}

/* Icon Animation im Success Button */
.btn-success i,
.pricing-card .btn-success i {
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.btn-success:hover i,
.pricing-card .btn-success:hover i {
    transform: translateY(2px);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(2px); }
    50% { transform: translateY(-2px); }
}

/* Test-Info Box unter dem Button */
.test-info {
    margin-top: 1rem !important;
    padding: 0.75rem 1rem !important;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
    border: 1px solid #6ee7b7 !important;
    border-radius: 12px !important;
    color: #065f46 !important;
    font-size: 0.875rem !important;
    text-align: center;
}

.test-info i {
    color: #10b981 !important;
    margin-right: 0.5rem;
} 

/* =====================================================
   UNIVERSELLER RIPPLE EFFEKT FÜR ALLE BUTTONS
   Einheitlicher Hover-Effekt wie bei "Angebot anfordern"
   ===================================================== */

/* Basis Ripple-Effekt für alle Buttons */
.btn:not(.no-ripple),
.hero .btn,
.pricing-card .btn-primary,
.product-card .btn,
.cta-section .btn-primary,
.contact-form-section .btn-primary,
.contact-form-card .btn-primary,
#contactForm .btn-primary,
.btn-success,
.modal-actions .btn,
.form-actions .btn {
    position: relative !important;
    overflow: hidden !important;
}

/* Ripple Pseudo-Element */
.btn:not(.no-ripple)::after,
.hero .btn::after,
.pricing-card .btn-primary::after,
.product-card .btn::after,
.cta-section .btn-primary::after,
.contact-form-section .btn-primary::after,
.contact-form-card .btn-primary::after,
#contactForm .btn-primary::after,
.btn-success::after,
.modal-actions .btn::after,
.form-actions .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

/* Standard Ripple Farbe (Blau) */
.btn:not(.no-ripple)::after,
.hero .btn-outline::after,
.pricing-card .btn-primary::after,
.product-card .btn-primary::after,
.cta-section .btn-primary::after,
.contact-form-section .btn-primary::after,
.contact-form-card .btn-primary::after,
#contactForm .btn-primary::after,
.modal-actions .btn-primary::after,
.form-actions .btn-primary::after {
    background: rgba(59, 130, 246, 0.1);
}

/* Weiße Ripple für Primary Buttons mit blauem Hintergrund */
.hero .btn-primary::after {
    background: rgba(255, 255, 255, 0.15);
}

/* Grüne Ripple für Success Buttons */
.btn-success::after,
.pricing-card .btn-success::after {
    background: rgba(16, 185, 129, 0.1);
}

/* Orange Ripple für Upgrade-Offer Buttons */
.pricing-card.upgrade-offer .btn-primary::after {
    background: rgba(245, 158, 11, 0.1);
}

/* Lila Ripple für Standard Pricing Buttons */
.pricing-card.standard .btn-primary::after {
    background: rgba(124, 58, 237, 0.1);
}

/* Graue Ripple für Secondary Buttons */
.modal-actions .btn-secondary::after,
.form-actions .btn-secondary::after,
.form-actions .btn-cancel::after,
.product-card .btn-outline::after {
    background: rgba(100, 116, 139, 0.1);
}

/* Weiße Ripple für aktive Product Card Primary Button */
.product-card.active .btn-primary::after {
    background: rgba(255, 255, 255, 0.15);
}

/* Hover Effekt - Ripple expandiert */
.btn:not(.no-ripple):hover::after,
.hero .btn:hover::after,
.pricing-card .btn-primary:hover::after,
.product-card .btn:hover::after,
.cta-section .btn-primary:hover::after,
.contact-form-section .btn-primary:hover::after,
.contact-form-card .btn-primary:hover::after,
#contactForm .btn-primary:hover::after,
.btn-success:hover::after,
.modal-actions .btn:hover::after,
.form-actions .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Vereinfachte Hover-Effekte - nur noch Anheben */
.btn:hover,
.hero .btn:hover,
.pricing-card .btn-primary:hover,
.product-card .btn:hover,
.cta-section .btn-primary:hover,
.contact-form-section .btn-primary:hover,
.contact-form-card .btn-primary:hover,
#contactForm .btn-primary:hover,
.btn-success:hover,
.modal-actions .btn:hover,
.form-actions .btn:hover {
    transform: translateY(-2px) !important;
}

/* Entferne alte ::before Pseudo-Elemente */
.hero .btn::before,
.pricing-card .btn-primary::before,
.product-card .btn-primary::before,
.cta-section .btn-primary::before,
.contact-form-section .btn-primary::before,
.contact-form-card .btn-primary::before,
#contactForm .btn-primary::before,
.btn-success::before,
.modal-actions .btn-primary::before,
.form-actions .btn-primary::before {
    display: none !important;
} 

/* Smart Assistants Section Styles */
.smart-assistants {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.smart-assistants::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.smart-assistants .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.smart-assistants .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: shimmer 3s ease-in-out infinite;
}

.smart-assistants .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.2;
}

.smart-assistants .section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.assistant-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.assistant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.assistant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.assistant-visual {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.assistant-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.assistant-visual:hover img {
    transform: scale(1.05);
}

.assistant-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(99, 102, 241, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.assistant-content {
    padding: 40px;
}

.assistant-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.assistant-content h3 i {
    color: #6366f1;
    font-size: 1.5rem;
}

.assistant-content h4 {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 20px;
}

.assistant-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.assistant-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.assistant-benefits li {
    padding: 12px 0;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.assistant-benefits li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.assistant-cta {
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    text-align: center;
}

.time-saved {
    font-size: 1.125rem;
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.assistant-footer {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.assistant-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 15px;
    display: block;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* More Assistants Teaser */
.more-assistants {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.more-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.more-text i {
    color: #6366f1;
    margin-right: 10px;
    font-size: 1.25rem;
}

.more-text strong {
    color: #111827;
}

.more-link {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .assistant-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .assistant-card {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .smart-assistants {
        padding: 60px 0;
    }
    
    .assistant-features {
        grid-template-columns: 1fr;
    }
    
    .assistant-visual {
        height: 200px;
    }
    
    .assistant-content {
        padding: 30px 20px;
    }
    
    .assistant-content h3 {
        font-size: 1.5rem;
    }
    
    .assistant-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .assistant-features {
        grid-template-columns: 1fr;
    }
    
    .assistant-card {
        border-radius: 15px;
    }
    
    .assistant-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
        top: 15px;
        right: 15px;
    }
}

/* Animation for shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Pulse animation for background */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
} 