/* Start custom CSS for html, class: .elementor-element-152f7dd *//* ===== variables marque (si pas déjà en place) ===== */ :root{ --med-navy:#0E2B4C; --med-blue:#144C8A; --med-turq:#29D3D3; --med-turq-600:#18B9B9; --med-gray-200:#E9EEF4; --med-gray-700:#4A5260; --white:#FFFFFF; } /* ===== base btn ===== */ .btn{ display:inline-flex; align-items:center; justify-content:center; padding:.72rem 1.1rem; border-radius:999px; font-weight:700; text-decoration:none; transition:.2s ease; border:2px solid transparent; line-height:1; } .btn--primary{ background:var(--med-turq); color:var(--med-navy) } .btn--primary:hover{ background:var(--med-turq-600) } .btn--ghost{ color:var(--med-navy); border-color:var(--med-navy); background:transparent } .btn--ghost:hover{ background:var(--med-navy); color:#fff } /* ===== header ===== */ .md-header{ position:sticky; top:0; z-index:9999; background:var(--white); box-shadow:0 2px 10px rgba(0,0,0,.04); } .md-topbar{ height:6px; background:var(--med-turq) } /* bandeau couleur */ .md-nav{ display:flex; align-items:center; justify-content:space-between; height:72px; gap:20px; } .md-brand img{ height:46px; width:auto; display:block } /* liens desktop */ .md-links{ display:flex; align-items:center; gap:28px; } .md-links a{ color:var(--med-navy); text-decoration:none; font-weight:700; } .md-links a:hover{ color:var(--med-blue) } /* CTAs (desktop) */ .md-cta{ display:flex; align-items:center; gap:12px } /* burger toggle */ .md-nav-toggle{ display:none } /* masqué mais présent dans le DOM */ .md-burger{ display:none; width:36px; height:28px; position:relative; cursor:pointer; } .md-burger span{ position:absolute; left:0; right:0; height:3px; background:var(--med-navy); border-radius:2px; transition:.25s; } .md-burger span:nth-child(1){ top:4px } .md-burger span:nth-child(2){ top:12px } .md-burger span:nth-child(3){ top:20px } /* ===== MOBILE ===== */ @media (max-width: 992px){ /* on montre le burger, on cache le nav en dehors de l’écran */ .md-burger{ display:block } .md-links{ position:fixed; inset: calc(72px + 6px) 0 0 0; /* sous le header + topbar */ background:#fff; border-top:1px solid var(--med-gray-200); display:flex; flex-direction:column; gap:16px; padding:18px 20px 24px; transform: translateY(-100%); opacity:0; pointer-events:none; transition:.25s ease; overflow:auto; z-index:9998; } /* ouverture du menu au check */ .md-nav-toggle:checked ~ .md-links{ transform: translateY(0); opacity:1; pointer-events:auto; } /* X animation */ .md-nav-toggle:checked + .md-burger span:nth-child(1){ transform:translateY(8px) rotate(45deg) } .md-nav-toggle:checked + .md-burger span:nth-child(2){ opacity:0 } .md-nav-toggle:checked + .md-burger span:nth-child(3){ transform:translateY(-8px) rotate(-45deg) } /* recherche mobile */ .md-search{ width:100%; order:-1; } .md-search input{ width:100%; padding:.8rem 1rem; border:1.5px solid var(--med-gray-200); border-radius:12px; outline:none; } .md-search input:focus{ border-color:var(--med-turq); box-shadow:0 0 0 3px rgba(41,211,211,.15) } /* liens & ctas empilés */ .md-links a{ font-size:1.05rem; padding:.2rem 0 } .md-cta{ flex-direction:column; gap:10px; width:100% } .md-cta .btn{ width:100% } } /* ===== petits affinages desktop ===== */ @media (min-width: 993px){ /* meilleur contraste des CTA */ .md-cta .btn--ghost{ border-color:var(--med-navy) } .md-cta .btn--primary{ background:var(--med-turq); color:var(--med-navy) } .md-cta .btn--primary:hover{ background:var(--med-turq-600) } } /* Right zone (loupe + CTA) */ .md-right{ display:flex; align-items:center; gap:16px; } .md-search-icon{ font-size:1.2rem; background:none; border:none; cursor:pointer; color:var(--med-navy); transition:.2s; } .md-search-icon:hover{ color:var(--med-turq) } /* masquer la recherche input en desktop */ .mobile-only{ display:none } /* MOBILE */ @media (max-width: 980px){ .md-right{ display:none } /* cache les CTA + loupe */ .mobile-only{ display:block; width:100%; order:-1 } .mobile-only input{ width:100%; padding:.8rem 1rem; border:1px solid var(--med-gray-200); border-radius:10px; } } /* ======== STICKY FIX — FORCE FIXED HEADER ======== Si position:sticky casse à cause d'un parent (overflow/transform), on force un header FIXE, stable en haut, sans changer ton HTML. */ .md-header{ position: fixed !important; top: 0; left: 0; right: 0; width: 100%; background: rgba(255,255,255,.96); -webkit-backdrop-filter: saturate(140%) blur(6px); backdrop-filter: saturate(140%) blur(6px); z-index: 9999; } /* compenser la hauteur du header pour éviter que le contenu passe dessous */ body{ --md-header-h: 78px; /* 72px nav + 6px topbar */ padding-top: var(--md-header-h); } /* si la barre d’admin WP est visible, on ajoute l’offset */ .admin-bar body{ padding-top: calc(var(--md-header-h) + 32px); } @media (max-width: 782px){ .admin-bar body{ padding-top: calc(var(--md-header-h) + 46px); } } /* assure que le menu mobile se place juste sous le header fixe */ @media (max-width: 992px){ .md-links{ top: var(--md-header-h) !important; } }
/* ===== NAV CANDIDATS — ajouts ===== */

/* lien actif (page Candidats) */
.md-links a.is-active{
  color: var(--med-blue);
  position: relative;
}
.md-links a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:3px; border-radius:3px; background: var(--med-turq);
}

