
/* ── DÉGRADÉ HAUT → BAS ── */
.hero-entrepreneur::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #031634 0%,
    rgba(3, 22, 52, 0.85) 5%,
    rgba(3, 22, 52, 0.50) 25%,
    rgba(3, 22, 52, 0.10) 33%,
    transparent 35%
  );
  pointer-events: none;
}

/* ── CONTENU TEXTE ── */
.hero-entrepreneur-content {
  position: relative;
  z-index: 2;
  padding: 10vh 5vw 0;
  width: 100%;
  text-align: left;
}

/* --- STAT --- */
.ne-stats_1_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0rem, 2vw, 0.5rem);
}

/* --- STAT : VERSION MOBILE --- */
@media (max-width: 640px) {
  .ne-stats_1_grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 420px) {
  .ne-stats_1_grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* --- Parcours --- */
.ne-parcours {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 28px 5vw;
  margin: auto;
  background: #031634;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  box-sizing: border-box;
}

.ne-parcours-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: .5 auto;
  box-sizing: border-box;
}

.ne-parcours-head {
  text-align: center;
  margin-bottom: 4.5rem;
}

.ne-parcours-head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.ne-parcours-head h2 em {
  font-style: normal;
  color: #0AAA66;
}

.ne-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.ne-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: rgba(10, 184, 106, 0.15);
  border-radius: 9999px;
  z-index: 1;
}

.ne-step {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 2rem 2rem 4.2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-sizing: border-box;
}

.ne-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(10, 184, 106, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ne-step::before {
  content: attr(data-n);
  position: absolute;
  left: -12px;
  top: 28px;
  width: 56px;
  height: 56px;
  background: #0AAA66;
  color: #031634;
  font-size: 1.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(10, 184, 106, 0.15);
  z-index: 3;
  transition: all 0.4s ease;
}

.ne-step:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(10, 184, 106, 0.25);
}

