<!-- ============================================================
     ATOMY MAROC — LANDING PAGE WORDPRESS
     Instructions d'installation en bas de ce fichier
     ============================================================ -->

<style>
/* Reset pour éviter les conflits avec le thème WordPress */
#atomy-landing * { box-sizing: border-box; margin: 0; padding: 0; }
#atomy-landing a { text-decoration: none; }

#atomy-landing {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --text: #E8E0D0;
  --text-muted: #8A8070;
  --border: rgba(201,168,76,0.2);
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── HERO ── */
#atomy-landing .al-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%), var(--dark);
}

#atomy-landing .al-badge {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 40px;
  animation: alFadeUp 0.8s ease forwards;
  opacity: 0;
}

#atomy-landing .al-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.8rem, 7vw, 6.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  max-width: 780px;
  animation: alFadeUp 0.8s 0.2s ease forwards;
  opacity: 0;
  color: var(--text) !important;
}

#atomy-landing .al-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

#atomy-landing .al-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin: 28px auto 48px;
  animation: alFadeUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

#atomy-landing .al-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: alFadeUp 0.8s 0.6s ease forwards;
  opacity: 0;
}

#atomy-landing .al-btn-primary {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
#atomy-landing .al-btn-primary:hover { background: var(--gold-light); }

#atomy-landing .al-btn-secondary {
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
#atomy-landing .al-btn-secondary:hover { border-color: var(--gold); color: var(--gold) !important; }

/* ── STATS ── */
#atomy-landing .al-stats {
  padding: 72px 24px;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#atomy-landing .al-stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
}

#atomy-landing .al-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

#atomy-landing .al-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── SECTIONS ── */
#atomy-landing .al-section {
  padding: 90px 24px;
}

#atomy-landing .al-section.al-bg2 { background: var(--dark-3); }
#atomy-landing .al-section.al-bg3 { background: var(--dark-2); }

#atomy-landing .al-container {
  max-width: 1080px;
  margin: 0 auto;
}

#atomy-landing .al-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

#atomy-landing .al-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
  color: var(--text) !important;
}

#atomy-landing .al-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
}

/* ── POURQUOI ── */
#atomy-landing .al-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 0;
}

#atomy-landing .al-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

#atomy-landing .al-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
#atomy-landing .al-card:hover { border-color: var(--gold); }

#atomy-landing .al-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

#atomy-landing .al-card h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  margin-bottom: 6px !important;
  color: var(--text) !important;
}

#atomy-landing .al-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── ÉTAPES ── */
#atomy-landing .al-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}

#atomy-landing .al-step {
  background: var(--dark);
  padding: 36px 28px;
  transition: background 0.3s;
}
#atomy-landing .al-step:hover { background: var(--dark-3); }

#atomy-landing .al-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 14px;
}

#atomy-landing .al-step h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  margin-bottom: 8px !important;
  color: var(--text) !important;
}

#atomy-landing .al-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── TÉMOIGNAGES ── */
#atomy-landing .al-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

#atomy-landing .al-testi {
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}
#atomy-landing .al-testi:hover { border-color: var(--gold); }

#atomy-landing .al-testi::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

#atomy-landing .al-testi-text {
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin: 28px 0 20px;
}

#atomy-landing .al-testi-author { display: flex; align-items: center; gap: 12px; }

#atomy-landing .al-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--dark);
  font-weight: 600;
  flex-shrink: 0;
}

#atomy-landing .al-name { font-size: 14px; font-weight: 500; color: var(--text); }
#atomy-landing .al-city { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ ── */
#atomy-landing .al-faq-list { max-width: 700px; margin: 52px auto 0; }

#atomy-landing .al-faq-item { border-bottom: 1px solid var(--border); }

#atomy-landing .al-faq-q {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
}
#atomy-landing .al-faq-q:hover { color: var(--gold); }

#atomy-landing .al-faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

#atomy-landing .al-faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}

#atomy-landing .al-faq-item.open .al-faq-a { max-height: 200px; padding-bottom: 20px; }
#atomy-landing .al-faq-item.open .al-faq-icon { transform: rotate(45deg); }

/* ── FORMULAIRE CTA ── */
#atomy-landing .al-cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(201,168,76,0.05) 50%, var(--dark) 100%);
  border-top: 1px solid var(--border);
}

#atomy-landing .al-cta h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.2rem, 5vw, 4.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  max-width: 680px;
  margin: 0 auto 16px !important;
  color: var(--text) !important;
}

#atomy-landing .al-cta h2 em { font-style: italic; color: var(--gold); }

