/* --- PALETTE DE COULEURS --- */
:root {
    --bg-mint: #F4FAF8;
    --green-sage: #C1E1C1;
    --pink-punch: #FF85A2;
    --text-dark: #2C3A47;
    --text-medium: #576574;
    --font-titles: 'Lora', serif;
    --font-text: 'Nunito', sans-serif;
}

/* --- RESET & BASES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-text);
    background-color: var(--bg-mint);
    color: var(--text-dark);
    line-height: 1.6;
}

a { color: var(--pink-punch); text-decoration: none; font-weight: 700; transition: opacity 0.3s ease; }
a:hover { opacity: 0.8; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- BOUTONS --- */
.cta-btn {
    display: inline-block;
    background-color: var(--pink-punch);
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 133, 162, 0.4);
    text-align: center;
    transition: all 0.3s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 133, 162, 0.6); }

/* --- HERO SECTION --- */
.hero { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 80px 0; min-height: 90vh; }
.hero-text { flex: 1; }
.hero-text h1 { font-family: var(--font-titles); font-size: 3rem; line-height: 1.2; color: var(--text-dark); margin-bottom: 20px; }
.hero-text p.subtitle { font-size: 1.2rem; color: var(--text-medium); margin-bottom: 30px; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.ebook-placeholder { width: 320px; height: 450px; background-color: var(--green-sage); border: 3px dashed var(--pink-punch); border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; box-shadow: -15px 15px 0px rgba(193, 225, 193, 0.4); }
.ebook-placeholder span { color: var(--text-dark); font-weight: bold; margin-top: 10px; }

/* --- STORYTELLING --- */
.storytelling { background-color: white; padding: 60px 0; }
.storytelling h2 { font-family: var(--font-titles); text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--pink-punch); }
.story-step { margin-bottom: 30px; padding: 30px; border-radius: 15px; background: var(--bg-mint); }
.story-step h3 { font-family: var(--font-titles); font-size: 1.5rem; margin-bottom: 10px; }
.story-step.douleur { border-left: 5px solid #a0aec0; }
.story-step.conscience { border-left: 5px solid var(--pink-punch); }
.story-step.desir { border-left: 5px solid var(--green-sage); background: #eef7ee; }

/* --- SECTION TRANSFORMATION --- */
.transformation { background-color: white; padding: 80px 0; border-top: 5px solid var(--green-sage); border-bottom: 5px solid var(--green-sage); }
.transformation h2 { font-family: var(--font-titles); text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.box { background-color: var(--bg-mint); padding: 40px; border-radius: 20px; }
.box h3 { color: var(--pink-punch); margin-bottom: 15px; font-size: 1.5rem; }
.box ul { list-style-type: none; }
.box ul li { 
    margin-bottom: 15px; 
    padding-left: 30px; /* Un peu plus d'espace pour respirer */
    position: relative; 
}

/* --- Croix élégante pour la colonne Avant (Couleur Pink Punch) --- */
.box.avant ul li::before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 5px; /* Aligne l'icône avec le texte */
    width: 18px; 
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF85A2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- Coche de validation pour la colonne Après (Vert doux) --- */
.box.apres ul li::before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 5px; 
    width: 20px; 
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237DBA7D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
/* --- SECTION VISION (Future Pacing) --- */
.vision { padding: 80px 20px; text-align: center; }
.vision h2 { font-family: var(--font-titles); font-size: 2.2rem; margin-bottom: 40px; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.quote-card { background: white; padding: 30px; border-radius: 15px; border-left: 5px solid var(--pink-punch); box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-style: italic; color: var(--text-medium); }

/* --- SECTION DÉTAIL DU PROGRAMME --- */
.programme-details { background-color: white; padding: 80px 0; }
.programme-details h2 { font-family: var(--font-titles); text-align: center; font-size: 2.2rem; margin-bottom: 10px; }
.module-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.module { display: flex; align-items: flex-start; gap: 20px; background-color: var(--bg-mint); padding: 25px; border-radius: 15px; }
.module-number { background-color: var(--green-sage); color: var(--text-dark); font-weight: bold; font-size: 1.5rem; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.module-content h3 { color: var(--pink-punch); margin-bottom: 5px; }

/* --- SECTION ACHAT --- */
.product-details { padding: 80px 0; text-align: center; }
.product-details h2 { font-family: var(--font-titles); font-size: 2.5rem; }
.price { font-size: 3.5rem; color: var(--pink-punch); font-weight: bold; margin: 10px 0; }

/* --- SECTION FAQ ANIMÉE --- */
.faq-section { padding: 60px 20px 100px; max-width: 800px; margin: 0 auto; }
.faq-section h2 { font-family: var(--font-titles); text-align: center; font-size: 2.2rem; margin-bottom: 40px; }
.faq-accordion { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: white; border-radius: 10px; border: 1px solid var(--green-sage); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px; background: none; border: none; font-size: 1.1rem; font-weight: bold; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-text); }
.faq-question:hover { color: var(--pink-punch); }
.icon-plus { font-size: 1.5rem; color: var(--pink-punch); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; background-color: #fafdfa; }
.faq-answer p { margin: 0; }
.faq-item.active .faq-answer { padding: 0 20px 20px; border-top: 1px solid #f0f0f0; }
.faq-item.active .icon-plus { transform: rotate(45deg); }

/* --- FOOTER --- */
footer { background-color: white; border-top: 1px solid var(--green-sage); padding: 40px 0; text-align: center; }
.footer-logo { font-family: var(--font-titles); font-size: 1.5rem; font-weight: bold; color: var(--green-sage); margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: var(--text-medium); font-weight: normal; font-size: 0.9rem; }
.footer-links a:hover { color: var(--pink-punch); }
.copyright { font-size: 0.8rem; color: #a0aec0; }

/* --- RESPONSIVE (Toujours à la fin !) --- */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 40px 0; }
    .hero-text h1 { font-size: 2.2rem; }
    .grid-2, .vision-grid { grid-template-columns: 1fr; }
    .module { flex-direction: column; align-items: center; text-align: center; }
}