.elementor-37 .elementor-element.elementor-element-f4a4776{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-f4a4776 *//* ===============================
   HEADER — PROF&VOUS (STYLE CLEAN)
================================ */

.pv-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 249, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.pv-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LOGO */
.pv-header__logo {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #55C6C3;
  text-decoration: none;
}

/* ===============================
   NAV DESKTOP (inchangé)
================================ */

.pv-header__nav {
  display: flex;
  gap: 18px;
}

.pv-header__nav a {
  font-weight: 700;
  font-size: 15px;
  color: #1E1E1E;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .2s ease;
}

.pv-header__nav a:hover {
  background: rgba(85,198,195,.14);
}

/* CTA DESKTOP */
.pv-header__cta {
  background: linear-gradient(180deg, #55C6C3, #3BB3B0);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(85,198,195,.25);
}

/* ===============================
   BURGER — SOBRE & PRO
================================ */

.pv-header__burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;

  flex-direction: column;
  gap: 5px;
}

.pv-header__burger span {
  width: 22px;
  height: 2.5px;
  background: #1E1E1E;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ===============================
   MOBILE MENU — FIX FINAL
================================ */

@media (max-width: 900px) {

  /* Burger visible */
  .pv-header__burger {
    display: flex;
    z-index: 10001;
  }

  /* Nav mobile */
  .pv-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #FFF9EF;
    border-bottom: 1px solid rgba(0,0,0,.06);

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    padding: 12px 20px;

    /* IMPORTANT */
    display: none;
    z-index: 10000;
  }

  /* Quand le burger est cliqué */
  .pv-header__nav.is-open {
    display: flex;
  }

  /* Liens */
  .pv-header__nav a {
    width: 100%;
    padding: 12px 6px;
    font-size: 16px;
  }

  /* CTA caché sur mobile */
  .pv-header__cta {
    display: none;
  }
}

/* CTA MOBILE */
.pv-mobile-menu__cta {
  margin-top: 28px;
  background: linear-gradient(180deg, #55C6C3, #3BB3B0);
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 22px rgba(85,198,195,.25);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

  .pv-header__nav,
  .pv-header__cta {
    display: none;
  }

  .pv-header__burger {
    display: flex;
    margin-left: auto; /* BURGER BIEN À DROITE */
  }
}

/* ===============================
   FIX — SUPPRESSION FOND BURGER
================================ */

/* Reset TOTAL du bouton */
.pv-header__burger {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;

  padding: 6px;
  border-radius: 0;
}

/* Au hover / focus / active (très important) */
.pv-header__burger:hover,
.pv-header__burger:focus,
.pv-header__burger:active {
  background: transparent !important;
  box-shadow: none !important;
}

/* Les traits */
.pv-header__burger span {
  background-color: #1E1E1E;
}

/* Empêche Elementor / thème d’ajouter un style */
button.pv-header__burger {
  background-color: transparent !important;
}/* End custom CSS */