/* ==============================
   AWESOME INNOVATION LAB SEPARATOR
   ============================== */

.innovation-separator {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    background: transparent;
    overflow: hidden;
}

.separator-line {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 91, 143, 0.3) 10%, 
        var(--brand-blue) 25%, 
        var(--accent-cyan) 50%, 
        var(--brand-blue) 75%, 
        rgba(0, 91, 143, 0.3) 90%, 
        transparent 100%
    );
    animation: separator-line-pulse 3s ease-in-out infinite;
}

@keyframes separator-line-pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.separator-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 
        0 8px 30px rgba(0, 91, 143, 0.4),
        0 0 0 8px rgba(5, 242, 219, 0.1),
        0 0 0 16px rgba(5, 242, 219, 0.05);
    animation: separator-icon-float 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes separator-icon-float {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        box-shadow: 
            0 8px 30px rgba(0, 91, 143, 0.4),
            0 0 0 8px rgba(5, 242, 219, 0.1),
            0 0 0 16px rgba(5, 242, 219, 0.05);
    }
    25% { 
        transform: translate(-50%, -55%) scale(1.05) rotate(5deg);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
        box-shadow: 
            0 12px 40px rgba(0, 91, 143, 0.6),
            0 0 0 12px rgba(5, 242, 219, 0.2),
            0 0 0 24px rgba(5, 242, 219, 0.1);
    }
    75% { 
        transform: translate(-50%, -45%) scale(1.05) rotate(-5deg);
    }
}

.separator-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle, 
        rgba(5, 242, 219, 0.15) 0%, 
        rgba(0, 91, 143, 0.1) 30%, 
        rgba(5, 242, 219, 0.05) 60%, 
        transparent 100%
    );
    border-radius: 50%;
    animation: separator-glow-rotate 8s linear infinite;
    z-index: 1;
}

@keyframes separator-glow-rotate {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(-50%, -50%) rotate(120deg) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(-50%, -50%) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* Zusätzliche Partikel-Effekte */
.separator-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: particle-left 2s ease-in-out infinite;
}

.separator-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: particle-right 2s ease-in-out infinite 1s;
}

@keyframes particle-left {
    0%, 100% { 
        opacity: 0;
        transform: translateY(-50%) translateX(0px);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) translateX(30px);
    }
}

@keyframes particle-right {
    0%, 100% { 
        opacity: 0;
        transform: translateY(-50%) translateX(0px);
    }
    50% { 
        opacity: 1;
        transform: translateY(-50%) translateX(-30px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-separator {
        height: 100px;
        margin: 3rem 0;
    }
    
    .separator-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        box-shadow: 
            0 6px 20px rgba(0, 91, 143, 0.4),
            0 0 0 6px rgba(5, 242, 219, 0.1),
            0 0 0 12px rgba(5, 242, 219, 0.05);
    }
    
    .separator-glow {
        width: 200px;
        height: 200px;
    }
    
    .separator-line {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .innovation-separator {
        height: 80px;
        margin: 2rem 0;
    }
    
    .separator-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .separator-glow {
        width: 150px;
        height: 150px;
    }
}

/* ==============================
   REST OF INNOVATION LAB STYLES
   ============================== */

/* KI-Sektion Styles */
#ai-projects {
    margin-bottom: 4rem !important;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-cyan);
    color: var(--brand-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(5, 242, 219, 0.3);
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
    animation: pulse-indicator 2s infinite;
}

@keyframes pulse-indicator {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.ai-main-demo {
    margin-bottom: 3rem;
}

.ai-featured-project {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-featured-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-cyan), var(--brand-blue-light));
    background-size: 200% 200%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ai-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ai-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--brand-blue-light));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
    animation: icon-glow 2s ease infinite;
}

@keyframes icon-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.ai-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 0, 0.1);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-indicator 1.5s infinite;
}

.ai-project-content h3 {
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ai-project-content p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-cyan);
    width: 20px;
    text-align: center;
}

.ai-cta-section {
    text-align: center;
    margin-bottom: 2rem;
}

.ai-demo-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ai-demo-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.ai-demo-button:hover .button-shine {
    left: 100%;
}

.demo-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

.other-projects-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    margin-top: 2rem;
    flex-wrap: wrap;
}

.projects-label {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.project-buttons {
    display: flex;
    gap: 0.8rem;
}

.project-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--brand-blue);
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--brand-blue);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.ai-quote {
    font-size: 1.2rem;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}

.ai-quote i {
    color: var(--accent-cyan);
    font-size: 1rem;
}

.ai-consultation-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--brand-blue);
    padding: 1rem 2rem;
    border: 2px solid var(--brand-blue);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.ai-consultation-button:hover {
    background: var(--brand-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}