* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f6f6f4;
  font-family: 'Inter', sans-serif;
  color: #111;

}


/* NAVBAR */

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;


  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;





}


.navbar.scrolled {

  background: rgba(246, 246, 244, 0.72);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);

  border-bottom: 1px solid black;


}





.logo {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: black;
  letter-spacing: -1px;
  margin-left: 26px;
  font-family: 'DM Serif Display', serif;

}

.logo .bold {
  font-weight: 900;
}

/* Croix rouge */
.logo::after {
  content: "✕";
  position: absolute;
  top: -14px;
  right: -20px;
  color: red;
  font-size: 19px;
  font-weight: 900;
}



.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #222;
  outline: none;
}

.login {
  background: white;
  border: 1px solid #dcdcdc;
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  color: black;
  text-decoration: none;
  list-style: none;
  padding-top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.login:hover {
  background: rgba(255, 255, 255, 0.89);
}

.signup {
  background: #4d4dff;
  color: white;
  border: none;
  height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  margin-right: 30px;
  margin-left: 6px;
  text-decoration: none;
  list-style: none;
  padding-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;


}


.signup:hover {

  background: #4d4dffd8;
}


/* HERO */

.hero {
  max-width: 1240px;
  margin: auto;
  padding: 54px 32px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

/* LEFT */

.left {
  width: 50%;
  padding-top: 18px;
  font-family: Arial, sans-serif;
}

.beta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #6d6d6d;
  margin-bottom: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  background: #ff3d3d;
  border-radius: 50%;
}

.left h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 75px;
  line-height: 0.96;
  letter-spacing: -2px;
  margin-bottom: 28px;
  font-weight: 700;
  color: black;
}

.left p {
  max-width: 510px;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 34px;
}

/* BUTTONS */

.buttons {
  display: flex;
  gap: 16px;
}

.primary {
  background: #4d4dff;
  color: white;
  border: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  list-style: none;
   display: inline-flex;
  align-items: center;
  justify-content: center;

}


.primary:hover {
  background: #4d4dffd8;

}

.secondary {
  background: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: 1px solid #ddd;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  list-style: none;
  color: black;
   display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.89);
}

/* RIGHT */

.right {
  width: 510px;
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.job-card {
  background: #ffff;
  border: 1px solid #dddddd;
  border-radius: 22px;
  padding: 13px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;

  cursor: pointer;
}



.job-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: white;
  z-index: 2;
}


