       /* Styles spécifiques pour la page équipe */
        .team-hero {
            padding: 12rem 8% 6rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            text-align: center;
            position: relative;
        }

        .team-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .team-hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-hero p {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        /* Section Fondateurs */
        .founders-section {
            padding: 8rem 8%;
            background: var(--bg-dark);
        }

        .section-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 6rem;
        }

        .section-intro h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .section-intro p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 300;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .founder-card {
            background: var(--secondary);
            border: 1px solid rgba(212, 175, 55, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .founder-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
        }

        .founder-image {
            width: 100%;
            height: 450px;
            overflow: hidden;
            position: relative;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .founder-card:hover .founder-image img {
            transform: scale(1.1);
        }

        .founder-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }

        .founder-info {
            padding: 2.5rem;
            position: relative;
        }

        .founder-role {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .founder-name {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .founder-bio {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .founder-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .expertise-tag {
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            border: 1px solid rgba(212, 175, 55, 0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Section Valeurs */
        .values-section {
            padding: 8rem 8%;
            background: var(--primary);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1400px;
            margin: 4rem auto 0;
        }

        .value-card {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--secondary);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .value-card p {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* CTA Section */
        .team-cta {
            padding: 8rem 8%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-dark) 100%);
            text-align: center;
        }

        .team-cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .team-cta p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 1.3rem 4rem;
            background: var(--accent-gold);
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .cta-button:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .founders-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .team-hero h1 {
                font-size: 3rem;
            }
            .founders-grid {
                grid-template-columns: 1fr;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
@media (max-width: 968px) {
    .signature-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .signature-title {
        font-size: 3.5rem;
    }
    
    .signature-image {
        height: 400px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-pretitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding: 0 1rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }
}