/* ===== RESET GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
  }
  
  /* ===== BLOC 1 : HERO ===== */
  .hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  #cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  #cta-btn:hover {
    opacity: 0.85;
  }
  
  /* ===== BLOC 2 : PROBLÈME ===== */
  .probleme {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .probleme h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .point h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .point p {
    color: #555;
    font-size: 0.95rem;
  }
  
 /* ===== BLOC 3 : PREUVE SOCIALE ===== */
.preuve-sociale {
    padding: 4rem 2rem;
    text-align: center;
    background: #1a1a1a;
    color: #fff;
  }
  
  .preuve-sociale h2 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stat-nombre {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  /* ===== BLOC FOOTER ===== */
  footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
  }

  /* ===== BLOC 4 : OFFRE ===== */
.offre {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .offre h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .tab-btn {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    background: #eee;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #555;
  }
  
  .tab-btn.active {
    background: #000;
    color: #fff;
  }
  
  .tab-content {
    display: none;
    text-align: left;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .tab-intro {
    text-align: center;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .produits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
  }
  
  .produits li {
    padding: 0.8rem 1rem;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.95rem;
  }

  /* ===== BLOC 5 : CTA FINAL ===== */
.cta-final {
    padding: 4rem 2rem;
    text-align: center;
    background: #f5f5f5;
  }
  
  .cta-final h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .cta-final p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.05rem;
  }
  
  #cta-final-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  #cta-final-btn:hover {
    opacity: 0.85;
  }