/* TeDaCo Premium - Zertifizierungs & Team Styling */

/* Zertifizierungs-Showcase */
.certifications-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(15, 23, 42, 0.08) 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.certifications-title {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.certifications-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.certifications-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-logo-item {
    display: flex;
    justify-content: center;
}

.cert-logo-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.cert-logo-placeholder:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.2);
}

.iso-highlight {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.iso-highlight:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.cert-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cert-logo-placeholder h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.iso-highlight h4 {
    color: #FFD700;
}

.cert-logo-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* Team & Partnernetzwerk Section */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(15, 23, 42, 0.05) 100%);
}

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

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

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

.expertise-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.expertise-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.process-section {
    margin-top: 4rem;
    text-align: center;
}

.process-section h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certifications-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .certifications-logos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
