/* KI Agentur Website Stylesheet */

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Neuraflow Style */
header {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex: 1;
    justify-content: space-around;
    margin: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.germany-logo {
    height: 55px;
    width: auto;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.germany-logo:hover {
    transform: scale(1.05);
}


.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem 0;
    backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #06B6D4;
    transition: width 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(6, 182, 212, 0.04);
    color: #06B6D4;
    text-decoration: none;
}

.dropdown-item:hover::before {
    width: 3px;
}

.dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.dropdown-item:hover .dropdown-icon {
    background: #06B6D4;
    color: white;
    border-color: #06B6D4;
}

.dropdown-icon i {
    font-size: 1.4rem;
    color: #06B6D4;
    transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-icon i {
    color: white;
}

/* Dropdown-Bilder - Komplett neue Lösung */
.dropdown-icon img,
.dropdown-image {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    display: block !important;
    margin: auto !important;
    transition: filter 0.2s ease;
    filter: grayscale(0.3) brightness(0.8);
}

.dropdown-item:hover .dropdown-icon img,
.dropdown-item:hover .dropdown-image {
    filter: grayscale(0) brightness(1);
}

.dropdown-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.dropdown-item:hover .dropdown-content h4 {
    color: #06B6D4;
}

.dropdown-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.dropdown-item:hover .dropdown-content p {
    color: #475569;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Live Demo Button */
.live-demo-btn {
    background: #06B6D4;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.live-demo-btn:hover {
    background: #0891b2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

/* Hero Section - Neuraflow Style */
.hero {
    background: #fafafa;
    color: #1a1a1a;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Removed decorative background for clean look */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Button styles moved to specific sections */

/* About Section - Neuraflow Style */
.about {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-image {
    background: #f8f9fa;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 4rem;
    border: 1px solid #e5e5e5;
}

/* Services Section - Neuraflow Style */
.services {
    padding: 100px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section - Neuraflow Style */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Position the last two benefit items to match the grid above */
.benefits-grid .benefit-item:nth-last-child(2) {
    grid-column: 2;
    justify-self: center;
}

.benefits-grid .benefit-item:nth-last-child(1) {
    grid-column: 3;
    justify-self: center;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #06B6D4;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
}

/* Contact Section - Neuraflow Style */
.contact {
    padding: 100px 0;
    background: #fafafa;
    color: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: #1a1a1a;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    height: 40px;
    resize: vertical;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    letter-spacing: -0.01em;
    margin-top: auto;
}

.submit-btn:hover {
    background: #333;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.radio-option:hover {
    border-color: #06B6D4;
    background: #f0fdfa;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #06B6D4;
    background: #06B6D4;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ .radio-content {
    color: #06B6D4;
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.radio-content small {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Modern Select Styles */
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group select:hover {
    border-color: #06B6D4;
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.form-group select:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background-color: white;
}

.form-group select option {
    padding: 0.75rem;
    background: white;
    color: #1a1a1a;
    font-size: 1rem;
}

.form-group select option:hover {
    background: #f0fdfa;
}

/* Checkbox Styles */
.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #06B6D4;
    background: #06B6D4;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-option a {
    text-decoration: underline;
}

.checkbox-option a:hover {
    text-decoration: none;
}

/* Kompakte Radio Button Styles */
.radio-group-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    text-align: center;
    justify-content: center;
}

.radio-option-compact:hover {
    border-color: #06B6D4;
    background: #f0fdfa;
}

.radio-option-compact input[type="radio"] {
    display: none;
}

.radio-option-compact .radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.radio-option-compact input[type="radio"]:checked + .radio-custom {
    border-color: #06B6D4;
    background: #06B6D4;
}

.radio-option-compact input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.radio-option-compact input[type="radio"]:checked ~ span {
    color: #06B6D4;
    font-weight: 600;
}

.radio-option-compact span:last-child {
    font-size: 0.9rem;
    color: #1a1a1a;
}

/* Kompakte Checkbox Styles */
.checkbox-option-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
}

.checkbox-option-compact input[type="checkbox"] {
    display: none;
}

.checkbox-option-compact .checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-option-compact input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #06B6D4;
    background: #06B6D4;
}

.checkbox-option-compact input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.checkbox-option-compact a {
    text-decoration: underline;
}

.checkbox-option-compact a:hover {
    text-decoration: none;
}

/* Clean Radio Button Styles */
.radio-group-clean {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option-clean {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.radio-option-clean:hover {
    border-color: #06B6D4;
    background: #f0fdfa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.radio-option-clean input[type="radio"] {
    display: none;
}

.radio-option-clean .radio-custom {
    width: 20px;
    height: 20px;
    border: 3px solid #e5e5e5;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-option-clean input[type="radio"]:checked + .radio-custom {
    border-color: #06B6D4;
    background: #06B6D4;
    transform: scale(1.1);
}

.radio-option-clean input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-option-clean input[type="radio"]:checked ~ span {
    color: #06B6D4;
    font-weight: 600;
    font-size: 1rem;
}

.radio-option-clean:has(input[type="radio"]:checked) {
    border-color: #06B6D4;
    background: #f0fdfa;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    transform: translateY(-1px);
}

.radio-option-clean span:last-child {
    font-size: 0.95rem;
    color: #1a1a1a;
}

/* Clean Checkbox Styles */
.checkbox-option-clean {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-option-clean input[type="checkbox"] {
    display: none;
}

.checkbox-option-clean .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 3px solid #e5e5e5;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-option-clean input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #06B6D4;
    background: #06B6D4;
    transform: scale(1.05);
}

.checkbox-option-clean input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-option-clean a {
    text-decoration: underline;
}

.checkbox-option-clean a:hover {
    text-decoration: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    nav {
        justify-content: space-between;
    }

    .mobile-menu {
        display: flex;
    }
    
    .live-demo-btn {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 8px;
        min-width: auto;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .dropdown-icon {
        width: 32px;
        height: 32px;
    }
    
    .dropdown-icon i {
        font-size: 1rem;
    }
    
    .dropdown-content h4 {
        font-size: 0.9rem;
    }
    
    .dropdown-content p {
        font-size: 0.8rem;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .germany-logo {
        height: 45px;
        margin-left: 0.5rem;
    }
    
    .logo-container {
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 300px;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .about-text {
        order: 2;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid .benefit-item:nth-last-child(2),
    .benefits-grid .benefit-item:nth-last-child(1) {
        grid-column: 1;
        justify-self: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Responsive Tabelle */
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed pulse animation for cleaner design */

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.8s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Removed pulse animation class */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #06B6D4);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Clean Service Cards - Neuraflow Style */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

/* Clean Benefit Items */
.benefit-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.benefit-item:hover .benefit-icon {
    color: #333;
}

/* IST/SOLL Comparison Styles */
.gap-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.ist-section, .soll-section {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ist-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.soll-section {
    background: linear-gradient(135deg, #06B6D4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.ist-section::before, .soll-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ist-section:hover::before, .soll-section:hover::before {
    opacity: 1;
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comparison-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2563EB;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.cost-comparison {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.cost-item {
    display: inline-block;
    margin: 0 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
}

.cost-ist {
    background: #ff6b6b;
    color: white;
}

.cost-soll {
    background: #06B6D4;
    color: white;
}

.savings-highlight {
    background: #F59E0B;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
    display: inline-block;
}

/* Subtle animations for professionalism */
@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.energy-pulse {
    animation: subtle-pulse 3s infinite;
}

.energy-bounce {
    animation: gentle-float 4s infinite;
}

/* Cyan accent for energy */
.cyan-accent {
    color: #06B6D4 !important;
}

.cyan-bg {
    background: #06B6D4 !important;
}

/* GAP Selling Styles - Timeline Design */
.gap-comparison {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.comparison-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-marker {
    background: #ef4444;
    color: white;
}

.solution-marker {
    background: #06B6D4;
    color: white;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.timeline-content h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.problem-grid, .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.problem-card, .solution-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 0.95rem;
    color: #666;
}

.problem-card i {
    color: #ef4444;
    font-size: 1.1rem;
    width: 20px;
}

.solution-card i {
    color: #06B6D4;
    font-size: 1.1rem;
    width: 20px;
}

.timeline-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #06B6D4;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-arrow i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.transformation-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.transformation-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f0fdfa;
    border: 1px solid #a7f3d0;
    border-radius: 25px;
    color: #06B6D4;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.transformation-benefits .benefit-item:hover {
    background: #06B6D4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.transformation-benefits .benefit-item i {
    font-size: 1.1rem;
    width: 20px;
}

/* Bot-Typen Styles */
.bot-types {
    margin-top: 4rem;
}

.bot-types-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bot-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bot-card.featured {
    border: 2px solid #06B6D4;
    transform: scale(1.05);
}

.bot-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.bot-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #06B6D4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bot-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0fdfa;
    color: #06B6D4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    border: 2px solid #a7f3d0;
}

.bot-card h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.bot-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bot-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.bot-card li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.bot-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06B6D4;
    font-weight: 600;
}

.bot-price {
    background: #f0fdfa;
    color: #06B6D4;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid #a7f3d0;
    transition: all 0.2s ease;
}

.bot-price-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.bot-price-link:hover {
    transform: scale(1.05);
}

.bot-price-link:hover .bot-price {
    background: #e0f7fa;
    color: #0891b2;
    border-color: #06B6D4;
}

/* Bot Card Links */
.bot-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.bot-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.bot-learn-more {
    background: #06B6D4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

.bot-card-link:hover .bot-learn-more {
    background: #0891b2;
}

/* Bot Pages Specific Styles */

/* Header Styles for Bot Pages */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: #06B6D4;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #06B6D4;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06B6D4;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.use-case h3 {
    color: #06B6D4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.use-case ul {
    list-style: none;
    padding: 0;
}

.use-case li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.use-case li:last-child {
    border-bottom: none;
}

/* ROI Section */
.roi-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.roi-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: #06B6D4;
    margin-bottom: 0.5rem;
}

.roi-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #06B6D4;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #06B6D4 !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Main page button styles (to override bot page styles) */
.hero .cta-button,
.about .cta-button,
.solution .cta-button {
    background: #06B6D4 !important;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.hero .cta-button:hover,
.about .cta-button:hover,
.solution .cta-button:hover {
    background: #0891b2 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Specific styles for ROI section button */
.solution .cta-button {
    background: #06B6D4 !important;
    color: white !important;
    font-size: 1.1rem !important;
    padding: 18px 36px !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.solution .cta-button:hover {
    background: #0891b2 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #06B6D4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Integration Section */
.integration-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.integration-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.integration-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.integration-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Process Timeline */
.process-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: #06B6D4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Bot Pages */
@media (max-width: 768px) {
    .hero-stats,
    .features-grid,
    .use-cases-grid,
    .roi-grid,
    .process-steps,
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .stat-number,
    .roi-number {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-marker {
        order: 1;
    }
    
    .timeline-content {
        order: 2;
        padding: 1.5rem;
    }
    
    .problem-grid, .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .transformation-benefits .benefit-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .bot-grid {
        grid-template-columns: 1fr;
    }
    
    .bot-card.featured {
        transform: none;
    }
    
    .bot-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: #06B6D4;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0891b2;
}

.cookie-btn.necessary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e5e5e5;
}

.cookie-btn.necessary:hover {
    background: #e9ecef;
}

.cookie-btn.settings {
    background: transparent;
    color: #06B6D4;
    border: 1px solid #06B6D4;
}

.cookie-btn.settings:hover {
    background: #06B6D4;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-modal-header h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #1a1a1a;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #06B6D4;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #06B6D4;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

/* Cookie Settings Button (Fingerprint) */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.cookie-settings-btn i {
    color: white;
    font-size: 24px;
    animation: pulse 2s infinite;
}

.cookie-settings-btn:hover i {
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Form Message Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 0;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
    
    .cookie-settings-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .cookie-settings-btn i {
        font-size: 20px;
    }
    
    /* Mobile Form Styles */
    .radio-option {
        padding: 0.75rem;
    }
    
    .radio-content strong {
        font-size: 0.9rem;
    }
    
    .radio-content small {
        font-size: 0.8rem;
    }
    
    .checkbox-option {
        font-size: 0.85rem;
    }
    
    /* Mobile kompakte Form Styles */
    .contact-form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    .radio-group-compact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }
    
    .radio-option-compact {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .radio-option-compact .radio-custom {
        width: 14px;
        height: 14px;
    }
    
    .radio-option-compact input[type="radio"]:checked + .radio-custom::after {
        width: 4px;
        height: 4px;
    }
}

/* IST vs. SOLL Panel Design */
.panel-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ist-panel, .soll-panel {
    flex: 1;
    padding: 2rem;
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.ist-panel {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.soll-panel {
    background: linear-gradient(135deg, #ccfbf1 0%, #a7f3d0 100%);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.panel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ist-dot {
    background: #ef4444;
}

.soll-dot {
    background: #06B6D4;
}

.panel-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.panel-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.panel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
    font-size: 2rem;
    flex-shrink: 0;
}

.benefits-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.benefit-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    min-width: 200px;
}

.benefit-card:hover {
    transform: translateY(-2px);
}

.benefit-card i {
    font-size: 1.5rem;
    color: #06B6D4;
}

.benefit-card span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Design for Panel Comparison */
@media (max-width: 768px) {
    .panel-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .panel-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}