/* switch de rôle (Employeurs) */
.role-switch{
  display:inline-flex; align-items:center; gap:6px;
  padding:.45rem .7rem; border-radius:999px;
  font-weight:700; text-decoration:none;
  color:var(--med-navy); border:1.5px solid var(--med-gray-200);
  background: linear-gradient(180deg, #ffffff 0%, #f9feff 100%);
  transition:.2s;
}
.role-switch:hover{
  border-color: rgba(6,55,109,.25);
  box-shadow: 0 6px 16px rgba(6,55,109,.10);
}

/* harmonisation mobile : déjà OK via tes classes .mobile-only/.md-right */
@media (max-width: 992px){
  .role-switch{ width:100%; justify-content:center }
}
/* === Allègement du header Candidats === */
.md-nav{ height:64px }                       /* plus fin */
.md-links{ gap:18px }                        /* moins d'espace */

/* liens = texte simple (pas de “pill”) */
.md-links a{
  background:none !important;
  border:0 !important;
  padding:0 !important;
  border-radius:0 !important;
  font-weight:600;
  color:rgba(14,43,76,.92);                  /* navy adouci */
}

/* hover/active sobres */
.md-links a:hover{ color:var(--med-navy) }
.md-links a.is-active{
  color:var(--med-navy); position:relative;
}
.md-links a.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px;
  height:2px; background:var(--med-turq); border-radius:2px;
}

/* CTA plus compacts */
.btn--sm{ padding:.56rem .95rem; font-weight:800 }
.md-right{ gap:12px }

/* lien Employeurs discret (plus de style “pill”) */
.link-quiet{
  color:rgba(14,43,76,.8);
  text-decoration:none; font-weight:700;
}
.link-quiet:hover{ color:var(--med-navy); text-decoration:underline }

/* header encore plus léger visuellement */
.md-header{
  background:rgba(255,255,255,.92);
  -webkit-backdrop-filter:saturate(140%) blur(6px);
  backdrop-filter:saturate(140%) blur(6px);
  box-shadow:0 1px 8px rgba(0,0,0,.04);
}

/* Mobile: on garde ta logique, mais on évite les “pills” aussi */
@media (max-width: 992px){
  .md-links a{ padding:.2rem 0 !important }
  .role-switch.link-quiet{ width:100%; text-align:center; padding:.4rem 0 }
}

/* ===== HEADER EMPLOYEUR ===== */
.md-header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  position:fixed; top:0; left:0; right:0; z-index:9999;
}

/* couleurs CTA spécifiques */
.md-right .btn--primary{
  background: var(--med-turq);
  color: var(--med-navy);
  font-weight:700;
}
.md-right .btn--primary:hover{
  background: var(--med-turq-600);
}

