/* ==========================================
   Tool Integration Section - Dark Theme
   ========================================== */

/* Section Styling - Matching 'So funktioniert' Section */
.tool-integration {
    padding: 5rem 0;
    background: #0d1117;
    position: relative;
}

/* Section Title for Integration */
.section__title--integration {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Integration Subtitle */
.integration-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Integration Steps */
.integration-steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0;
    background: transparent;
}

.step-card {
    background: #1c2128;
    border: 1px solid #30363d;
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    max-width: 350px;
    position: relative;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.step-card p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Tools Section */
.tools-section {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.tools-title {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Tools Categories - 6 columns in one row */
.tools-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.tool-column {
    text-align: center;
}

.tool-column h4 {
    color: #58a6ff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.tool-column p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Pilot Notice Bottom */
.pilot-notice-bottom {
    background: transparent;
    border: none;
    padding: 1.5rem 0 0.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.pilot-notice-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.pilot-notice-bottom i {
    color: rgba(0, 212, 255, 0.7);
    font-size: 1rem;
    flex-shrink: 0;
}

.pilot-notice-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.pilot-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-pilot-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-pilot-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

/* Add icon for consistency */
.btn-pilot-small::before {
    content: '\2192';
    margin-right: 0.25rem;
    font-size: 1.1rem;
}

.tool-integration .container {
    position: relative;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .tools-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .tools-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section__title--integration {
        font-size: 2rem;
    }
    
    .integration-subtitle {
        font-size: 1rem;
    }
    
    .integration-steps {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .tools-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pilot-notice-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .pilot-notice-content {
        justify-content: center;
    }
    
    .btn-pilot-small {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}