/* ==================== */
/* HERO SECTION - Impact immédiat */
/* ==================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--carbon) 0%, var(--tech-blue) 100%);
    color: white;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    margin-top: 4%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg1.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    animation: fadeInUp 1s ease-out;
}

.badge-accroche {
    display: inline-block;
    background-color: var(--power-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.hero-titre {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-titre span {
    color: var(--titan-gold);
    position: relative;
    display: inline-block;
}

.hero-titre span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--titan-gold);
    opacity: 0.5;
    z-index: -1;
}

.hero-slogan {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 80%;
}

.hero-chiffres {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.chiffre {
    text-align: center;
}

.chiffre .nombre {
    font-size: 2rem;
    font-weight: 700;
    color: var(--titan-gold);
    display: block;
    line-height: 1;
}

.chiffre .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-boutons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.bouton {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.bouton i {
    font-size: 1rem;
}

.bouton-primaire {
    background-color: var(--power-red);
    color: white;
    box-shadow: var(--glow-effect);
}

.bouton-primaire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.bouton-secondaire {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.bouton-secondaire:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.bouton-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visuel {
    position: absolute;
    right: 5%;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.visuel-container {
    position: relative;
    width: 100%;
    height: 80%;
}

.visuel-principal {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.orbes-animes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    filter: blur(5px);
    animation: orbFloat 15s linear infinite;
    opacity: 0.7;
}

.orb::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orb:hover::after {
    opacity: 1;
}

.orbe-html {
    background-color: #e34c26;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.orbe-css {
    background-color: #264de4;
    top: 25%;
    left: 70%;
    animation-delay: 1s;
}

.orbe-js {
    background-color: #f0db4f;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.orbe-arduino {
    background-color: #00979d;
    top: 70%;
    left: 65%;
    animation-delay: 3s;
}

.orbe-ia {
    background-color: #ff6b6b;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

/* ==================== */
/* VALEURS SECTION - Pour rassurer */
/* ==================== */
.valeurs {
    padding: 5rem 10%;
    background-color: white;
}

.section-titre {
    text-align: center;
    margin-bottom: 3rem;
}

.section-titre h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-titre h2 span {
    color: var(--tech-blue);
    position: relative;
}

.section-titre h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--tech-blue);
    opacity: 0.3;
    z-index: -1;
}

.section-titre .sous-titre {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.titre-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-blue), var(--power-red));
    margin: 0 auto;
    border-radius: 2px;
}

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

.valeur-carte {
    background-color: var(--ivory);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.valeur-carte:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.valeur-carte::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--tech-blue), var(--power-red));
    transition: height 0.3s ease;
}

.valeur-carte:hover::after {
    height: 100%;
    opacity: 0.05;
}

.valeur-icone {
    width: 70px;
    height: 70px;
    background-color: rgba(37,117,252,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--tech-blue);
    font-size: 1.8rem;
}

.valeur-carte h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--carbon);
}

.valeur-carte p {
    color: #666;
    line-height: 1.6;
}

/* ==================== */
/* PROGRAMME SECTION - Détails concrets */
/* ==================== */
.programme {
    padding: 5rem 10%;
    background-color: var(--ivory);
}

.programme-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background-color: white;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.module-icone {
    width: 50px;
    height: 50px;
    background-color: rgba(37,117,252,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-blue);
    font-size: 1.5rem;
}

.accordion-header h3 {
    font-size: 1.3rem;
    color: var(--carbon);
    margin: 0;
    text-align: left;
}

.accordion-header i {
    color: var(--tech-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.module-details {
    padding: 0 2rem 2rem;
}

.module-details h4 {
    font-size: 1.1rem;
    color: var(--carbon);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.module-details h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--tech-blue);
    border-radius: 50%;
}

.competences-list {
    list-style: none;
    margin-bottom: 2rem;
}

.competences-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.competences-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--tech-blue);
    border-radius: 50%;
}

.competences-list i {
    color: var(--power-red);
    margin-right: 0.5rem;
}

.projet-exemple {
    background-color: rgba(37,117,252,0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--tech-blue);
}

.projet-exemple h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--carbon);
}

