/* Engineering Agenten Page Specific Styles */

/* Hero Section for Engineering Agenten */
.agents-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.agents-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.agents-hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.agents-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
    color: #ffffff;
}

.agents-hero__title .gradient-text {
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.agents-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.agents-hero__stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Cards */
.stat-card--mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card--mini:hover {
    transform: translateY(-5px);
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00e5ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Agenten Hub Section - Minimal styles to avoid conflicts */

/* Responsive Design */
@media (max-width: 768px) {
    .agents-hero {
        padding: 6rem 0 3rem;
    }
    
    .agents-hero__stats {
        gap: 1rem;
    }
    
    .stat-card--mini {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .agents-hero__title {
        font-size: 2rem;
    }
    
    .agents-hero__description {
        font-size: 1rem;
    }
}