<style>

	html {
	scroll-behavior: smooth;
	}

    :root {
      --am-primary: #E50053;
      --am-blue: #009BD9;
      --am-green: #00AA8D;
      --am-grey-light: #EDEDED;
      --am-text: #1A1A1A;
      --am-bg: #F7F8FA;
      --am-radius-lg: 18px;
      --am-shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);
      --header-height: 80px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--am-text);
      background: var(--am-bg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

	/* ===== HEADER ASKME – VERSION STABLE ===== */

.am-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  padding: 8px 24px;
  display: flex;
  justify-content: center;
}

.am-header-inner {
  width: 100%;
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.am-logo {
  display: flex;
  align-items: center;
}

.am-logo-img {
  display: block;
  height: 64px; /* Ajustable : 50, 60, 70, 80… */
  width: auto;
}

.am-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.am-nav a {
  text-decoration: none;
  color: rgba(0,0,0,0.7);
  font-weight: 500;
}

.am-nav a:hover {
  color: #000;
}

.am-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost {
  border-color: rgba(0,0,0,0.12);
  background: #ffffff;
  color: rgba(0,0,0,0.8);
}

.btn-primary {
  background: #E50053;
  border-color: #E50053;
  color: #ffffff;
}

 

    .btn-outline {
      border-color: rgba(0,0,0,0.1);
      background: #ffffff;
    }

    .btn-outline:hover {
      border-color: rgba(0,0,0,0.2);
      box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(229,0,83,0.45);
    }

    
    /* Layout */
    .am-main {
      padding: 32px 16px 120px;
    }

    .am-container {
      max-width: 1120px;
      margin: 0 auto;
    }

   /* ===== HERO SLIDER ASKME ===== */

/* ===== HERO COVER SLIDER ===== */

.hero-cover {
  position: relative;
  margin-top: 24px;
  margin-bottom: 48px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  background: #ffffff; /* fond blanc, l'image ne recouvre plus tout */
}

/* Images uniquement à gauche (≈ 55%) */
.hero-cover-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

//* Masque dégradé dans la zone image (pour douceur + lisibilité à la limite) */
.hero-cover-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.0) 100%
  );
}

/* Contenu texte aligné à droite */
.hero-cover-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 40px;
  min-height: 360px;
}

.hero-copy {
  max-width: 440px;
  color: #111;
}

/* On reforce les couleurs là où le dégradé est encore sombre */
.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #009BD9;
  margin: 0 0 8px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 10px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0,0,0,0.75);
  margin: 0 0 10px;
}

.hero-points {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14px;
  color: rgba(0,0,0,0.82);
}

.hero-points li {
  margin-bottom: 4px;
}

/* Petits points discrets sous le texte */
.hero-cover-dots {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
}

.hero-cover-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.6);
  padding: 0;
  cursor: pointer;
}

.hero-cover-dots .dot.is-active {
  background: #E50053;
  border-color: #E50053;
}
/* Les blocs ciblés par le menu ne passent plus sous le header */
.hero-cover,
.section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}


/* ===== Responsive ===== */

@media (max-width: 960px) {
  .hero-cover {
    border-radius: 24px;
    min-height: 340px;
  }

  .hero-cover-inner {
    justify-content: center;
    padding: 24px 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-cover-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 25%,
      rgba(255,255,255,0.0) 60%,
      rgba(255,255,255,0.96) 100%
    );
  }
}

@media (max-width: 640px) {
  .hero-cover-inner {
    align-items: flex-end;
    min-height: 320px;
  }

  .hero-title {
    font-size: 26px;
  }
}



    /* Sections */
    .section {
      margin-bottom: 48px;
    }

    .section-header {
      margin-bottom: 18px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      flex-wrap: wrap;
    }

    .section-kicker {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--am-blue);
      font-weight: 600;
    }

    .section-title {
      font-size: 24px;
      font-weight: 700;
      margin: 4px 0 0;
    }

    .section-subtitle {
      font-size: 14px;
      color: rgba(0,0,0,0.68);
      max-width: 420px;
    }

   /* ===== PARCOURS ===== */