.md-right .btn--ghost{
  color: var(--med-navy);
  border:2px solid var(--med-navy);
}
.md-right .btn--ghost:hover{
  background: var(--med-navy);
  color:#fff;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-44f22dc *//* ===== HERO EMPLOYEUR ===== */
.hero-employeur{
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
.hero-employeur::before{
  content:""; position:absolute; right:-10%; top:-10%;
  width:40vw; max-width:520px; aspect-ratio:1/1;
  background: radial-gradient(closest-side, rgba(58,211,212,.16), transparent 70%);
  pointer-events:none;
}

.hero-employeur__wrap{
  display:grid; align-items:center; gap:40px;
  grid-template-columns: 1.05fr min(520px, 45vw);
}

.hero-employeur__text{ max-width:52ch }
.hero-employeur__text h1{
  margin:0 0 .5rem; color:#06376d; font-weight:800;
  font-size:clamp(1.9rem, 3vw, 2.6rem); line-height:1.15;
}
.hero-employeur__text .lead{
  margin:0 0 1rem; color:#4a5260;
  font-size:clamp(1rem, 1.2vw, 1.08rem);
}

.hero-employeur__cta{ display:flex; gap:12px; flex-wrap:wrap; margin:.6rem 0 .4rem }
.hero-employeur .btn{ font-weight:800; border-radius:12px; padding:.9rem 1.4rem }
.hero-employeur .btn--primary{ background:#3ad3d4; color:#06376d; box-shadow:0 8px 20px rgba(6,55,109,.10) }
.hero-employeur .btn--primary:hover{ filter:brightness(.95) }
.hero-employeur .btn--ghost{ color:#06376d; border:2px solid #06376d }
.hero-employeur .btn--ghost:hover{ background:#06376d; color:#fff }

.hero-employeur__ticks{
  list-style:none; padding:0; margin:.2rem 0 0;
  display:flex; gap:16px; flex-wrap:wrap; color:#22364a; font-size:.92rem;
}
.hero-employeur__ticks li{
  position:relative; padding-left:20px;
}
.hero-employeur__ticks li::before{
  content:""; position:absolute; left:0; top:.45rem;
  width:10px; height:10px; border-radius:50%;
  background:#3ad3d4;
}

.hero-employeur__media{
  margin:0; position:relative; height: clamp(360px, 48vw, 560px);
  border-radius:22px 0 0 22px; overflow:hidden;
  box-shadow:0 18px 44px rgba(6,55,109,.16);
  border:1px solid rgba(6,55,109,.10);
}
.hero-employeur__media img{
  width:100%; height:100%; object-fit:cover; object-position: 45% 50%;
  display:block;
}

/* MOBILE : image d’abord */
@media (max-width: 992px){
  .hero-employeur{ padding: clamp(36px, 8vw, 64px) 0 }
  .hero-employeur__wrap{ grid-template-columns:1fr; gap:22px }
  .hero-employeur__media{ order:1; height: clamp(260px, 54vw, 380px); border-radius:18px }
  .hero-employeur__text{ order:2; text-align:center; margin:0 auto }
  .hero-employeur__cta .btn{ width:100%; max-width:340px }
  .hero-employeur__ticks{ justify-content:center }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-51af320 *//* ===== Section Comment ça marche (Employeur) ===== */
.how-it-works-employeur{
  background:#fff;
  padding: clamp(50px, 8vw, 90px) 0;
  text-align:center;
}

.how-it-works-employeur .section-title{
  font-size:clamp(1.6rem, 2.3vw, 2rem);
  font-weight:800;
  color:#06376d;
  margin:0 0 2.2rem;
}

.steps__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.step{
  background:#f9fafc;
  border-radius:14px;
  padding:28px 20px;
  box-shadow:0 6px 16px rgba(6,55,109,.05);
  transition:.25s;
}
.step:hover{ transform:translateY(-4px); box-shadow:0 10px 24px rgba(6,55,109,.1) }

.step-num{
  width:42px; height:42px;
  margin:0 auto 12px;
  border-radius:50%;
  background:#3ad3d4; color:#06376d;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1.1rem;
}

.step h3{
  margin:.4rem 0 .3rem;
  font-size:1.05rem;
  font-weight:700;
  color:#06376d;
}
.step p{
  margin:0;
  font-size:.9rem;
  color:#4a5260;
}

/* responsive */
@media(max-width:992px){
  .steps__grid{ grid-template-columns:1fr }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c6507eb *//* ===== Tarifs Employeurs ===== */
.pricing-employeur{
  background:#f9fafc;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align:center;
}
.pricing-employeur .section-title{
  color:#06376d;
  font-weight:800;
  margin-bottom:.4rem;
}
.pricing-employeur .section-subtitle{
  color:#4a5260;
  margin:0 0 2rem;
  font-size:.95rem;
}

.pricing__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.pricing-card{
  background:#fff;
  border:1px solid rgba(6,55,109,.08);
  border-radius:16px;
  padding:32px 24px;
  box-shadow:0 8px 22px rgba(6,55,109,.06);
  display:flex; flex-direction:column; align-items:center;
  transition:.25s;
}
.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(6,55,109,.1);
}
.pricing-card h3{
  font-size:1.2rem; font-weight:700; margin:0 0 .5rem; color:#06376d;
}
.pricing-card .price{
  font-size:1.4rem; font-weight:800; color:#3ad3d4;
  margin:0 0 1.2rem;
}
.pricing-card ul{
  list-style:none; padding:0; margin:0 0 1.5rem;
}
.pricing-card ul li{
  margin:.4rem 0; font-size:.92rem; color:#4a5260;
}
.pricing-card .btn{ font-weight:700; padding:.8rem 1.2rem; border-radius:12px }

/* plan mis en avant */
.pricing-card.featured{
  border:2px solid #3ad3d4;
  box-shadow:0 12px 32px rgba(58,211,212,.15);
  transform:scale(1.03);
}

/* responsive */
@media(max-width:992px){
  .pricing__grid{ grid-template-columns:1fr }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f93126f *//* ===== Confiance (logos + témoignages) ===== */
.trust-employeur{
  background:#fff;
  padding: clamp(60px, 8vw, 100px) 0;
  text-align:center;
}
.trust-employeur .section-title{
  font-size:clamp(1.6rem,2.3vw,2rem);
  font-weight:800;
  color:#06376d;
  margin:0 0 2rem;
}

/* Logos */
.trust-logos{
  display:flex; flex-wrap:wrap;
  justify-content:center; gap:32px;
  margin-bottom:3rem;
}
.trust-logos img{
  max-height:50px; width:auto; opacity:.75;
  transition:.2s;
}
.trust-logos img:hover{ opacity:1 }

/* Témoignages */
.trust-testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testimonial{
  background:#f9fafc;
  border:1px solid rgba(6,55,109,.08);
  border-radius:14px;
  padding:24px 18px;
  box-shadow:0 6px 16px rgba(6,55,109,.06);
}
.testimonial p{
  font-size:.95rem; color:#22364a; margin:0 0 .6rem;
  font-style:italic;
}
.testimonial span{
  font-size:.85rem; color:#4a5260;
}

/* responsive */
@media(max-width:992px){
  .trust-testimonials{ grid-template-columns:1fr }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1b10d72 *//* ===== CTA final employeur ===== */
.cta-final-employeur{
  background: linear-gradient(135deg, #3ad3d4, #18b9b9);
  padding: clamp(60px, 9vw, 120px) 0;
  text-align:center;
  color:#06376d;
}
.cta-final__wrap h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:800;
  margin:0 0 .6rem;
}
.cta-final__wrap p{
  font-size:1.05rem;
  margin:0 0 1.4rem;
  color:#06376d;
  opacity:.9;
}
.cta-final__wrap .btn{
  background:#fff;
  color:#06376d;
  font-weight:800;
  padding:1rem 1.6rem;
  border-radius:12px;
  font-size:1.05rem;
  box-shadow:0 8px 20px rgba(0,0,0,.1);
}
.cta-final__wrap .btn:hover{
  background:#f0f0f0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1316767 *//* ===== Footer Employeur ===== */
.md-footer{
  background:#fff url('https://www.transparenttextures.com/patterns/white-wall.png'); /* texture légère */
  padding:60px 20px 20px;
  border-top:1px solid var(--med-gray-200);
  font-size:.95rem;
}
.md-footer__grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:30px;
  margin-bottom:40px;
}
.footer-logo{ height:40px; margin-bottom:.6rem }
.tagline{ color:#4a5260; font-size:.9rem; margin:0 0 1rem }
.socials a{
  margin-right:8px; color:var(--med-navy); text-decoration:none;
  font-size:1.1rem; font-weight:700;
}
.socials a:hover{ color:var(--med-turq) }

.md-footer__col h4{
  margin:0 0 .8rem; font-weight:700; font-size:1rem; color:#06376d;
}
.md-footer__col a{
  display:block; margin:.35rem 0; text-decoration:none; color:#4a5260;
}
.md-footer__col a:hover{ color:var(--med-turq) }

/* Bas de page */
.md-footer__bottom{
  border-top:1px solid var(--med-gray-200);
  padding-top:14px; margin-top:10px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:10px;
  font-size:.85rem; color:#667;
}
.md-footer__bottom .links a{
  margin-left:14px; color:#667; text-decoration:none;
}
.md-footer__bottom .links a:hover{ color:#06376d }

/* Responsive */
@media(max-width:992px){
  .md-footer__grid{ grid-template-columns:1fr 1fr }
}
@media(max-width:600px){
  .md-footer__grid{ grid-template-columns:1fr }
  .md-footer__bottom{ flex-direction:column; text-align:center }
}/* End custom CSS */