/* En-tête */
.hero-section {
    background: #ffffff;
    color: #2c3e50;
    padding: 3rem 0;
    border-bottom: 1px solid #eef2f7;
    /* Pleine largeur (breakout) */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Avantages */
.advantages-section { padding: 4rem 0; }
.advantages-section .advantages-card { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid #e9ecef; box-shadow: 0 4px 6px rgba(0,0,0,0.06); border-radius: 12px; padding: 1.25rem 1.5rem; max-width: 900px; margin: 0 auto; }
.advantages-section .advantages-card i { color: #4a6bff; font-size: 1.5rem; }
.advantages-section .advantages-card p { margin: 0; color: #495057; }
/* Variante bulles */
.advantages-bubbles {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
.advantages-bubbles .bubble {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    padding: .75rem 1rem;
    justify-content: center;
    width: fit!important;
    width: fit-content;
    margin: auto;
    height: fit-content;
}
.advantages-bubbles .bubble-icon {
    width: 34px;
    height: 34px;
    display: block;
    /* align-items: center; */
    /* justify-content: center; */
    /* border-radius: 50%; */
    color: #764ba2 !important;
    color: #fff;
    /* flex: 0 0 34px; */
    padding: 4px 1rem;
}
.advantages-bubbles .bubble-text {
    color: #495057;
    line-height: 1.4;
    padding: 6px 2rem 5px 0.5rem;
}
/* Pleine largeur pour certaines sections */
.hero-section .hero-content { padding-left: 2rem; padding-right: 2rem; }
.process-section .container { max-width: none; padding-left: 2rem; padding-right: 2rem; }
.cta-section .container { max-width: none; padding-left: 2rem; padding-right: 2rem; }

.hero-content {
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-images { display: flex; flex-direction: column; gap: 1rem; }
.hero-figure { position: relative; }
.hero-overlay {
    position: absolute;
    left: 16px;
    bottom: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Statistiques */
.stats-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

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

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-item:first-child .stat-number { font-size: 2.8rem; line-height: 1.05; }
.stat-item:last-child .stat-number { color: #4a6bff; }
.stat-item { text-align: center; }

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

/* Fonctionnalités */
.features-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #4a6bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
}

.feature-list i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* Étapes */
.process-section {
    padding: 4rem 0;
    background: #f8f9fa;
    /* Pleine largeur (breakout) */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.process-steps.images .step.img { background: #fff; border: 1px solid #e9ecef; border-radius: 12px; padding: 1.25rem; box-shadow: 0 4px 6px rgba(0,0,0,0.06); }
.step-illustration { width: 100%; max-width: 320px; margin: 0 auto 0.75rem; }
.svg-illu { width: 100%; height: auto; display: block; }

.step.icon { background: #fff; border: 1px solid #e9ecef; border-radius: 12px; padding: 1.5rem; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.06); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.emoji-circle { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,#667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(102,126,234,0.35); }
.emoji-circle i { color: #fff; font-size: 1.6rem; }
.step.icon .step-content h3 { margin: 0.25rem 0 0.25rem; }

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* badge numérique retiré (images à la place) */

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.testimonial-content p {
    font-style: italic;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Appel à l'action */
.cta-section {
    padding: 4rem 0;
    background: #f6f7ff;
    color: #2c3e50;
    text-align: center;
    /* Pleine largeur (breakout) */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: #4a6bff;
    color: #fff;
    border-color: #4a6bff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
}

/* variante inutilisée supprimée */

.btn-outline-primary {
    color: #667eea;
    border-color: #667eea;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #667eea;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps { grid-template-columns: 1fr; }
    .process-steps.icons { grid-template-columns: 1fr; }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