.section-parcours {
  margin-top: 40px;
}

.parcours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.parcours-text h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.parcours-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,0.76);
}

.parcours-step {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.parcours-step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(229,0,83,0.08);
  border: 1px solid rgba(229,0,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #E50053;
}

.parcours-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}

/* Visuels */

.parcours-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.parcours-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  background: #000;
}

.parcours-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parcours-card-avatar {
  width: 500px;
  max-width: 100%;
}

.parcours-card-bilan {
  width: 250px;
  max-width: 100%;
  position: absolute;
  right: -25px;
  bottom: -50px;
  transform: scale(0.80);
}

/* Tag en haut à gauche des cartes */
.parcours-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 500;
  color: #333;
}

/* Légère superposition douce */
.parcours-card-avatar::after,
.parcours-card-bilan::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 40%);
  pointer-events: none;
}

/* Responsive */

@media (max-width: 960px) {
  .parcours-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .parcours-visual {
    justify-content: center;
    margin-top: 10px;
  }

  .parcours-card-avatar {
    width: 260px;
  }

  .parcours-card-bilan {
    position: absolute;
    right: -4px;
    bottom: -18px;
    transform: scale(0.86);
  }
}

@media (max-width: 640px) {
  .parcours-layout {
    gap: 18px;
  }

  .parcours-visual {
    justify-content: flex-start;
  }

  .parcours-card-avatar {
    width: 100%;
  }

  .parcours-card-bilan {
    display: none; /* si tu veux, on peut l’afficher en dessous au lieu de la superposition */
  }
}


    /* ===== BÉNÉFICES CLÉS ===== */

.section-benefits {
  margin-top: 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefits-block {
  position: relative;
  background: radial-gradient(circle at top left, #fdf4fa 0, #ffffff 45%, #f2f8ff 100%);
  border-radius: 22px;
  padding: 20px 18px 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
  overflow: hidden;
}

.benefits-block::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229,0,83,0.12) 0, transparent 60%);
}

.benefits-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E50053;
  background: rgba(229,0,83,0.06);
  margin-bottom: 8px;
}

.benefits-block h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.benefits-block p {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,0.82);
}

.benefits-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 0;
  color: #E50053;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


    /* Offre / modèle */
    .offer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
      gap: 24px;
    }

    .offer-card {
      background: #ffffff;
      border-radius: 22px;
      padding: 18px 18px 20px;
      box-shadow: var(--am-shadow-soft);
    }

    .offer-card h3 {
      margin: 0 0 8px;
      font-size: 16px;
    }

    .offer-card ul {
      margin: 4px 0 0;
      padding-left: 18px;
      font-size: 13px;
      color: rgba(0,0,0,0.75);
    }

    .roadmap-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 13px;
    }

    .roadmap-item {
      border-left: 2px solid var(--am-blue);
      padding-left: 12px;
      margin-bottom: 10px;
      position: relative;
    }

    .roadmap-item::before {
      content: "";
      position: absolute;
      left: -6px;
      top: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--am-blue);
    }

    .roadmap-item strong {
      display: block;
      margin-bottom: 2px;
    }

    /* CTA final */
    .cta-final {
      margin-top: 32px;
      background: #ffffff;
      border-radius: 28px;
      padding: 20px 22px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    }

    .cta-final h2 {
      margin: 0 0 4px;
      font-size: 20px;
    }

    .cta-final p {
      margin: 0;
      font-size: 13px;
      opacity: 0.9;
    }

  /* ===== FOOTER – ELLIPSE + AVATARS DEDANS ===== */

.am-footer {
  position: relative;
  margin-top: 72px;
  padding-top: 40px;
  padding-bottom: 0px;
  overflow: hidden; /* on ne voit que le haut de l'ellipse */
}