#atomy-landing .al-cta-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 44px;
}

#atomy-landing .al-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#atomy-landing .al-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#atomy-landing .al-form input,
#atomy-landing .al-form select {
  width: 100%;
  background: var(--dark-3) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  padding: 15px 18px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}

#atomy-landing .al-form input::placeholder { color: var(--text-muted) !important; }
#atomy-landing .al-form input:focus,
#atomy-landing .al-form select:focus { border-color: var(--gold) !important; }

#atomy-landing .al-form select option { background: #1A1A1A; color: #E8E0D0; }

#atomy-landing .al-submit {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 17px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.3s !important;
  border-radius: 0 !important;
}
#atomy-landing .al-submit:hover { background: var(--gold-light) !important; }

#atomy-landing .al-form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes alFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #atomy-landing .al-why-layout { grid-template-columns: 1fr; gap: 40px; }
  #atomy-landing .al-form-row { grid-template-columns: 1fr; }
  #atomy-landing .al-cards { margin-top: 0; }
}
</style>

<!-- ══════════════════════════════════════════ -->
<!--              CONTENU HTML                 -->
<!-- ══════════════════════════════════════════ -->

<div id="atomy-landing">

  <!-- HERO -->
  <div class="al-hero">
    <div class="al-badge">Atomy Maroc — Opportunité de partenariat</div>
    <h1>Construisez votre<br><em>liberté financière</em><br>avec Atomy</h1>
    <p class="al-hero-sub">Rejoignez un réseau de distributeurs indépendants au Maroc. Produits premium, plan de compensation transparent, accompagnement humain à chaque étape.</p>
    <div class="al-cta-group">
      <a href="https://wa.me/212691811165?text=Bonjour%2C%20je%20souhaite%20rejoindre%20Atomy%20Maroc" class="al-btn-primary">Rejoindre l'équipe →</a>
      <a href="#al-comment" class="al-btn-secondary">Comment ça marche ?</a>
    </div>
  </div>

  <!-- STATS -->
  <div class="al-stats">
    <div class="al-stats-grid">
      <div><div class="al-stat-num">8M+</div><div class="al-stat-label">Membres dans le monde</div></div>
      <div><div class="al-stat-num">45+</div><div class="al-stat-label">Pays actifs</div></div>
      <div><div class="al-stat-num">0 DH</div><div class="al-stat-label">Frais d'inscription</div></div>
      <div><div class="al-stat-num">100%</div><div class="al-stat-label">Légal & transparent</div></div>
    </div>
  </div>

  <!-- POURQUOI ATOMY -->
  <div class="al-section al-bg2">
    <div class="al-container">
      <div class="al-why-layout">
        <div>
          <span class="al-label">Pourquoi nous choisir</span>
          <h2 class="al-title">Un modèle unique,<br>conçu pour <em style="font-style:italic;color:#C9A84C">votre succès</em></h2>
          <p class="al-desc">Atomy n'est pas une MLM classique. C'est un système de consommation partagée où vous gagnez en recommandant des produits que vous utilisez déjà au quotidien.</p>
        </div>
        <div class="al-cards">
          <div class="al-card">
            <div class="al-icon">✦</div>
            <div><h3>Inscription 100% gratuite</h3><p>Aucun frais d'adhésion, aucun stock obligatoire. Vous démarrez sans risque financier.</p></div>
          </div>
          <div class="al-card">
            <div class="al-icon">◈</div>
            <div><h3>Produits testés & approuvés</h3><p>Cosmétiques, santé, alimentation — des produits de haute qualité avec des résultats prouvés.</p></div>
          </div>
          <div class="al-card">
            <div class="al-icon">⬡</div>
            <div><h3>Revenus passifs réels</h3><p>Plus votre réseau grandit, plus vos revenus augmentent — même lorsque vous dormez.</p></div>
          </div>
          <div class="al-card">
            <div class="al-icon">◎</div>
            <div><h3>Formation & accompagnement</h3><p>Vous n'êtes jamais seul. Notre équipe vous guide à chaque étape de votre développement.</p></div>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- COMMENT ÇA MARCHE -->
  <div class="al-section" id="al-comment">
    <div class="al-container">
      <span class="al-label">Le processus</span>
      <h2 class="al-title">Démarrer en 4 étapes simples</h2>
      <div class="al-steps">
        <div class="al-step">
          <div class="al-step-num">01</div>
          <h3>Contactez-nous</h3>
          <p>Envoyez-nous un message WhatsApp. On répond rapidement et répond à toutes vos questions sans engagement.</p>
        </div>
        <div class="al-step">
          <div class="al-step-num">02</div>
          <h3>Inscrivez-vous gratuitement</h3>
          <p>Créez votre compte Atomy en 5 minutes. Aucun frais, aucun stock, aucune pression.</p>
        </div>
        <div class="al-step">
          <div class="al-step-num">03</div>
          <h3>Utilisez & partagez</h3>
          <p>Découvrez les produits, partagez votre expérience avec votre entourage naturellement.</p>
        </div>
        <div class="al-step">
          <div class="al-step-num">04</div>
          <h3>Développez votre réseau</h3>
          <p>Recrutez d'autres distributeurs et regardez vos revenus passifs augmenter mois après mois.</p>
        </div>
      </div>
    </div>
  </div>

  <!-- TÉMOIGNAGES -->
  <div class="al-section al-bg3">
    <div class="al-container">
      <span class="al-label">Ils nous font confiance</span>
      <h2 class="al-title">Ce que disent<br>nos distributeurs</h2>
      <div class="al-testi-grid">
        <div class="al-testi">
          <div class="al-testi-text">Grâce à Atomy, j'ai pu générer un revenu complémentaire de plus de 3000 DH par mois en seulement 4 mois. L'équipe m'a accompagné à chaque étape.</div>
          <div class="al-testi-author"><div class="al-avatar">S</div><div><div class="al-name">Salma R.</div><div class="al-city">Casablanca</div></div></div>
        </div>
        <div class="al-testi">
          <div class="al-testi-text">Ce qui m'a convaincu c'est la gratuité de l'inscription. J'ai commencé sans rien investir, et aujourd'hui je forme moi-même de nouveaux distributeurs.</div>
          <div class="al-testi-author"><div class="al-avatar">Y</div><div><div class="al-name">Youssef M.</div><div class="al-city">Rabat</div></div></div>
        </div>
        <div class="al-testi">
          <div class="al-testi-text">Les produits Atomy sont exceptionnels. Quand on croit vraiment à ce qu'on vend, partager devient naturel. Mon réseau a grandi très vite.</div>
          <div class="al-testi-author"><div class="al-avatar">H</div><div><div class="al-name">Houda K.</div><div class="al-city">Marrakech</div></div></div>
        </div>
      </div>
    </div>
  </div>

  <!-- FAQ -->
  <div class="al-section al-bg2">
    <div class="al-container">
      <span class="al-label">Questions fréquentes</span>
      <h2 class="al-title">Tout ce que vous<br>devez savoir</h2>
      <div class="al-faq-list">
        <div class="al-faq-item">
          <div class="al-faq-q">Est-ce qu'Atomy est légal au Maroc ? <span class="al-faq-icon">+</span></div>
          <div class="al-faq-a">Oui, complètement. Atomy est une société coréenne fondée en 2009, présente dans plus de 45 pays. Son modèle de vente directe est totalement légal et transparent. Les revenus viennent des ventes de produits réels, pas des inscriptions.</div>
        </div>
        <div class="al-faq-item">
          <div class="al-faq-q">Combien coûte l'inscription ? <span class="al-faq-icon">+</span></div>
          <div class="al-faq-a">L'inscription est 100% gratuite. Vous n'avez aucun frais d'adhésion à payer, aucun stock à acheter obligatoirement. Vous pouvez commencer sans investir un centime.</div>
        </div>
        <div class="al-faq-item">
          <div class="al-faq-q">Dois-je vendre des produits physiquement ? <span class="al-faq-icon">+</span></div>
          <div class="al-faq-a">Non. Le système fonctionne par recommandation en ligne. Les gens commandent directement sur le site Atomy, et vous recevez vos commissions automatiquement.</div>
        </div>
        <div class="al-faq-item">
          <div class="al-faq-q">Combien de temps avant de voir des résultats ? <span class="al-faq-icon">+</span></div>
          <div class="al-faq-a">Cela dépend de votre implication. Certains membres voient leurs premiers revenus en 1 à 2 mois. Un revenu complémentaire significatif se construit généralement sur 3 à 6 mois de travail régulier.</div>
        </div>
        <div class="al-faq-item">
          <div class="al-faq-q">Quelle est la qualité des produits Atomy ? <span class="al-faq-icon">+</span></div>
          <div class="al-faq-a">Atomy est connu pour ses produits de très haute qualité. La gamme Absolute CellActive a remporté de nombreuses certifications internationales et est utilisée par des millions de personnes dans le monde.</div>
        </div>
      </div>
    </div>
  </div>

  <!-- CTA FINAL -->
  <div class="al-cta">
    <h2>Prêt à bâtir votre<br><em>avenir financier ?</em></h2>
    <p class="al-cta-desc">Laissez vos coordonnées, on vous contacte dans les 24h.</p>
    <div class="al-form">
      <div class="al-form-row">
        <input type="text" placeholder="Prénom" id="al-fname">
        <input type="text" placeholder="Ville" id="al-city">
      </div>
      <input type="tel" placeholder="Numéro WhatsApp (ex: 0612345678)" id="al-phone">
      <select id="al-goal">
        <option value="" disabled selected>Votre objectif</option>
        <option>Revenu complémentaire</option>
        <option>Revenu principal</option>
        <option>Liberté financière totale</option>
        <option>Juste découvrir</option>
      </select>
      <button class="al-submit" onclick="alSendWhatsApp()">Démarrer maintenant →</button>
      <p class="al-form-note">🔒 Vos données restent privées. Aucun spam.</p>
    </div>
  </div>