.technos-used {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-badge {
    background-color: rgba(37,117,252,0.1);
    color: var(--tech-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.programme-extra {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.programme-extra h3 {
    font-size: 1.5rem;
    color: var(--carbon);
    margin-bottom: 1.5rem;
    text-align: center;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.extra-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.extra-item i {
    font-size: 2rem;
    color: var(--tech-blue);
    margin-bottom: 1rem;
    background-color: rgba(37,117,252,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.extra-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--carbon);
}

.extra-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== */
/* EMPLOI DU TEMPS - Visualisation concrète */
/* ==================== */
.emploi-du-temps {
    padding: 5rem 10%;
    background-color: white;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--tech-blue);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-heure {
    width: 120px;
    padding: 0.5rem;
    background-color: var(--tech-blue);
    color: white;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    align-self: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(37,117,252,0.3);
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--ivory);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 0 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--power-red);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--carbon);
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
}

/* ==================== */
/* RÉSULTATS - Preuves tangibles */
/* ==================== */
.resultats {
    padding: 5rem 10%;
    background-color: var(--ivory);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--tech-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.resultats-temoignages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.parent-temoignage {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: rgba(37,117,252,0.1);
    z-index: 0;
}

.temoignage-content {
    position: relative;
    z-index: 1;
}

.temoignage-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.auteur-info {
    display: flex;
    flex-direction: column;
}

.auteur-info h4 {
    font-size: 1.1rem;
    color: var(--carbon);
    margin-bottom: 0.2rem;
}

.auteur-info span {
    color: #666;
    font-size: 0.9rem;
}

/* ==================== */
/* ÉQUIPE - Crédibilité */
/* ==================== */
.equipe {
    padding: 5rem 10%;
    background-color: white;
}

.equipe-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.membre-equipe {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.membre-photo-container {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.membre-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.membre-photo-container:hover img {
    transform: scale(1.05);
}

.membre-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.membre-photo-container:hover .membre-social {
    opacity: 1;
}

.membre-social a {
    color: white;
    background-color: rgba(37,117,252,0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.membre-social a:hover {
    background-color: var(--power-red);
    transform: translateY(-3px);
}

.membre-info {
    flex: 1;
}

.membre-info h3 {
    font-size: 1.8rem;
    color: var(--carbon);
    margin-bottom: 0.5rem;
}

.membre-info .role {
    color: var(--tech-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.membre-info .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise span {
    background-color: rgba(37,117,252,0.1);
    color: var(--tech-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mentors-list {
    margin-top: 4rem;
}

.mentors-list h3 {
    font-size: 1.5rem;
    color: var(--carbon);
    margin-bottom: 1rem;
    text-align: center;
}

.mentors-list p {
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.mentor-item {
    text-align: center;
}

.mentor-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--tech-blue);
    transition: var(--transition);
}

.mentor-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37,117,252,0.3);
}

.mentor-item h4 {
    font-size: 1.1rem;
    color: var(--carbon);
    margin-bottom: 0.3rem;
}

.mentor-item p {
    color: var(--tech-blue);
    font-size: 0.9rem;
}

/* ==================== */
/* FAQ - Répondre aux inquiétudes */
/* ==================== */
.faq {
    padding: 5rem 10%;
    background-color: var(--ivory);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background-color: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--carbon);
}

.faq-question i {
    color: var(--tech-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    margin-bottom: 1rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background-color: var(--tech-blue);
    border-radius: 50%;
}

/* ==================== */
/* CTA FINAL - Conversion */
/* ==================== */
.cta-final {
    padding: 5rem 10%;
    background: linear-gradient(135deg, var(--carbon) 0%, var(--tech-blue) 100%);
    color: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text h2 span {
    color: var(--titan-gold);
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-avantages {
    margin-bottom: 2rem;
}

.avantage {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.avantage i {
    color: var(--titan-gold);
    font-size: 1.2rem;
}

.avantage span {
    font-size: 1.1rem;
}

.cta-form {
    flex: 1;
}

.cta-offre {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    color: var(--carbon);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.offre-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--carbon);
}

.offre-header .dates {
    color: var(--tech-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.offre-prix {
    margin-bottom: 1.5rem;
}

.offre-prix .prix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--carbon);
    display: block;
}

.offre-prix .reduction {
    background-color: var(--power-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.offre-inclus {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.offre-inclus li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.offre-inclus li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--tech-blue);
    border-radius: 50%;
}

.offre-inclus i {
    color: var(--power-red);
    margin-right: 0.5rem;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(10px, 40px);
    }
    75% {
        transform: translate(-10px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1200px) {
    .hero-content {
        width: 60%;
    }
    
    .hero-visuel {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 5rem 5% 3rem;
        text-align: center;
    }
    
    .hero-content, .hero-visuel {
        width: 100%;
        position: static;
    }
    
    .hero-slogan {
        max-width: 100%;
    }
    
    .hero-boutons {
        justify-content: center;
    }
    
    .hero-visuel {
        margin-top: 3rem;
        height: 300px;
    }
    
    .membre-equipe {
        flex-direction: column;
        text-align: center;
    }
    
    .membre-photo-container {
        margin-bottom: 1.5rem;
    }
    
    .expertise {
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-avantages {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item, .timeline-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-titre {
        font-size: 2.5rem;
    }
    
    .section-titre h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programme-accordion, .programme-extra {
        padding: 0;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .module-icone {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-titre {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-chiffres {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-boutons {
        flex-direction: column;
    }
    
    .bouton {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .valeurs-grid {
        grid-template-columns: 1fr;
    }
    
    .extra-grid {
        grid-template-columns: 1fr;
    }
}