﻿/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2a2a2a;
    background: #f7faf4;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

button.landCfg { border: none; cursor: pointer; font-family: inherit; font-size: inherit; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* === Top Nav === */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.8rem 1.5rem;
}
.topnav-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.topnav-brand { text-decoration: none; }
.topnav-logo { height: 64px; width: auto; }
.topnav-actions { display: flex; gap: 0.5rem; }
.topnav-btn { padding: 0.45rem 1.1rem; font-size: 0.82rem; font-weight: 700; border-radius: 8px; transition: all 0.15s; }
.topnav-btn--solid { background: #5a7a2e; color: #fff; }
.topnav-btn--solid:hover { background: #3e5520; }
.topnav-btn--ghost { background: transparent; color: #5a7a2e; border: 1.5px solid #5a7a2e !important; }
.topnav-btn--ghost:hover { background: rgba(90, 122, 46, 0.08); }

/* === Hero === */
.hero {
    padding: 8rem 1.5rem 4.5rem;
    background: linear-gradient(135deg, #3e5520 0%, #5a7a2e 55%, #7da040 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 65% 0%, rgba(245, 167, 199, 0.22), transparent 60%);
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }

.hero-tag {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem; font-weight: 800; color: #fff;
    line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.hero-accent {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-decoration-thickness: 3px;
}
.hero-sub { font-size: 1.1rem; color: rgba(255, 255, 255, 0.88); max-width: 540px; margin: 0 auto 1.8rem; }

.hero-btn {
    display: inline-block;
    background: #fff; color: #5a7a2e;
    font-size: 1rem; font-weight: 800;
    padding: 0.95rem 2.4rem; border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
    transition: all 0.2s; margin-bottom: 0.8rem;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18); }

.hero-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }

.hero-stats {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.hero-stat strong { font-size: 1.4rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.75); }

/* === Sticky Bottom Bar === */
.bottom-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: linear-gradient(90deg, #3e5520, #5a7a2e);
    padding: 0.6rem 1rem;
    display: flex; gap: 0.5rem; justify-content: center;
    transform: translateY(100%); transition: transform 0.3s ease;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
}
.bottom-bar.visible { transform: translateY(0); }
.bottom-btn {
    flex: 1; max-width: 220px; padding: 0.6rem 1rem;
    font-size: 0.85rem; font-weight: 700; border-radius: 8px;
    text-align: center; transition: all 0.15s;
}
.bottom-btn--primary { background: #fff; color: #5a7a2e; }
.bottom-btn--primary:hover { background: #eef5e8; }
.bottom-btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5) !important; }
.bottom-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* === Main === */
main { padding-bottom: 2rem; }

/* === Benefits === */
.section-benefits { padding: 4rem 0 2.5rem; }
.section-benefits h2 { font-size: 1.7rem; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 2rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.benefit-card {
    background: #fff; border: 1px solid #e4eaf0; border-radius: 16px;
    padding: 2rem 1.5rem; text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, border-color 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); border-color: #a0c870; }
.benefit-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; color: #666; line-height: 1.65; }

/* === Visual === */
.section-visual { padding: 3rem 0; background: #fff; border-top: 1px solid #eef1f5; border-bottom: 1px solid #eef1f5; }
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.visual-img img { width: 100%; border-radius: 16px; display: block; object-fit: cover; }
.visual-text h2 { font-size: 1.6rem; font-weight: 800; color: #1a1a1a; text-align: left; margin-bottom: 1rem; }
.visual-text h2 span { color: #5a7a2e; }
.visual-text p { font-size: 0.92rem; color: #555; line-height: 1.8; margin-bottom: 1rem; }
.visual-btn {
    background: #5a7a2e; color: #fff;
    padding: 0.75rem 1.8rem; border-radius: 10px;
    font-size: 0.9rem; font-weight: 700;
    transition: all 0.2s; margin-top: 0.5rem;
}
.visual-btn:hover { background: #3e5520; transform: translateY(-1px); }

/* === Steps === */
.section-steps { padding: 4rem 0 3rem; }
.section-steps h2 { font-size: 1.7rem; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 2.5rem; }
.steps-row { display: flex; align-items: flex-start; gap: 0.8rem; }
.step { flex: 1; text-align: center; }
.step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #5a7a2e, #8db850);
    color: #fff; font-size: 1.1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.step h3 { font-size: 0.95rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.4rem; }
.step p { font-size: 0.84rem; color: #666; line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: #b8d48a; padding-top: 0.9rem; flex-shrink: 0; }
.steps-cta { text-align: center; margin-top: 2.5rem; }
.steps-btn {
    background: linear-gradient(135deg, #5a7a2e, #3e5520);
    color: #fff; padding: 0.85rem 2rem; border-radius: 12px;
    font-size: 0.95rem; font-weight: 700;
    box-shadow: 0 4px 16px rgba(90, 122, 46, 0.35);
    transition: all 0.2s;
}
.steps-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90, 122, 46, 0.45); }

/* === Testimonials === */
.section-testi { padding: 3rem 0; background: #eef5e8; }
.section-testi h2 { font-size: 1.7rem; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 2rem; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testi-card {
    background: #fff; border: 1px solid #c8ddb0; border-radius: 14px;
    padding: 1.8rem; box-shadow: 0 2px 10px rgba(90, 122, 46, 0.08);
}
.testi-stars { color: #5a7a2e; font-size: 1rem; margin-bottom: 0.8rem; }
.testi-card p { font-size: 0.88rem; color: #444; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.testi-author { font-size: 0.78rem; color: #999; font-weight: 600; }

/* === Pricing Strip === */
.section-pricing { padding: 2.5rem 0; }
.pricing-strip {
    background: linear-gradient(135deg, #3e5520, #5a7a2e);
    border-radius: 16px; padding: 2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.pricing-text h2 { color: #fff; font-size: 1.25rem; font-weight: 800; text-align: left; margin-bottom: 0.3rem; }
.pricing-text p { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; }
.pricing-btn {
    background: #fff; color: #5a7a2e;
    padding: 0.85rem 1.8rem; border-radius: 10px;
    font-size: 0.9rem; font-weight: 800;
    white-space: nowrap; flex-shrink: 0;
    transition: all 0.2s;
}
.pricing-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); }

/* === FAQ === */
.section-faq { padding: 3.5rem 0 2.5rem; }
.section-faq h2 { font-size: 1.7rem; font-weight: 800; color: #1a1a1a; text-align: center; margin-bottom: 1.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 720px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid #e4eaf0; border-radius: 10px;
    overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: #5a7a2e; }
.faq-item summary {
    padding: 1.1rem 1.4rem;
    font-size: 0.95rem; font-weight: 600; color: #222;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: #ccc; font-weight: 300; flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; color: #5a7a2e; }
.faq-item summary:hover { color: #5a7a2e; }
.faq-item p { padding: 0 1.4rem 1.1rem; font-size: 0.88rem; color: #666; line-height: 1.7; }

/* === Final CTA === */
.section-final { padding: 3rem 0 4rem; }
.final-card {
    background: linear-gradient(135deg, #5a7a2e, #3e5520);
    border-radius: 20px; padding: 3rem 2rem; text-align: center;
}
.final-card h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
.final-card p { color: rgba(255, 255, 255, 0.88); font-size: 1rem; margin-bottom: 1.8rem; }
.final-btn {
    background: #fff; color: #5a7a2e;
    padding: 0.9rem 2.5rem; border-radius: 12px;
    font-size: 1rem; font-weight: 800;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); transition: all 0.2s;
}
.final-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18); }

/* === Footer === */
.site-footer { padding: 2rem 0 5rem; text-align: center; border-top: 1px solid #e8ecf0; }
.site-footer p { font-size: 0.78rem; color: #ccc; }

/* === Responsive === */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { gap: 1.2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .visual-grid { grid-template-columns: 1fr; }
    .visual-text h2 { text-align: center; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }
    .testi-grid { grid-template-columns: 1fr; }
    .pricing-strip { flex-direction: column; text-align: center; }
    .pricing-text h2 { text-align: center; }
    .topnav-btn--ghost { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 6rem 1rem 3rem; }
    .hero h1 { font-size: 1.5rem; }
    .hero-stats { gap: 1rem; }
}

/* === Prelinker Form === */
.ptprelinker-register-form {
    /****** En tête gold / iron / silver ******/
    --ptprelinker-css-bg-primary-register-gold: #eef5e8 !important;
    --ptprelinker-css-ft-primary-register-gold: #5a7a2e !important;

    /****** Bouton ******/
    --ptprelinker-css-bg-success: #5a7a2e !important;
    --ptprelinker-css-border-success: #5a7a2e !important;
    --ptprelinker-css-border-hover-success: #3e5520 !important;
    --ptprelinker-css-hover-success: #3e5520 !important;
    --ptprelinker-css-ft-success: #fff !important;

    /****** Content ******/
    --ptprelinker-css-bg-body: #ffffff !important;
    --ptprelinker-css-middle: #3a3a3a;

    /****** Icon ******/
    --ptprelinker-css-bg-icon-register-gold: #eef5e8 !important;
    --ptprelinker-css-color-icon-register-gold: #5a7a2e !important;

    /****** Input ******/
    --ptprelinker-css-bg-input: #f5f5f5 !important;
    --ptprelinker-css-ft-placeholder: #999 !important;
}
