/* ============================================================
   LOCATION EN FÊTE — CSS PAGE PROFESSIONNELS
   Fichier : lef-pro.css
   ============================================================ */

.lef-pro *{margin:0;padding:0;box-sizing:border-box;}
.lef-pro{overflow-x:hidden;font-family:'Poppins',sans-serif;color:#2D3436;}
.lef-pro a{text-decoration:none;transition:all .3s;}

/* ========== HERO ========== */
.lef-pro-hero{
  position:relative;padding:9rem 2rem 6rem;text-align:center;overflow:hidden;
  background:linear-gradient(135deg,#3AA6B9 0%,#2997AA 50%,#1e6d7a 100%);
}
.lef-pro-hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(255,255,255,.08),transparent 50%),
    radial-gradient(circle at 80% 30%,rgba(253,203,110,.1),transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lef-pro-hero-content{position:relative;z-index:2;max-width:750px;margin:0 auto;}
.lef-pro-hero .lef-pro-badge{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.45rem 1.3rem;background:rgba(255,255,255,.15);backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.2);border-radius:50px;
  font-size:.8em;font-weight:600;color:#fff;margin-bottom:1.2rem;
}
.lef-pro-hero h1{
  font-size:clamp(2rem,5vw,3.2rem);font-weight:800;color:#fff;
  line-height:1.2;margin-bottom:1rem;
}
.lef-pro-hero h1 span{color:#FFEAA7;}
.lef-pro-hero p{
  font-size:1.05em;color:rgba(255,255,255,.85);line-height:1.7;
  max-width:600px;margin:0 auto 2rem;
}
.lef-pro-hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.lef-pro-hero-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2.2rem;background:#3AA6B9;color:#fff !important;
  border-radius:50px;font-weight:700;font-size:.9em;
  transition:all .3s;box-shadow:0 6px 25px rgba(58,166,185,.35);
}
.lef-pro-hero-btn:hover{background:#2997AA;transform:translateY(-3px);color:#fff !important;}
.lef-pro-hero-btn-outline{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2.2rem;background:transparent;color:#fff !important;
  border:2px solid rgba(255,255,255,.2);
  border-radius:50px;font-weight:600;font-size:.9em;transition:all .3s;
}
.lef-pro-hero-btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.05);color:#fff !important;}

/* ========== AVANTAGES ========== */
.lef-pro-advantages{
  padding:5rem 2rem;
  background:linear-gradient(180deg,#f0f8f9 0%,#fff 100%);
}
.lef-pro-adv-header{text-align:center;margin-bottom:3rem;}
.lef-pro-adv-header h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.5rem;}
.lef-pro-adv-header h2 span{color:#3AA6B9;}
.lef-pro-adv-header p{color:#636E72;max-width:550px;margin:0 auto;font-size:.92em;line-height:1.7;}

.lef-pro-adv-grid{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
}
.lef-pro-adv-card{
  background:#fff;border-radius:20px;padding:2.5rem 2rem;text-align:center;
  border:2px solid #CAE6E8;transition:all .4s;
  box-shadow:0 4px 20px rgba(0,0,0,.04);
}
.lef-pro-adv-card:hover{
  transform:translateY(-6px);box-shadow:0 15px 40px rgba(58,166,185,.12);
  border-color:#3AA6B9;
}
.lef-pro-adv-icon{
  width:65px;height:65px;margin:0 auto 1.2rem;
  background:linear-gradient(135deg,#EEF8F9,#E0F2F4);
  border-radius:18px;display:flex;align-items:center;justify-content:center;
  font-size:1.6em;transition:all .4s;
}
.lef-pro-adv-card:hover .lef-pro-adv-icon{
  background:linear-gradient(135deg,#3AA6B9,#2997AA);
  transform:scale(1.08);
}
.lef-pro-adv-card h3{font-size:1em;font-weight:700;margin-bottom:.5rem;}
.lef-pro-adv-card p{font-size:.85em;color:#636E72;line-height:1.6;}

/* ========== PROFILS ========== */
.lef-pro-profiles{
  padding:5rem 2rem;background:#fff;
}
.lef-pro-profiles-header{text-align:center;margin-bottom:3rem;}
.lef-pro-profiles-header h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.5rem;}
.lef-pro-profiles-header h2 span{color:#3AA6B9;}
.lef-pro-profiles-header p{color:#636E72;max-width:550px;margin:0 auto;font-size:.92em;line-height:1.7;}

.lef-pro-profiles-grid{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
}
.lef-pro-profile{
  background:#f9fcfd;border-radius:20px;padding:2.5rem;
  border:2px solid #CAE6E8;transition:all .4s;
  display:flex;gap:1.5rem;align-items:flex-start;
}
.lef-pro-profile:hover{border-color:#3AA6B9;transform:translateY(-4px);box-shadow:0 12px 35px rgba(58,166,185,.1);}
.lef-pro-profile-icon{
  width:55px;height:55px;min-width:55px;
  background:linear-gradient(135deg,#EEF8F9,#E0F2F4);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  font-size:1.5em;
}
.lef-pro-profile h3{font-size:1em;font-weight:700;margin-bottom:.4rem;}
.lef-pro-profile p{font-size:.85em;color:#636E72;line-height:1.6;}
.lef-pro-profile-highlight{
  display:inline-block;margin-top:.5rem;
  font-size:.75em;font-weight:600;color:#2997AA;
  padding:.2rem .7rem;background:#EEF8F9;border-radius:50px;
}

/* ========== COMMENT ÇA MARCHE ========== */
.lef-pro-how{
  padding:5rem 2rem;
  background:#f9fcfd;
  background-image:
    radial-gradient(circle at 15% 85%,rgba(58,166,185,.05) 0%,transparent 45%),
    radial-gradient(circle at 85% 15%,rgba(253,203,110,.04) 0%,transparent 45%);
}
.lef-pro-how-header{text-align:center;margin-bottom:3rem;}
.lef-pro-how-header h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:.5rem;}
.lef-pro-how-header h2 span{color:#3AA6B9;}

.lef-pro-steps{
  max-width:900px;margin:0 auto;
  display:flex;flex-direction:column;gap:1.2rem;
}
.lef-pro-step{
  display:flex;align-items:flex-start;gap:1.2rem;
  background:#fff;border-radius:16px;padding:1.5rem 2rem;
  border:2px solid #CAE6E8;transition:all .3s;
}
.lef-pro-step:hover{border-color:#3AA6B9;transform:translateX(4px);}
.lef-pro-step-num{
  width:44px;height:44px;min-width:44px;
  background:linear-gradient(135deg,#3AA6B9,#2997AA);color:#fff;
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  font-size:1em;font-weight:800;
}
.lef-pro-step-content h3{font-size:.95em;font-weight:700;margin-bottom:.25rem;}
.lef-pro-step-content p{font-size:.82em;color:#636E72;line-height:1.6;}

/* ========== TÉMOIGNAGE / CONFIANCE ========== */
.lef-pro-trust{
  padding:4rem 2rem;background:#fff;text-align:center;
}
.lef-pro-trust-inner{
  max-width:800px;margin:0 auto;
  background:linear-gradient(135deg,rgba(58,166,185,.06),rgba(253,203,110,.04));
  border:2px solid #CAE6E8;border-radius:24px;
  padding:3rem 3.5rem;
}
.lef-pro-trust-inner h2{font-size:1.3em;font-weight:800;margin-bottom:1rem;}
.lef-pro-trust-inner h2 span{color:#3AA6B9;}
.lef-pro-trust-facts{
  display:flex;justify-content:center;gap:3rem;margin-top:1.5rem;flex-wrap:wrap;
}
.lef-pro-trust-fact{text-align:center;}
.lef-pro-trust-num{font-size:2rem;font-weight:800;color:#3AA6B9;display:block;}
.lef-pro-trust-label{font-size:.75em;color:#636E72;}

/* ========== CTA ========== */
.lef-pro-cta{
  padding:4rem 2rem;text-align:center;
  background:linear-gradient(135deg,#3AA6B9 0%,#2997AA 100%);
  position:relative;overflow:hidden;
}
.lef-pro-cta::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lef-pro-cta-inner{position:relative;z-index:2;max-width:700px;margin:0 auto;}
.lef-pro-cta h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;color:#fff;margin-bottom:.8rem;}
.lef-pro-cta p{color:rgba(255,255,255,.8);margin-bottom:2rem;line-height:1.7;font-size:.95em;}
.lef-pro-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.lef-pro-cta-btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2.2rem;background:#fff;color:#3AA6B9 !important;
  border-radius:50px;font-weight:700;font-size:.9em;
  transition:all .3s;box-shadow:0 6px 25px rgba(0,0,0,.15);
}
.lef-pro-cta-btn-primary:hover{transform:translateY(-3px);color:#2997AA !important;}
.lef-pro-cta-btn-secondary{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2.2rem;background:transparent;color:#fff !important;
  border:2px solid rgba(255,255,255,.3);
  border-radius:50px;font-weight:600;font-size:.9em;transition:all .3s;
}
.lef-pro-cta-btn-secondary:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff !important;}

/* ========== RESPONSIVE ========== */
@media(max-width:1100px){
  .lef-pro-adv-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
  .lef-pro-adv-grid{grid-template-columns:1fr;max-width:400px;}
  .lef-pro-profiles-grid{grid-template-columns:1fr;}
  .lef-pro-hero{padding:6rem 1.5rem 4rem;}
  .lef-pro-advantages,.lef-pro-profiles,.lef-pro-how,.lef-pro-trust{padding:3rem 1.5rem;}
  .lef-pro-cta{padding:3rem 1.5rem;}
  .lef-pro-trust-inner{padding:2rem 1.5rem;}
  .lef-pro-profile{flex-direction:column;align-items:center;text-align:center;}
}