/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #ffffff; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.03em;
}
.section-badge {
    display: table;
    margin: 0 auto 18px auto;
    background: #e8f5ee;
    color: #1a6b3c;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.form-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e67e22;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0b3d1e 0%, #1a6b3c 60%, #0f5231 100%);
    padding: 70px 24px 80px;
    color: #ffffff;
}
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
}
.highlight { color: #f1c40f; }
.subtitle {
    font-size: 1.05rem;
    margin-bottom: 28px;
    opacity: 0.92;
    line-height: 1.7;
}
.hero-list {
    list-style: none;
    margin-bottom: 32px;
}
.hero-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    opacity: 0.95;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0.8;
}
.meta-item {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.12);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ============================================
   FORMULAIRES
   ============================================ */
.form-card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    color: #1a1a2e;
}
.form-card h3 {
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
}
.form-desc {
    text-align: center;
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.5;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a1a2e;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: #fafafa;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-color: #1a6b3c;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.1);
}
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.01em;
    font-family: inherit;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #d35400, #b84a00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.35);
}
.privacy-note {
    text-align: center;
    font-size: 0.78rem;
    color: #999;
    margin-top: 14px;
}

/* ============================================
   ALERTES PHP
   ============================================ */
.alert {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================
   SECTION PROBLÈME
   ============================================ */
.problem-section {
    padding: 90px 24px;
    background: #fafafa;
}
.problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.problem-inner h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.25;
}
.problem-inner h2 em { color: #c0392b; font-style: italic; }
.problem-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}
.problem-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
}
.problem-insight {
    background: #fff8e1;
    border-left: 4px solid #f39c12;
    padding: 18px 22px !important;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem !important;
    color: #1a1a2e !important;
}
.problem-symptoms {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.problem-symptoms h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 24px;
    font-weight: 700;
}
.symptom-list {
    list-style: none;
}
.symptom-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.98rem;
    color: #444;
    line-height: 1.5;
}
.symptom-list li:last-child { border-bottom: none; }

/* ============================================
   SECTION SOLUTION : 3 ÉTAPES
   ============================================ */
.solution-section {
    padding: 90px 24px;
    background: linear-gradient(135deg, #0b3d1e, #1a6b3c);
    color: #fff;
    text-align: center;
}
.solution-section .section-badge {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.solution-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 54px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.step-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.25s, background 0.25s;
}
.step-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f1c40f;
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.9;
}
.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-card p { font-size: 0.95rem; opacity: 0.85; line-height: 1.65; }

/* ============================================
   PROGRAMME JOUR PAR JOUR
   ============================================ */