.job-card h3 {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.job-card small {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 16px;
}

.job-card span {
  font-size: 14px;
  font-weight: 600;
}

.job-card.active {
  background: white;
  border: 3px solid black;
  box-shadow: 5px 5px 0 black;
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .hero {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
  }

  .left h1 {
    font-size: 60px;
  }
}

@media(max-width:700px) {

  .hero {
    padding: 40px 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .left h1 {
    font-size: 48px;
  }

  .buttons {
    flex-direction: column;
  }

  .right {
    width: 100%;
  }
}






.section {
  max-width: 1200px;
  margin: auto;
  font-family: 'DM Serif Display', serif;

}

.top-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.top-label span {
  color: red;
  margin: 0 6px;
}

.title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 50px;
  color: black;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-radius: 30px;

}

.card {

  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 24px;
}

.red {

  color: red;
  font-weight: 700;
  font-size: 15px;

}

.card-image {
  background: #f3f3f3;
  border-radius: 18px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.card-step {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7b7b7b;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.card-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: black;
  font-weight: 700;
}

.card-text {
  color: #6d6d6d;
  line-height: 1.8;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .cards {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 18px;
  }

  .card-title {
    font-size: 16px;
  }

}






.container {
  display: flex;
  justify-content: space-between;
}

/* LEFT */
.left1 {
  max-width: 500px;
}

.small1 {
  font-size: 12px;
  color: #999;
  letter-spacing: 2px;
  font-family: Arial, sans-serif;
}

.small2 {
  font-size: 40px;
  margin: 20px 0;
  color: black;
  font-family: 'DM Serif Display', serif;
  font-weight: 600;
}

.description1 {
  color: #666;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

.link1 {
  color: rgba(0, 0, 255, 0.842);
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* CARD */
.card1 {
  width: 500px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 10px 10px 0px black;
  border: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.card-header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge1 {
  background: #d4f5e9;
  color: green;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.ref1 {
  font-size: 12px;
  color: #777;
}

.card-body1 {
  margin-top: 15px;
}

.row1 {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.muted1 {
  color: #888;
}

.total1 {
  font-weight: 500;
  color: blue;
  font-family: Arial, sans-serif;
}

.total2 {

  color: black;
  font-family: Arial, sans-serif;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.footer1 {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  font-family: Arial, sans-serif;

}

.footer2 {

  color: green;
  font-size: 18px;

}



@media (max-width: 768px) {

  .container {
    flex-direction: column;
    padding: 20px;
    gap: 30px;
  }

  h1 {
    font-size: 32px;
  }

  .card1 {
    width: 100%;
    box-shadow: 5px 5px 0px black;
  }

  .left1 {
    max-width: 100%;
  }
}








.section2 {
  max-width: 1250px;
  margin: auto;
  padding: 60px 24px 80px;
}

/* TOP */

.label2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7b7b7b;
  margin-bottom: 18px;
  font-family: Arial, sans-serif;
}


.label3 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 60px;
  font-weight: 700;
  color: black;
}

/* GRID */

.cards2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  font-family: Arial, sans-serif;
}

/* CARD */

.card2 {
  background: #f7f7f5;
  border: 1px solid #dfdfdf;
  border-radius: 28px;
  padding: 22px;
}

/* MOCKUP AREA */

.mockup-wrapper2 {
  background: #efefed;
  border-radius: 22px;
  min-height: 217px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  position: relative;
  overflow: hidden;
}

/* INSIDE CARD */

.mockup2 {
  background: white;
  border: 2px solid #111;
  border-radius: 22px;
  padding: 14px;

}

/* HEADER */

.top-row2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.brand2 {
  display: flex;
  gap: 10px;
}

.avatar2 {
  width: 18px;
  height: 18px;
  background: black;
  border-radius: 50%;
}

.brand-info2 h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}

.brand-info2 span {
  font-size: 9px;
  color: #777;
}

.badge2 {
  background: #4f46e5;
  color: white;

  font-size: 9px;
  font-weight: 700;

  padding: 5px 10px;
  border-radius: 999px;
}

/* CONTENT */

.mockup-title2 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;

  margin-bottom: 10px;
}

.small-text2 {
  font-size: 10px;
  color: #777;

  margin-bottom: 14px;
}

.tags2 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag2 {
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  font-size: 9px;
  font-weight: 600;
}

/* FOOTER */

.mockup-footer2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price2 {
  font-weight: 900;
  font-size: 20px;

  font-family: monospace;
}

.btn2 {
  border: none;
  background: #4f46e5;
  color: white;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;

  cursor: pointer;
}

/* BOTTOM CONTENT */

.step2 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8b8b8b;
  margin-bottom: 17px;
}


.card2 h2 {
  font-size: 19px;
  line-height: 1.15;
  color: black;
  margin-bottom: 18px;
  font-weight: 600;
}

.card2 p {
  color: #676767;
  line-height: 1.8;
  font-size: 15px;
}

/* SECOND CARD */

.green2 {
  background: #11b873;
}

.red2 {

  background-color: red;
}


/* RESPONSIVE */

@media(max-width:1050px) {

  .cards2 {
    grid-template-columns: 1fr;
  }

  .mockup-wrapper2 {
    min-height: 260px;
  }

  .red2 {

    background-color: red;
  }

}





.growth4 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 80px 6%;
  background-color: black;
}

/* LEFT */

.growth-left4 {
  flex: 1;
  max-width: 560px;
}

.label4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a8a;
  font-family: Arial, sans-serif;
}

.label4 span:nth-child(2) {
  color: #ff3d2f;
}

