/* Styles spécifiques à la page Équipe */

/* Hero Section Équipe */
.team-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.team-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.team-stat .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Section Leadership */
.leadership-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.leader-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-glow);
}

.leader-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.leader-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.leader-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    box-shadow: var(--shadow-glow);
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.leader-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.leader-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.leader-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Équipe Scientifique */
.science-team-section {
    padding: 6rem 0;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.scientist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.scientist-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.scientist-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.scientist-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.scientist-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.scientist-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.scientist-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.8rem;
    justify-content: center;
}

.detail-item i {
    color: var(--primary);
    width: 16px;
}

.scientist-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Équipe Commerciale */
.commercial-team-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.commercial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.commercial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.commercial-card.large {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.commercial-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.commercial-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.commercial-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.commercial-bio {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.commercial-stats {
    display: flex;
    gap: 2rem;
}

.commercial-stat {
    text-align: center;
}

.commercial-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.commercial-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.commercial-team-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commercial-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.commercial-member:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.member-avatar-sm {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.member-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-info p {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.member-experience {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Section Rejoindre l'Équipe */
.join-team-section {
    padding: 6rem 0;
}

.join-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-team-text {
    text-align: left;
}

.job-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.job-stat {
    text-align: center;
}

.job-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.job-stat .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.join-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.career-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.career-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.benefit-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commercial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-team-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .team-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-card.featured {
        transform: none;
    }
    
    .leader-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .science-grid {
        grid-template-columns: 1fr;
    }
    
    .commercial-card.large {
        flex-direction: column;
        text-align: center;
    }
    
    .job-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .leader-stats,
    .commercial-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .commercial-member {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}