</div><!-- fin #atomy-landing -->

<script>
// FAQ
document.querySelectorAll('.al-faq-q').forEach(function(q) {
  q.addEventListener('click', function() {
    var item = q.parentElement;
    var isOpen = item.classList.contains('open');
    document.querySelectorAll('.al-faq-item').forEach(function(i){ i.classList.remove('open'); });
    if (!isOpen) item.classList.add('open');
  });
});

// Scroll reveal
if (typeof IntersectionObserver !== 'undefined') {
  var alObserver = new IntersectionObserver(function(entries) {
    entries.forEach(function(e) {
      if (e.isIntersecting) {
        e.target.style.opacity = '1';
        e.target.style.transform = 'translateY(0)';
      }
    });
  }, { threshold: 0.1 });

  document.querySelectorAll('#atomy-landing .al-card, #atomy-landing .al-step, #atomy-landing .al-testi, #atomy-landing .al-stat-num').forEach(function(el) {
    el.style.opacity = '0';
    el.style.transform = 'translateY(18px)';
    el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
    alObserver.observe(el);
  });
}

// WhatsApp form
function alSendWhatsApp() {
  var name  = document.getElementById('al-fname').value.trim();
  var city  = document.getElementById('al-city').value.trim();
  var phone = document.getElementById('al-phone').value.trim();
  var goal  = document.getElementById('al-goal').value;

  if (!name || !phone) {
    alert('Merci de renseigner au minimum votre prénom et votre numéro WhatsApp.');
    return;
  }

  var msg = encodeURIComponent(
    'Bonjour 👋 Je m\'appelle ' + name + ', je suis à ' + (city || 'Maroc') + ' et je souhaite rejoindre Atomy Maroc.\n\n' +
    'Mon objectif : ' + (goal || 'À discuter') + '\n' +
    'Mon numéro : ' + phone + '\n\n' +
    'Pouvez-vous me contacter pour en savoir plus ? 🌿'
  );

  window.open('https://wa.me/212691811165?text=' + msg, '_blank');
}
</script>

