* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #eff6ff;
    --accent-color: #f59e0b;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --border-color: #e5e5e5;
    --success-color: #10b981;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER STICKY */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-header {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cta-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO SECTION */
#hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.reassurance-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reassurance-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.reassurance-card .icon {
    font-size: 20px;
}

.reassurance-card .text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTIONS COMMUNES */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.3;
}

section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* PROBLÉMATIQUES */
#problematiques {
    background: var(--white);
}

.problematiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problematique-card {
    background: var(--secondary-color);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.problematique-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problematique-card .icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.problematique-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* AVIS CLIENTS */
#avis {
    background: linear-gradient(135deg, #fafbff 0%, #f8f5ff 100%);
    padding: 120px 0;
}

#avis h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: var(--text-dark);
}

/* Widget Elfsight Google Reviews */
.elfsight-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Style pour les anciens styles (au cas où) */
.avis-header {
    text-align: center;
    margin-bottom: 80px;
}

.avis-score {
    display: inline-block;
    background: var(--white);
    padding: 56px 72px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(163, 107, 240, 0.15);
    border: 3px solid var(--primary-color);
    position: relative;
}

.avis-score::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), #c084fc);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.score-number {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.score-stars {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: 6px;
}

.score-text {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 600;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.avis-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.avis-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.avis-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c084fc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.avis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(163, 107, 240, 0.2);
    border-color: var(--primary-color);
}

.avis-card:hover::after {
    transform: scaleX(1);
}

.avis-stars {
    font-size: 22px;
    margin-bottom: 28px;
    letter-spacing: 3px;
}

.avis-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.avis-author {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid var(--secondary-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avis-author::before {
    content: '—';
    font-weight: 400;
}

/* Photo du cabinet */
.cabinet-image-container {
    max-width: 500px;
    margin: 60px auto 0;
    text-align: center;
    opacity: 0.85;
}

.cabinet-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.cabinet-image:hover {
    opacity: 1;
}

.cabinet-caption {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.7;
}

/* DÉROULEMENT */
#deroulement {
    background: var(--secondary-color);
}

.deroulement-timeline {
    max-width: 800px;
    margin: 0 auto 48px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 8px);
    background: var(--border-color);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 16px;
}

.deroulement-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    line-height: 1.6;
}

.info-card strong {
    color: var(--primary-color);
}

/* BÉNÉFICES */
#benefices {
    background: var(--white);
}

.benefices-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.benefices-col h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.benefices-list {
    list-style: none;
}

.benefices-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-gray);
    position: relative;
    padding-left: 32px;
}

.benefices-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.benefices-list li:last-child {
    border-bottom: none;
}

/* QUI SUIS-JE */
#qui-suis-je {
    background: var(--secondary-color);
}

.about-text-only {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-only h2 {
    text-align: center;
    margin-bottom: 32px;
}

.about-text-only p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.9;
    text-align: left;
}

/* OFFRES */
#offres {
    background: var(--white);
}

.offre-single {
    max-width: 600px;
    margin: 0 auto;
}

.offre-card-single {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 12px 48px rgba(163, 107, 240, 0.15);
    position: relative;
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.offre-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.offre-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.offre-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.offre-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.offre-badge.popular {
    background: var(--primary-color);
}

.offre-card h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
}

.offre-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-size: 15px;
}

.offre-details {
    list-style: none;
    margin-bottom: 32px;
}

.offre-details li {
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    position: relative;
    padding-left: 28px;
}

.offre-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.offre-price {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

/* FAQ */
#faq {
    background: var(--secondary-color);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 32px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 32px 28px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* RÉASSURANCE */
#reassurance {
    background: var(--primary-color);
    padding: 60px 0;
}

.reassurance-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reassurance-content p {
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
}

/* WIDGET WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* FOOTER */
footer {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-header {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    section h2 {
        font-size: 32px;
    }
    
    .benefices-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .offres-grid {
        grid-template-columns: 1fr;
    }
    
    .reassurance-content p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    #hero {
        padding: 120px 0 60px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .problematiques-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 24px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .reassurance-content p {
        font-size: 18px;
    }
}

/* MODAL DE RÉSERVATION */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #c084fc);
    color: var(--white);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    height: calc(90vh - 80px);
    background: var(--white);
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        height: calc(95vh - 72px);
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        height: calc(100vh - 64px);
    }
}

/* ======================================
   STYLES SPÉCIFIQUES FORMATION
   ====================================== */

/* POUR QUI SECTION */
#pour-qui {
    background: var(--white);
}

.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pour-qui-card {
    background: var(--secondary-color);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pour-qui-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.pour-qui-card .icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.pour-qui-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pour-qui-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FORMATION SECTION */
#formation {
    background: var(--secondary-color);
}

.formation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.formation-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.7;
}

.formation-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.highlight-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.highlight-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.highlight-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* PROGRAMME SECTION */
#programme {
    background: var(--white);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 20px;
    margin-bottom: 60px;
    line-height: 1.7;
}

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

.programme-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--border-color);
}

.programme-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.programme-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.programme-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.programme-content ul {
    list-style: none;
    padding: 0;
}

.programme-content li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.programme-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.programme-plus {
    background: var(--secondary-color);
    padding: 48px;
    border-radius: 16px;
    max-width: 700px;
    margin: 60px auto 0;
}

.programme-plus h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
}

/* BÉNÉFICES SECTION */
#benefices {
    background: var(--secondary-color);
}

.benefices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefice-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefice-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.benefice-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefice-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* FORMATEUR SECTION */
#formateur {
    background: var(--white);
}

.formateur-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: start;
}

.formateur-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.formateur-image img {
    width: 100%;
    height: auto;
    display: block;
}

.formateur-text h2 {
    margin-bottom: 32px;
}

.formateur-text p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.formateur-text ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.formateur-text li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.formateur-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* INFOS PRATIQUES */
#infos {
    background: var(--white);
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.info-card {
    background: var(--secondary-color);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-detail {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.inscription-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 56px 48px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.inscription-cta h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* INSCRIPTION SECTION */
#inscription {
    background: var(--secondary-color);
}

.inscription-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.inscription-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.inscription-box > p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.inscription-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step p {
    font-size: 15px;
    color: var(--text-gray);
}

.btn-xl {
    padding: 20px 56px;
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0;
}

.inscription-note {
    font-size: 15px;
    color: var(--text-gray);
    margin-top: 24px;
}

/* RESPONSIVE FORMATION */
@media (max-width: 768px) {
    .pour-qui-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .formation-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programme-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .programme-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .programme-content h3 {
        font-size: 20px;
    }

    .programme-plus {
        padding: 32px 24px;
    }

    .benefices-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .formateur-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .formateur-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .infos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .inscription-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .inscription-box {
        padding: 32px 24px;
    }

    .btn-xl {
        width: 100%;
        padding: 18px 32px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pour-qui-card {
        padding: 24px 16px;
    }

    .highlight-card {
        padding: 24px 16px;
    }

    .programme-item {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .programme-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .programme-content h3 {
        font-size: 18px;
    }

    .benefice-card {
        padding: 24px 16px;
    }

    .info-card {
        padding: 24px 16px;
    }

    .inscription-box {
        padding: 24px 16px;
    }

    .inscription-box h2 {
        font-size: 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .btn-xl {
        font-size: 16px;
        padding: 16px 24px;
    }
}