.label5 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 34px;
  font-weight: 700;
  color: #fff;
}

.growth-left4 p {
  font-size: 18px;
  line-height: 1.8;
  color: #9f9f9f;
  font-family: Arial, sans-serif;
}

/* RIGHT */

.growth-right4 {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ORBIT */

.orbit-container4 {
  position: relative;

  width: 520px;
  height: 520px;
}

/* DOTTED CIRCLE */

.orbit4 {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* CENTER GLOBE */

.globe4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 310px;
  height: 310px;
  background: #fff;
  border-radius: 50%;
  border: 8px solid #13136d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(31, 31, 255, 0.15);
}

.icone1 {
  color: black;
  font-size: 250px;
}

/* ICONS */

.social4 {
  position: absolute;

  width: 64px;
  height: 64px;

  background: #efefef;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: black;

  font-size: 32px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35);
}

.social4.top4 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.social4.right4 {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.social4.bottom4 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.social4.left4 {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}

/* RESPONSIVE */

@media(max-width:1100px) {

  .growth4 {
    flex-direction: column;
    text-align: center;

    padding-top: 100px;
  }

  .label4 {
    justify-content: center;
  }

}

@media(max-width:700px) {

  .orbit-container4 {
    width: 340px;
    height: 340px;
  }

  .globe4 {
    width: 210px;
    height: 210px;
  }

  .icone1 {
    font-size: 120px;
  }

  .social4 {
    width: 54px;
    height: 54px;

    font-size: 24px;
  }

  .label5 {
    font-size: 2.6rem;
  }

}




.section-header6 {
  margin-bottom: 40px;
  max-width: 1250px;

}

.section-header7 {
  max-width: 1250px;
  padding: 60px 60px 80px;
  gap: 20px;

}

.small-title6 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}


.small-title7 {
  font-size: 34px;
  line-height: 1.1;
  max-width: 900px;
  color: black;
  font-weight: 600;
  font-family: 'DM Serif Display', serif;
}

