/* =========================================
   VARIABLES
   ========================================= */
:root {
    --orange: #E67E22;
    --blue: #007cc2;
    --dark: #333;
    --grey: #666;
    --white: #fff;
    --font-main: 'Poppins', sans-serif;
}

body { font-family: var(--font-main); color: var(--dark); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.bold { font-weight: 700; }

/* TYPOGRAPHIE COULEURS */
.title-orange { font-size: 1.8rem; font-weight: 800; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; }
.title-orange-sm { font-size: 1.2rem; font-weight: 700; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; }
.title-orange-xs { font-size: 1rem; font-weight: 700; color: var(--orange); text-transform: uppercase; margin-bottom: 5px; }

.title-blue { font-size: 1.8rem; font-weight: 700; color: var(--blue); margin-bottom: 15px; }
.title-blue-md { font-size: 1.4rem; font-weight: 700; color: var(--blue); margin-bottom: 15px; }
.title-blue-sm { font-size: 1.2rem; font-weight: 600; color: var(--blue); margin-bottom: 15px; }
.title-blue-xs { font-size: 1rem; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 5px; }

.text-blue { color: var(--blue); }
.subtitle-dark { font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; }
.label-orange { color: var(--orange); font-weight: 800; text-transform: uppercase; margin-bottom: 10px; display: block; }

/* BOUTONS PILLULES */
.btn-pill-orange {
    background: var(--orange); color: white; padding: 12px 30px; border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s;
}
.btn-pill-orange:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230,126,34,0.4); }

.btn-pill-white {
    background: white; color: var(--orange); padding: 12px 30px; border-radius: 50px; font-weight: 700; display: inline-block; transition: 0.3s;
}
.btn-pill-white:hover { background: var(--orange); color: white; }

/* LINK LIRE PLUS */
.link-read-more {
    font-size: 0.8rem; font-weight: 800; color: var(--orange); text-transform: uppercase; border-bottom: 2px solid var(--orange);
}
.link-read-more-blue {
    font-size: 0.8rem; font-weight: 800; color: var(--blue); text-transform: uppercase; border-bottom: 2px solid var(--blue);
}

/* =========================================
   1. HERO
   ========================================= */
.header-hero {
    height: 400px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex; align-items: center;
}
.overlay-hero {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0, 0, 0, 0.4);
}
.hero-text-box {
    position: relative; z-index: 2;
    background: transparent;
    color: white;
    max-width: 600px;
}
.hero-text-box h1 { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; margin-bottom: 20px; }
.hero-text-box p { margin-bottom: 30px; font-size: 1.1rem; }

/* =========================================
   2. INTRO & SPLIT ROWS
   ========================================= */
