// V5 Landing Page — ordre narratif optimisé
// 1. Hero · 2. Logos presse · 3. Pourquoi simuler (problème) ·
// 4. Simulez/Comparez/Validez (solution) · 5. Toutes les réponses (features) ·
// 6. Outil + expertise (différenciation) · 7. Témoignages · 8. Final CTA · 9. Footer
//
// NOTE (handoff responsive build) : la nav sticky est rendue au niveau document
// (hors du conteneur scalé) par index.html. Elle n'est donc PAS incluse ici.

function V5Landing() {
  return (
    <div style={{ width: 1440, background: TOKENS.paper, position: 'relative' }}>
      <V5/>
      <TrustBar onDark={false} mobile={false}/>
      <WhySimulateSection mobile={false}/>
      <ProductSection mobile={false}/>
      <FeaturesSection mobile={false}/>
      <WhySection mobile={false}/>
      <TestimonialsSection mobile={false}/>
      <FinalCtaSection mobile={false}/>
      <Footer mobile={false}/>
    </div>
  );
}

function V5LandingMobile() {
  return (
    <div style={{ width: 390, background: TOKENS.paper, position: 'relative' }}>
      <V5Mobile/>
      <TrustBar onDark={false} mobile={true}/>
      <WhySimulateSection mobile={true}/>
      <ProductSection mobile={true}/>
      <FeaturesSection mobile={true}/>
      <WhySection mobile={true}/>
      <TestimonialsSection mobile={true}/>
      <FinalCtaSection mobile={true}/>
      <Footer mobile={true}/>
    </div>
  );
}

window.V5Landing = V5Landing;
window.V5LandingMobile = V5LandingMobile;