/* Ellipse dessinée en fond, largeur = largeur du site */
/*.am-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -146px;              /* ajuste combien on voit de l’ellipse */
/*  transform: translateX(-50%);
  width: min(1120px, 100%);
  height: 260px;               /* plus petit = plus plat */
  /*border-radius: 50%;
  background: #135D9A;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
  z-index: 0;
}

/* Contenu centré DANS l’ellipse */
.am-footer-inner {
  position: relative;
  z-index: 1;                  /* au-dessus de l’ellipse */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.am-footer-mascots {
  width: 80px;                 /* taille des personnages */
  height: auto;
}

.am-footer-meta {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .am-footer {
    margin-top: 56px;
    padding-top: 32px;
    padding-bottom: 60px;
  }

  .am-footer::before {
    width: 130%;
    height: 220px;
    bottom: -190px;
  }

  .am-footer-mascots {
    width: 70px;
  }
}
    /* Responsive */
    @media (max-width: 960px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-left {
        padding-bottom: 140px;
      }

      .hero-pill {
        inset: auto 0 -70px;
        border-radius: 28px;
      }

      .hero-right {
        order: -1;
      }

      .benefits-grid,
      .steps-grid,
      .offer-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .am-header-inner {
        gap: 14px;
      }

      .am-nav {
        display: none;
      }

      .am-main {
        padding: 20px 16px 110px;
      }
    }

    @media (max-width: 640px) {
      .am-header {
        padding-inline: 14px;
      }

      .am-logo-text span:first-child {
        font-size: 13px;
      }

      .hero-left {
        padding: 22px 18px 126px;
      }

      .cta-final {
        padding: 16px 16px 18px;
      }

      .am-footer-pill {
        max-width: 320px;
        gap: 14px;
      }
	  /* Boutons du header AskMe */
.am-header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

/* Bouton "Se connecter" = contour */
.am-header .btn-ghost {
  background: #ffffff;
  color: #222;
  border-color: rgba(0,0,0,0.15);
}

.am-header .btn-ghost:hover {
  border-color: rgba(0,0,0,0.3);
}

/* Bouton "Inscrivez-vous" = plein rose */
.am-header .btn-primary {
  background: #E50053;
  border-color: #E50053;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(229, 0, 83, 0.35);
}

.am-header .btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(229, 0, 83, 0.45);
}

    }
	/* ===== Responsive spécifique au hero (slider + texte) ===== */

/* Tablette / mobile : image en haut, texte en dessous */
@media (max-width: 960px) {

  .hero-cover {
    border-radius: 24px;
    padding-top: 220px;      /* hauteur de la bande image */
    min-height: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.16);
    background: #ffffff;
  }

  /* Conteneur image : bande en haut, pleine largeur, contenu coupé */
  .hero-cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    bottom: auto;
    width: 100%;
    overflow: hidden;
  }

  /* Les slides remplissent simplement cette bande */
  .hero-bg-slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100%;
  }

  /* Sur mobile, on n’a plus besoin du masque ⇒ on le cache */
  .hero-cover-overlay {
    display: none;
  }

  .hero-cover-inner {
    position: relative;
    z-index: 2;
    padding: 18px 18px 22px;
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-copy {
    max-width: 100%;
  }
}

/* Version mobile plus compacte */
@media (max-width: 640px) {
  .hero-cover {
    padding-top: 180px;      /* bande un peu moins haute */
  }

  .hero-cover-bg {
    height: 180px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-points {
    font-size: 13px;
  }
}

/* ===== Footer global AskMe ===== */

.am-site-footer {
  margin-top: 40px;
  padding: 18px 16px 24px;
  background: transparent;              /* ou #f7f8fa si tu veux un fond léger */
}

.am-site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.am-site-footer__inner a {
  color: var(--am-primary, #E50053);
  text-decoration: none;
  font-weight: 500;
}

.am-site-footer__inner a:hover {
  text-decoration: underline;
}

  </style>