.section-intro, .section-needs, .section-about { padding: 60px 0; }
.split-row { display: flex; align-items: center; gap: 50px; }
.split-image-rect img { border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.split-content { flex: 1; }

/* Cercle Image (Section Besoin) */
.image-circle-wrapper {
    flex: 1; display: flex; justify-content: center;
}
.image-circle-wrapper img {
    width: 300px; height: 300px; border-radius: 50%; object-fit: cover;
    border: 8px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   3. VALEUR & EXPERTISE (ICONE COMPOSEE)
   ========================================= */
.section-value { padding: 60px 0; }
.icon-sticker-orange {
    width: 120px; height: 120px; margin: 0 auto 20px;
    border: 4px solid var(--orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; color: var(--blue);
    position: relative;
    background: white;
}
.stars-deco {
    position: absolute; bottom: -10px;
    background: white; padding: 0 5px;
    font-size: 1rem; color: var(--orange);
}
.max-w-600 { max-width: 600px; margin: 0 auto; }
.mt-20 { margin-top: 20px; }

/* =========================================
   4. PROCESSUS (IMAGES OVALES)
   ========================================= */
.process-intro { display: flex; gap: 40px; align-items: center; margin-bottom: 50px; }
.process-img-header { flex: 1; }
.process-img-header img { border-radius: 12px; height: 250px; object-fit: cover; width: 100%; }
.process-text-header { flex: 1; }

.steps-list { display: flex; flex-direction: column; gap: 30px; }
.step-item { display: flex; align-items: center; gap: 30px; }

/* FORME OVALE SPÉCIFIQUE DU SCREENSHOT */
.step-oval {
    width: 200px; 
    height: 120px; 
    border-radius: 50%; /* Crée l'ovale */
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.step-oval img { width: 100%; height: 100%; object-fit: cover; }
.step-info { flex: 1; }
.mt-40 { margin-top: 40px; }

/* =========================================
   5. CONVERSION & RAPIDITÉ (ICONES)
   ========================================= */
.section-conversion, .section-rapidity { padding: 60px 0; }

.rocket-circle-icon {
    width: 130px; height: 130px; margin: 0 auto 20px;
    border: 5px solid var(--orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 4rem;
    background: white;
}

.clock-icon-wrapper {
    font-size: 4.5rem; color: var(--orange); margin-bottom: 20px;
    display: inline-block;
    position: relative;
}
/* Petite flèche en CSS pour imiter l'icone */
.clock-icon-wrapper::after {
    content: '\f061'; /* Arrow right fontawesome */
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; bottom: 0; right: -10px;
    font-size: 1.5rem; color: var(--orange);
    background: white; border-radius: 50%;
}

/* =========================================
   6. PARTENAIRES
   ========================================= */
.section-partners { padding: 60px 0; }
.partners-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.partner-box {
    width: 120px; height: 120px;
    border: 2px solid var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
}

/* =========================================
   7. TÉMOIGNAGES (BULLE BLEUE)
   ========================================= */
.section-testimonials { padding: 60px 0; }

.testimonial-blue-box {
    background: var(--blue);
    border-radius: 0 50px 50px 0; /* Arrondi à droite uniquement */
    padding: 40px 60px 40px 100px; /* Espace à gauche pour l'image */
    position: relative;
    max-width: 900px; margin: 0 auto;
    color: white; min-height: 150px; display: flex; align-items: center;
}

.testi-img-border-orange {
    position: absolute; left: -50px; top: 50%; transform: translateY(-50%);
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 5px solid var(--orange); /* Bordure orange spécifique */
    overflow: hidden;
    background: white;
}
.testi-img-border-orange img { width: 100%; height: 100%; object-fit: cover; }
.testi-text { font-style: italic; font-size: 1.1rem; }

/* =========================================
   8. FAQ (ICONE STACK & ACCORDEON)
   ========================================= */
.section-faq { padding: 80px 0; margin-bottom: 50px; }
.faq-wrapper { display: flex; gap: 50px; align-items: flex-start; }

/* Construction de l'icone FAQ (Cartes superposées) */
.faq-visual { flex: 1; display: flex; justify-content: center; padding-top: 20px; }
.faq-card-stack { position: relative; width: 180px; height: 150px; }

.card-bg {
    position: absolute; width: 100%; height: 100%; border-radius: 15px;
}
.card-1 { top: -20px; left: 20px; background: var(--blue); opacity: 0.5; z-index: 1; }
.card-2 { top: -10px; left: 10px; background: var(--orange); opacity: 0.8; z-index: 2; }
.card-main {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--blue); border-radius: 15px; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Petite queue de bulle */
.card-main::after {
    content: ''; position: absolute; bottom: -15px; left: 40px;
    border-width: 15px 15px 0; border-style: solid;
    border-color: var(--blue) transparent;
}

/* Accordéon */
.faq-accordion { flex: 2; }
.faq-item { margin-bottom: 15px; }

.faq-btn {
    width: 100%; text-align: left;
    background: white; border: 1px solid var(--blue); border-radius: 50px;
    padding: 12px 20px;
    color: var(--blue); font-weight: 600;
    display: flex; align-items: center; gap: 15px;
    cursor: pointer; transition: 0.3s;
}
.faq-btn:hover { border-color: var(--orange); color: var(--orange); }

.chevron { color: var(--blue); font-size: 1.2rem; }
.faq-btn.active .chevron i { transform: rotate(180deg); }

.faq-body {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 20px; color: var(--grey); font-size: 0.9rem;
}
.faq-body p { margin-top: 10px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .split-row, .process-intro, .faq-wrapper { flex-direction: column; text-align: center; }
    .reverse-mobile { flex-direction: column-reverse; }
    
    .process-img-header img { height: 200px; }
    .step-item { flex-direction: column; text-align: center; }
    
    .partners-grid { gap: 10px; }
    .partner-box { width: 90px; height: 90px; font-size: 1rem; }
    
    /* Témoignage Mobile */
    .testimonial-blue-box {
        flex-direction: column; text-align: center; padding: 60px 20px 30px 20px;
        border-radius: 20px; margin-top: 60px;
    }
    .testi-img-border-orange {
        left: 50%; transform: translateX(-50%); top: -70px;
    }
    
    .faq-card-stack { margin-bottom: 40px; }
}