.ne-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.ne-step p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (min-width: 992px) {
  .ne-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .ne-steps::before {
    left: 50%;
    top: 0;
    bottom: 0;
    height: auto;
    width: 3px;
    transform: translateX(-50%);
  }

  .ne-step {
    padding: 2.2rem 2.4rem 2.2rem 4.5rem;
  }

  .ne-step:nth-child(odd) {
    margin-right: 1.5rem;
  }

  .ne-step:nth-child(even) {
    margin-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .ne-parcours {
    padding: 70px 5vw 80px;
  }
  
  .ne-step {
    padding: 1.8rem 1.8rem 1.8rem 3.8rem;
  }
  
  .ne-step::before {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    left: -8px;
    top: 24px;
  }
  
  .ne-steps::before {
    left: 22px;
  }
  
  .ne-step h3 {
    font-size: 1.1rem;
  }
  
  .ne-step p {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .ne-step {
    padding: 1.5rem 1.2rem 1.5rem 3.2rem;
  }
  
  .ne-step::before {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    left: -6px;
    top: 20px;
    box-shadow: 0 0 0 6px rgba(10, 184, 106, 0.15);
  }
  
  .ne-steps::before {
    left: 18px;
  }
}

/* --- Formation --- */
.ne-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.ne-formation-media {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ph {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(3, 22, 52, 0.10);
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 190px;
  transition: transform 0.6s ease, box-shadow 0.3s ease;  
}

.ph:hover img {
  transform: scale(1.03);
}

.ph.tall {
  flex: 1;
  grid-row: span 2;
}

.ph.tall img {
  min-height: 200px;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

/* --- FORMATION : VERSION MOBILE --- */
@media (max-width: 992px) {
  .ne-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .ne-formation-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .ne-formation-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .ph img {
    min-height: 120px;
  }
  
  .ph.tall img {
    min-height: 140px;
  }
}

@media (max-width: 420px) {
  .ne-formation-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  
  .ph {
    border-radius: 10px;
  }
  
  .ph img {
    min-height: 100px;
  }
  
  .ph.tall img {
    min-height: 120px;
  }
}

/* --- Témoignage --- */
.ne-temoignages {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 28px 5vw;
  margin: 0 auto;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
}

.ne-temoignages-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.ne-temoignages-head h2 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #031634;
  margin-bottom: 1.2rem;
}

.ne-temoignages-head h2 em {
  font-style: normal;
  color: #0AAA66;
}

.ne-temoignages-intro {
  font-size: 1.05rem;
  color: #53657a;
  line-height: 1.65;
}

.ne-temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.ne-temoignages-card {
  background: #f8fbf9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.ne-temoignages-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ne-temoignages-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.ne-temoignages-card:hover img {
  transform: scale(1.04);
}

.ne-temoignages-content {
  padding: 2rem 2.2rem 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
}

.ne-temoignages-content h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #031634;
  margin: 0 0 0.4rem 0;
}

.ne-temoignages-role1 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0AAA66;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 1.3rem 0 0 0;
}

.ne-card-quote {
  font-size: 1.02rem;
  line-height: 1.78;
  color: #53657a;
  font-style: italic;
  position: relative;
  flex: 1;
  margin-top: 1.3rem;
}

.ne-card-quote i {
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(10, 184, 106, 0.12);
  font-family: inherit;
}

/* --- TEMOIGNAGE : VERSION MOBILE --- */
@media (max-width: 768px) {
  .ne-temoignages-head {
    margin-bottom: 2.5rem;
  }
  
  .ne-temoignages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .ne-card-quote i {
    left: 0;
    font-size: 3rem;
    top: -10px;
  }
  
  .ne-temoignages-content {
    padding: 1.5rem;
  }
  
  .ne-temoignages-content h3 {
    font-size: 1.1rem;
  }
  
  .ne-card-quote {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .ne-temoignages {
    padding: 60px 4vw;
  }
}

@media (max-width: 500px) {
  .ne-temoignages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .ne-temoignages-head h2 {
    font-size: 1.8rem;
  }
  
  .ne-temoignages-intro {
    font-size: 0.95rem;
  }
}

/* --- CTA --- */
.ne-cta {
  background: #102847;
  margin: 0 auto;
  padding: 28px 5vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* decorative circles */
.ne-cta-dec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ne-cta-dec.d-a {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(10, 184, 106, 0.08);
  top: -120px;
  right: -80px;
}

.ne-cta-dec.d-b {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(10, 184, 106, 0.06);
  top: -40px;
  right: 60px;
}

.ne-cta-dec.d-c {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(10, 184, 106, 0.05);
  bottom: -60px;
  left: 5vw;
}

.ne-cta-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.ne-cta-inner .ne-lbl {
  justify-content: center;
  color: #0AAA66;
}

.ne-cta-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.2rem;
}

.ne-cta-inner h2 em {
  font-style: normal;
  color: #0AAA66;
}

.ne-cta-inner p {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
  margin: 0 auto 1rem;
}

.ne-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0AAA66;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(10, 184, 106, 0.3);
}

.ne-cta-btn:hover {
  background: #0AAA66;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10, 184, 106, 0.4);
}

.ne-cta-btn svg {
  transition: transform 0.2s;
}

.ne-cta-btn:hover svg {
  transform: translateX(3px);
}

.ne-cta-note {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.2rem;
}

/* trust badges */
.ne-cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ne-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ne-badge svg {
  color: #0AAA66;
  flex-shrink: 0;
}

.ne-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* --- CTA : VERSION MOBILE --- */
@media (max-width: 700px) {
  .ne-cta-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ne-cta {
    padding: 56px 5vw;
  }
  
  .ne-cta-inner h2 {
    font-size: 1.8rem;
  }
  
  .ne-cta-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .ne-cta-dec.d-a {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
  }
  
  .ne-cta-dec.d-b {
    width: 140px;
    height: 140px;
    top: -20px;
    right: 20px;
  }
  
  .ne-cta-dec.d-c {
    width: 100px;
    height: 100px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .ne-cta {
    padding: 48px 4vw;
  }
  
  .ne-cta-inner h2 {
    font-size: 1.5rem;
  }
  
  .ne-cta-inner p {
    font-size: 0.9rem;
  }
  
  .ne-cta-btn {
    padding: 12px 24px;
    font-size: 13px;
    gap: 8px;
  }
  
  .ne-badge span {
    font-size: 12px;
  }
}