.cards6 {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.card6 {
  width: 270px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.card6:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-top6 {
  height: 160px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: #0aa3b5;
  color: white;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-body6 {
  padding: 20px;
}

.name6 {
  font-size: 16px;
  margin-bottom: 5px;
  color: black;
  font-weight: 600;
}

.username6 {
  color: #777;
  margin-bottom: 18px;
}

.tag6 {
  display: inline-block;
  padding: 8px 14px;
  background: #f3f3f3;
  border-radius: 999px;
  font-size: 14px;
  color: #666;
}

.footer-link6 {
  margin-top: 35px;
  text-align: center;
}

.footer-link7 {
  color: blue;
  text-decoration: none;
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.footer-link7:hover {
  text-decoration: underline;
}







.small-title8 {
  font-size: 35px;
  margin-bottom: 40px;
  font-family: 'DM Serif Display', serif;
  color: black;
  font-weight: 600;
}

.small-title9 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}

.faq-container8 {
  max-width: 800px;
  padding: 60px 40px 80px;
  gap: 10px;

}

.faq-card8 {
  background: white;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 15px 20px;
  margin-bottom: 13px;
}

.faq-top8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question8 {
  font-size: 17px;
  color: black;
  font-family: Arial, sans-serif;
}

.icon8 {
  font-size: 22px;
  color: #666;
  transition: 0.3s;
}

.faq-answer8 {
  color: #666;
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.5;
  font-family: Arial, sans-serif;
}

/* caché */
.hidden8 {
  display: none;
}








@media (max-width: 768px) {


  .small-title8 {
    font-size: 28px;
    line-height: 1.2;
  }

  .faq-card8 {
    padding: 20px;
    border-radius: 16px;
  }

  .faq-question8 {
    font-size: 20px;
    width: 90%;
  }

  .faq-answer8 {
    font-size: 16px;
    line-height: 1.5;
  }

  .icon8 {
    font-size: 24px;
  }

}





.hero13 {
  width: 100%;
  margin: 60px auto;
  background: #000;
  color: white;
  padding: 90px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  min-height: 390px;
}

/* LEFT */

.hero-left13 {
  max-width: 600px;
  flex: 1;
}

.hero-left14 {
  font-family: 'DM Serif Display', serif;
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 600;
}

/* BUTTONS */

.buttons13 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn13 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Violet */

.primary13 {
  background: #4338ff;
  color: white;
  font-family: Arial, sans-serif;
}

.primary13:hover {
  background: #5b52ff;
}

/* Blanc */

.secondary13 {
  width: 230px;
  background: white;
  color: black;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

/* RIGHT */

.hero-right13 {
  color: #7a7a7a;
  font-size: 17px;
  line-height: 1.9;
  min-width: 320px;
  font-family: Arial, sans-serif;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {

  .hero13 {
    padding: 70px 50px;
  }

  .hero-left14 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {

  .hero13 {
    flex-direction: column;
    align-items: flex-start;

    padding: 60px 30px;
  }

  .hero-left14 {
    font-size: 42px;
  }

  .hero-right13 {
    margin-top: 20px;
    font-size: 16px;
  }

  .secondary13 {
    width: 180px;
  }
}

@media (max-width: 480px) {

  .hero13 {
    padding: 45px 20px;
  }

  .hero-left14 {
    font-size: 34px;
    line-height: 1.15;
  }

  .buttons13 {
    width: 100%;
  }

  .btn13 {
    width: 100%;
  }

  .secondary13 {
    width: 100%;
  }

  .hero-right13 {
    font-size: 14px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
  }
}


.header16 {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 110px;
}

/* LOGO */
.logo16 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.logo16 span {
  font-weight: 900;
}

/* petite croix rouge */
.logo16::after {
  content: "×";
  position: absolute;
  top: -8px;
  right: -16px;
  color: #ff3b30;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 700;
}

/* MENU */
.nav16 {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  color: #6b6b6b;
}

.nav16 a {
  text-decoration: none;
  color: #6b6b6b;
  transition: 0.2s;
}

.nav16 a:hover {
  color: #000;
}

.copyright16 {
  color: #6b6b6b;
}


@media (max-width:768px) {

  .header16 {
    padding: 20px 30px;

    flex-direction: column;
    align-items: flex-start;
  }

  .logo16 {
    font-size: 22px;
  }

  .nav16 {
    width: 100%;

    gap: 18px;

    justify-content: flex-start;

    font-size: 13px;
  }

}

/* PETITS TÉLÉPHONES */

@media (max-width:480px) {

  .header16 {
    padding: 18px 20px;
  }

  .nav16 {
    gap: 14px;
    font-size: 12px;
  }

  .logo16 {
    font-size: 20px;
  }

  .logo16::after {
    right: -14px;
    font-size: 16px;
  }

}







.menu-toggle {
  width: 30px;
  height: 25px;
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 1001;
}

/* LES 3 BARRES */
.menu-toggle span {
  position: absolute;
  width: 80%;
  /* au lieu de 100% */
  height: 3px;
  /* un peu plus fin */
  background: black;
  border-radius: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* POSITION INITIALE */
.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
  /* ← tu gardes ça */
}


.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* TRANSFORMATION EN CROIX */
.menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: black;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: translateX(-50%) rotate(-45deg);
  background: black;
}

/* MOBILE */
@media (max-width: 768px) {

  /* afficher hamburger */
  .menu-toggle {
    display: flex;
  }

  .signup {

    margin-left: 40px;


  }

  /* cacher menu au début */
  #nav-menu20 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }


  /* menu actif */
  #nav-menu20.open {
    left: 0;
  }
}


@media (max-width: 768px) {

  #nav-menu20 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #nav-menu19 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*  centre horizontal */
    justify-content: center;
    /*  centre vertical */
    gap: 25px;
    /*  espace entre les éléments */
    padding: 0;
    margin: 0;
    width: 100%;
  }



  #nav-menu21 {
    display: block;
    text-align: center;

  }

}


#nav-menu18 {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 17px;
}

#nav-menu18 {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 17px;

}