<!--
════════════════════════════════════════════════════
  📋 INSTRUCTIONS D'INSTALLATION WORDPRESS
════════════════════════════════════════════════════

MÉTHODE 1 — Avec Elementor (la plus simple) :
1. Dans WordPress → Pages → Ajouter une page
2. Nommez-la "Rejoindre Atomy" 
3. Cliquez "Modifier avec Elementor"
4. Ajoutez un bloc "HTML" (cherchez "HTML" dans les éléments)
5. Collez TOUT ce code dans le bloc HTML
6. Cliquez "Publier"
7. Votre page sera à : www.atomy-maroc.com/rejoindre-atomy

MÉTHODE 2 — Avec l'éditeur Gutenberg (WordPress classique) :
1. Dans WordPress → Pages → Ajouter une page
2. Cliquez sur "+" → cherchez "HTML personnalisé"
3. Collez TOUT ce code dans le bloc
4. Publiez la page

MÉTHODE 3 — Page en plein écran (recommandé) :
Pour masquer l'en-tête et le pied de page WordPress :
1. Dans Elementor → Paramètres de la page
2. Choisissez le modèle "Elementor Canvas"
3. La page s'affiche sans header/footer → look professionnel

CONSEIL : Ajoutez ensuite un lien "Rejoindre" dans votre menu WordPress
qui pointe vers cette nouvelle page.
════════════════════════════════════════════════════
-->