.program-section {
    padding: 90px 24px;
    background: #ffffff;
    text-align: center;
}
.program-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 50px;
    line-height: 1.25;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.day-card {
    background: #f7faf8;
    border: 1.5px solid #e2ede7;
    border-radius: 14px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,107,60,0.1);
    border-color: #1a6b3c;
}
.day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.day-num {
    background: #1a6b3c;
    color: #fff;
    font-weight: 900;
    font-size: 0.88rem;
    padding: 5px 11px;
    border-radius: 8px;
    flex-shrink: 0;
}
.day-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.3;
}
.day-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}
.day-card--final {
    grid-column: span 1;
    background: linear-gradient(135deg, #e8f5ee, #d4eddc);
    border-color: #1a6b3c;
}
.day-card--final .day-num { background: #0b3d1e; }

/* ============================================
   CITATION AUTORITÉ
   ============================================ */
.quote-section {
    padding: 80px 24px;
    background: #f0faf4;
}
.main-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.main-quote p {
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 600;
    color: #0b3d1e;
    line-height: 1.55;
    margin-bottom: 22px;
}
.main-quote cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #1a6b3c;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============================================
   RÉSULTATS / CE QUE VOUS AUREZ
   ============================================ */
.results-section {
    padding: 90px 24px;
    background: #ffffff;
    text-align: center;
}
.results-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 50px;
    line-height: 1.25;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.result-item {
    padding: 32px 28px;
    background: #fafafa;
    border-radius: 14px;
    border: 1.5px solid #ebebeb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.result-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.result-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.result-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
}
.result-item--highlight {
    background: linear-gradient(135deg, #0b3d1e, #1a6b3c);
    border-color: transparent;
    color: #fff;
}
.result-item--highlight h3 { color: #f1c40f; }
.result-item--highlight p { color: rgba(255,255,255,0.88); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f0faf4, #e8f5ee);
    text-align: center;
}
.cta-final h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0b3d1e;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-form-card {
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(26,107,60,0.15);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 90px 24px;
    background: #fafafa;
}
.faq h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}
.faq-container {
    max-width: 780px;
    margin: 0 auto;
}
.faq details {
    background: #ffffff;
    border: 1.5px solid #ebebeb;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq details:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.faq summary {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    padding: 22px 24px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '＋';
    font-size: 1.2rem;
    color: #1a6b3c;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq details[open] summary::after {
    content: '－';
}
.faq details[open] {
    box-shadow: 0 8px 25px rgba(26,107,60,0.1);
    border-color: #1a6b3c;
}
.faq details p {
    padding: 0 24px 22px;
    color: #555;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 48px 24px;
    text-align: center;
    background: #0b1a12;
    color: #888;
    font-size: 0.85rem;
}
.footer-brand {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 10px;
}
.footer-sub a { color: #1a6b3c; }
.footer-sub a:hover { color: #2ecc71; }

/* ============================================
   PAGE SUCCESS
   ============================================ */
.success-hero {
    min-height: calc(100vh - 120px);
    background: linear-gradient(160deg, #f0faf4 0%, #e8f5ee 50%, #d4eddc 100%);
    padding: 70px 24px 80px;
    display: flex;
    align-items: center;
}
.success-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.success-icon {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 24px;
    animation: bounce 0.6s ease;
}
@keyframes bounce {
    0%   { transform: scale(0.5); opacity: 0; }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.success-card h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0b3d1e;
    margin-bottom: 16px;
    line-height: 1.2;
}
.success-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 48px;
    line-height: 1.7;
}
.success-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}
.success-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 24px 28px;
    border-radius: 14px;
    border: 1.5px solid #e2ede7;
    box-shadow: 0 4px 16px rgba(26,107,60,0.06);
}
.success-step .step-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.success-step .step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.success-step .step-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}
.success-quote {
    background: #fff;
    border-left: 4px solid #1a6b3c;
    padding: 20px 28px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    text-align: left;
}
.success-quote p {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    color: #0b3d1e;
    margin-bottom: 8px;
    line-height: 1.5;
}
.success-quote cite {
    font-size: 0.85rem;
    font-style: normal;
    color: #1a6b3c;
    font-weight: 700;
}
.success-cta {
    display: block;
    font-size: 1.1rem;
    padding: 18px 24px;
    text-decoration: none;
    margin-bottom: 24px;
}
.success-back {
    font-size: 0.9rem;
    color: #888;
}
.success-back a {
    color: #1a6b3c;
    font-weight: 600;
    text-decoration: none;
}
.success-back a:hover { text-decoration: underline; }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    z-index: 9999;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-form { max-width: 500px; margin: 0 auto; width: 100%; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .program-grid { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .problem-columns { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .sticky-mobile { display: block; }
    footer { padding-bottom: 90px; }
    .hero { padding: 50px 20px 60px; }
    .hero-text h1 { font-size: 1.9rem; }
    .problem-section, .solution-section, .program-section,
    .quote-section, .results-section, .cta-final, .faq { padding: 60px 20px; }
    .solution-section h2, .problem-inner h2,
    .program-section h2, .results-section h2, .cta-final h2 { font-size: 1.65rem; }
    .main-quote p { font-size: 1.25rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .hero-meta { justify-content: center; }
}
