/* ============================================
    Modale CVR Demande de devis Maalam.ma
=============================================== */

.mlListingQuoteModal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}

.mlListingQuoteModal.is-open{
  display:block;
}

.mlListingQuoteModal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.mlListingQuoteModal__card{
  position:relative;
  width:min(720px, calc(100% - 24px));
  height:min(720px, calc(100vh - 24px));
  margin:12px auto;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
}

.mlListingQuoteModal__progressTop{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:8px;
  background:#f1f1f1;
  z-index:3;
}

.mlListingQuoteModal__progressFill{
  display:block;
  width:25%;
  height:100%;
  background:linear-gradient(90deg, #f64632, #ff7a2f);
  border-radius:0 999px 999px 0;
  transition:width .48s ease;
}

.mlListingQuoteModal__close{
  position:absolute;
  top:22px;
  right:24px;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#3a3a3a;
  font-size:24px;
  cursor:pointer;
  z-index:4;
  transition:all .18s ease;
}

.mlListingQuoteModal__close:hover{
  background-color:rgba(107,109,111,.12);
  color:#2d2e2f;
}

.mlListingQuoteModal__body{
  padding:35px 24px 24px;
  height:100%;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.mlListingQuoteForm{
  flex:1 1 auto;
  min-height:0;
  display:flex;
  flex-direction:column;
}

.mlfStages{
  flex:1 1 auto;
  min-height:0;
  display:block;
}

.mlfStep{
  display:none;
  height:100%;
}

.mlfStep.is-active{
  display:block;
}

.mlfStep__inner{
  height:100%;
  display:flex;
  flex-direction:column;
  min-height:0;
}

.mlfStep__head{
  margin-bottom:18px;
  flex:0 0 auto;
  text-align:left;
}

.mlfStep__kicker{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 10px;
  margin-bottom:10px;
  border-radius:999px;
  background:rgba(246,70,50,.08);
  color:#f64632;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.mlfStep__title{
  font-size:28px;
  line-height:1.2;
  font-weight:900;
  color:#1f2937;
  padding-right:60px;
  text-align:left;
  letter-spacing:-.3px;
}

.mlfStep__desc{
  margin:8px 0 0;
  color:#607084;
  font-size:14px;
  line-height:1.45;
  text-align:left;
}

.mlfStep__content{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding-bottom:12px;
  padding-right:4px;
  scrollbar-width:thin;
  scrollbar-color:#b8bec7 transparent;
}

.mlfStep__content::-webkit-scrollbar{
  width:8px;
}

.mlfStep__content::-webkit-scrollbar-track{
  background:transparent;
}

.mlfStep__content::-webkit-scrollbar-thumb{
  background:#b8bec7;
  border-radius:999px;
}

.mlfStep__content::-webkit-scrollbar-thumb:hover{
  background:#9ea6b0;
}

.mlfTiles{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  padding:2px 0;
}

.mlfTile{
  position:relative;
  border:1px solid rgba(16,24,40,.12);
  background:#fff;
  border-radius:16px;
  padding:10px 14px;
  cursor:pointer;
  text-align:left;
  display:flex;
  align-items:center;
  gap:10px;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
  min-height:78px;
}

.mlfTile:hover{
  transform:translateY(-1px);
  border-color:rgba(246,70,40,.35);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.mlfTile__ic{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(16,24,40,.08);
  color:#516273;
  flex:0 0 auto;
  transition:background .14s ease, color .14s ease;
}

.mlfTile__tx{
  font-weight:900;
  font-size:14px;
  color:#0b1b33;
  line-height:1.2;
  flex:1 1 auto;
}

.mlfTile__ok{
  width:32px;
  height:32px;
  border-radius:50px;
  display:grid;
  place-items:center;
  background:rgba(16,24,40,.08);
  color:#516273;
  flex:0 0 auto;
  transition:background .14s ease, color .14s ease;
}

.mlfTile.is-selected{
  border-color:rgba(246,70,40,.55);
  background:rgba(246,70,40,.06);
  box-shadow:0 10px 26px rgba(246,70,40,.10);
}

.mlfTile.is-selected .mlfTile__ic{
  background:rgba(246,70,40,.18);
  color:#f64632;
}

.mlfTile.is-selected .mlfTile__ok{
  background:rgba(246,70,40,.20);
  color:#f64632;
}

.mlfOptions{
  display:flex;
  flex-direction:column;
}

.mlfOptions--rows{
  border-top:1px solid #ececec;
}

.mlfOptionRow{
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
  min-height:70px;
  padding:0 18px;
  border:0;
  border-bottom:1px solid #ececec;
  background:#fff;
  text-align:left;
  cursor:pointer;
  font-size:16px;
  color:#64748b;
  transition:background .18s ease, color .18s ease;
}

.mlfOptionRow:hover{
  background:#fafafa;
}

.mlfOptionRow__radio{
  width:22px;
  height:22px;
  border-radius:50%;
  border:1.5px solid #c4c4c4;
  position:relative;
  flex:0 0 auto;
}

.mlfOptionRow.is-selected .mlfOptionRow__radio{
  border-color:#f64632;
}

.mlfOptionRow.is-selected .mlfOptionRow__radio:after{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:#f64632;
}

.mlfOptionRow.is-selected{
  color:#334155;
}

.mlfField{
  margin-bottom:14px;
}

.mlfLabel{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:900;
  color:#24364a;
  margin:0 0 7px;
  text-align:left;
}

.mlfLabel i{
  color:#6b7c8f;
}

.mlfTextarea{
  width:100%;
  min-height:190px;
  resize:vertical;
  border:1px solid rgba(16,24,40,.14);
  border-radius:14px;
  padding:16px;
  font-size:15px;
  outline:none;
  color:#0b1b33;
  line-height:1.6;
}

.mlfTextarea:focus{
  border-color:rgba(246,70,50,.55);
  box-shadow:0 0 0 4px rgba(246,70,50,.12);
}

.mlfGrid2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.mlfInput{
  width:100%;
  height:54px;
  border:1px solid rgba(16,24,40,.14);
  border-radius:14px;
  padding:0 16px;
  font-size:15px;
  outline:none;
  color:#0b1b33;
}

.mlfInput:focus{
  border-color:rgba(246,70,50,.55);
  box-shadow:0 0 0 4px rgba(246,70,50,.12);
}

.mlfCompany.is-hidden{
  display:none;
}

.mlfToggle{
  display:flex;
  gap:10px;
  margin:6px 0 16px;
}

.mlfToggle__opt{
  flex:1;
  height:54px;
  border:1px solid rgba(16,24,40,.12);
  background:#fff;
  border-radius:14px;
  padding:0 16px;
  cursor:pointer;
  font-weight:900;
  color:#0b1b33;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.mlfToggle__opt i{
  color:#6b7c8f;
  font-size:15px;
  line-height:1;
}

.mlfToggle__opt.is-active{
  border-color:rgba(246,70,50,.55);
  box-shadow:0 10px 26px rgba(246,70,50,.04);
  background:rgba(246,70,50,.06);
}

.mlfToggle__opt.is-active i{
  color:#f64632;
}

.mlfNav{
  flex:0 0 auto;
  margin-top:auto;
  padding-top:16px;
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(16,24,40,.06);
  background:#fff;
}

.mlfNav--end{
  justify-content:flex-end;
}

.mlfBtn{
  min-width:188px;
  padding:0 24px;
  height:48px;
  border:none;
  border-radius:999px;
  background:#efefef;
  color:#1f2937;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.mlfBtn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.mlfBtn--primary{
  border:0;
  color:#fff;
  background:#f64632;
  box-shadow:0 14px 28px rgba(246,70,50,.08);
}

.mlfBtn--primary:hover{
  box-shadow:0 16px 34px rgba(246,70,50,.12);
}

.mlfErr{
  display:block;
  font-size:13px;
  color:#b91c1c;
  margin-top:8px;
  font-weight:700;
}

.mlfSuccess{
  flex:1 1 auto;
  min-height:0;
  display:none;
  align-items:flex-start;
  justify-content:center;
  padding-top:80px;
  animation:mlfFade .22s ease;
}

.mlfSuccess.is-visible{
  display:flex;
}

.mlfSuccess__inner{
  width:100%;
  max-width:620px;
  margin:0 auto;
  text-align:center;
}

.mlfSuccess__ring{
  width:84px;
  height:84px;
  margin:0 auto 14px;
  border-radius:100px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#f64632,#ff7a2f);
  box-shadow:0 16px 40px rgba(246,70,40,.22);
}

.mlfSuccess__ring i{
  font-size:38px;
  color:#fff;
}

.mlfSuccess__title{
  margin:0 0 8px;
  font-size:24px;
  font-weight:900;
  color:#0b1b33;
}

.mlfSuccess__text{
  margin:0 auto;
  max-width:520px;
  font-size:14px;
  line-height:1.6;
  color:#607084;
}

.mlfSuccess__actions{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:12px;
}

body.mlListingQuoteModalOpen{
  overflow:hidden;
}

@keyframes mlfFade{
  from{ opacity:0; transform:translateY(4px); }
  to{ opacity:1; transform:translateY(0); }
}


@media (max-width: 767px){

  .mlListingQuoteModal__card{
    width:calc(100% - 12px);
    height:88vh;
    margin:6px auto;
    border-radius:8px;
  }

  .mlListingQuoteModal__body{
    padding:30px 18px 20px;
  }

  .mlfStep__title{
    font-size:22px;
    padding-right:44px;
  }

  .mlfGrid2,
  .mlfTiles{
    grid-template-columns:1fr;
    gap:6px;
  }

  .mlfInput{
    height:48px;
  }

  .mlfToggle__opt{
    height:48px;
  }

  .mlfStep__content{
    padding-right:2px;
  }

  .mlfOptionRow{
    min-height:60px;
  }

  .mlfTile{
    min-height:60px;
  }

  .mlfNav{
    flex-direction:column-reverse;
    align-items:stretch;
  }

  .mlfBtn{
    min-width:0;
    width:100%;
  }

  .mlfSuccess__actions{
    flex-direction:column-reverse;
  }

  .mlfSuccess{
    padding-top:56px;
  }
}

/* ============================================
    Modale CVR Demande de devis Maalam.ma END
=============================================== */


/* ============================================================
   2) LISTING — Quote Modal (LPQ)
   ============================================================ */

/* Modal wrapper */
.lpqModal{
  position:fixed;
  inset:0;
  z-index:5000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.lpqModal.is-open{ display:flex; }

.lpqModal__overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.38);
}

.lpqModal__card{
  position:relative;
  width:100%;
  max-width:460px;
  background:#fff;
  border-radius:16px;
  border:1px solid #eef2f7;
  box-shadow:0 30px 80px rgba(15,23,42,.25);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  max-height:94vh;
}

.lpqModal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 16px;
  border-bottom:1px solid #eef2f7;
}

.lpqModal__headLeft{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

/* Logo + status dot */
.lpqModal__proLogoWrap{
  position:relative;
  width:36px;
  height:36px;
  flex:0 0 auto;
}

.lpqModal__proLogo{
  width:36px;
  height:36px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid #eef2f7;
  background:#f8fafc;
  display:block;
}

.lpqModal__dot{
  position:absolute;
  right:-1px;
  bottom:-1px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 10px 22px rgb(15 123 255 / 4%), 0 0 0 1.6px rgb(255 255 255);
}

/* optionnel: état offline */
.lpqModal__dot.is-off{
  background:#94a3b8;
}

.lpqModal__titles{
  display:flex;
  flex-direction:column;
  gap:0;
  min-width:0;
  text-align:left;
}

.lpqModal__title{
  font-weight:800;
  color:#0f172a;
  font-size:18px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.lpqModal__subtitle{
  font-weight:400;
  color:#94a3b8;
  font-size:13px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.lpqModal__close{
  width:32px;
  height:32px;
  border-radius:10px;
  border:1px solid #e6ebf2;
  background:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lpqModal__close:hover{ background:#f8fafc; }
.lpqModal__close:active{ transform: translateY(0); }

.lpqModal__body{
  padding:18px;
  overflow:auto;
  text-align:left;
}

/* form */
.lpqField{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}

.lpqLabel{
  font-weight:800;
  font-size:13px;
  color:#0f172a;
}

/* étoile required */
.crm-req {
  color:#ef4444;
  font-weight:700;
  margin-left:2px;
}

/* wrappers */
.lpqControl{
  position:relative;
  width:100%;
}

/* icône dans input */
.lpqIcon{
  position:absolute;
  left:14px;
  top:50%;
  transform: translateY(-50%);
  font-size:12px;
  color:#94a3b8;
  pointer-events:none;
}

/* Inputs / textarea full width */
.lpqInput,
.lpqTextarea{
  width:100%;
  box-sizing:border-box;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

/* input */
.lpqInput{
  height:42px;
  border:1px solid #e6ebf2;
  border-radius:12px;
  padding:0 12px;
  padding-left:38px; /* place icône */
  outline:0;
  font-size:13px;
  background:#fff;
}
.lpqInput:focus{
  border-color:rgba(246,70,40,.55);
  box-shadow:0 0 0 4px rgba(246,70,40,.12);
}

/* textarea */
.lpqTextarea{
  border:1px solid #e6ebf2;
  border-radius:12px;
  padding:10px 12px;
  outline:0;
  font-size:14px;
  min-height:110px;
  resize:none;        /* auto-grow via JS */
  overflow:hidden;    /* passe à auto quand trop long */
  background:#fff;
  line-height:1.45;
}
.lpqTextarea:focus{
  border-color:rgba(246,70,40,.55);
  box-shadow:0 0 0 4px rgba(246,70,40,.12);
}

/* textarea: icône alignée en haut */
.lpqControl--textarea .lpqIcon{
  top:14px;
  transform:none;
}

/* optionnel : icône + sombre au focus */
.lpqControl:focus-within .lpqIcon{
  color:#64748b;
}

/* scrollbar slim (Firefox) */
.lpqTextarea{
  scrollbar-width: thin;
  scrollbar-color: rgba(148,163,184,.9) transparent;
}

/* scrollbar slim (Chrome/Edge/Safari) */
.lpqTextarea::-webkit-scrollbar{ width:8px; }
.lpqTextarea::-webkit-scrollbar-track{ background:transparent; }
.lpqTextarea::-webkit-scrollbar-thumb{
  background: rgba(148,163,184,.85);
  border-radius:10px;
  border:2px solid transparent;
  background-clip: padding-box;
}
.lpqTextarea::-webkit-scrollbar-thumb:hover{
  background: rgba(148,163,184,1);
  border:2px solid transparent;
  background-clip: padding-box;
}

.lpqFoot{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:10px;
}

.lpqBtn{
  height:42px;
  padding:0 14px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lpqBtn--ghost{
  background:#fff;
  border:1px solid #e6ebf2;
}
.lpqBtn--ghost:hover{ background:#f8fafc; transform: translateY(-1px); }
.lpqBtn--ghost:active{ transform: translateY(0); }

.lpqBtn--primary{
  background:#0a0c0e;
  color:#fff;
}
.lpqBtn--primary:hover{ background:#f64628; transform: translateY(-1px); }
.lpqBtn--primary:active{ transform: translateY(0); }

/* lock scroll page */
html.lpq-lock, body.lpq-lock{ overflow:hidden !important; }
/* ============================================================
   2) LISTING — Quote Modal (LPQ) END
   ============================================================ */
   
   
   
  /* ============================================================
   MAALAM DECISION FUNNEL
   Brand primary : #F64632
   ============================================================ */

.mlDecisionFunnel{
  --ml-red:#F64632;
  --ml-red-dark:#DF3422;
  --ml-red-soft:#FFF4F2;
  --ml-red-soft-2:#FFEBE7;

  --ml-navy:#071A33;
  --ml-text:#101828;
  --ml-muted:#667085;
  --ml-muted-2:#98A2B3;

  --ml-line:#E9EDF2;
  --ml-soft:#F7F9FC;
  --ml-white:#FFFFFF;

  --ml-radius-lg:30px;
  --ml-radius-md:22px;
  --ml-radius-sm:16px;

  color:var(--ml-text);
  background:#fff;

  overflow:hidden;
}


.mlDecisionFunnel *,
.mlDecisionFunnel *::before,
.mlDecisionFunnel *::after{
  box-sizing:border-box;
}


.mlDfContainer{
  width:min(1280px, calc(100% - 40px));

  margin:0 auto;
}


.mlDecisionFunnel h2,
.mlDecisionFunnel h3,
.mlDecisionFunnel p{
  margin-top:0;
}


.mlDecisionFunnel button{
  font-family:inherit;
}



/* ============================================================
   SEO SEMANTICS

   strong is deliberately NOT used as a generic visual component.
   It is reserved for meaningful phrases / relevant query terms.
   ============================================================ */

.mlDecisionFunnel p strong{
  color:inherit;
  font-weight:750;
}



/* ============================================================
   SHARED
   ============================================================ */

.mlDfKicker{
  display:inline-flex;
  align-items:center;

  margin-bottom:15px;

  color:var(--ml-red);

  font-size:13px;
  line-height:1;

  font-weight:800;

  letter-spacing:.045em;
  text-transform:uppercase;
}


.mlDfKicker--light{
  color:#FFB4A9;
}


.mlDfSectionHead{
  max-width:780px;

  margin-bottom:52px;
}


.mlDfSectionHead--center{
  margin-left:auto;
  margin-right:auto;

  text-align:center;
}


.mlDfSectionHead h2{
  margin-bottom:16px;

  color:var(--ml-navy);

  font-size:clamp(34px,4vw,52px);
  line-height:1.06;

  letter-spacing:-1.7px;

  font-weight:800;
}


.mlDfSectionHead h2 span{
  color:var(--ml-red);
}


.mlDfSectionHead p{
  max-width:650px;

  margin:0 auto;

  color:var(--ml-muted);

  font-size:17px;
  line-height:1.7;
}



/* ============================================================
   BUTTONS
   ============================================================ */

.mlDfButton{
  min-height:54px;

  padding:0 23px;

  border:0;
  border-radius:14px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:11px;

  cursor:pointer;

  font-size:14px;
  font-weight:800;
  line-height:1;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}


.mlDfButton:hover{
  transform:translateY(-2px);
}


.mlDfButton i{
  font-size:12px;

  transition:
    transform .18s ease;
}


.mlDfButton:hover i{
  transform:translateX(3px);
}


.mlDfButton--primary{
  color:#fff;

  background:var(--ml-red);

  box-shadow:
    0 12px 28px rgba(246,70,50,.20);
}


.mlDfButton--primary:hover{
  background:var(--ml-red-dark);

  box-shadow:
    0 16px 34px rgba(246,70,50,.27);
}


.mlDfButton--white{
  color:var(--ml-navy);

  background:#fff;

  box-shadow:
    0 14px 30px rgba(0,0,0,.13);
}


.mlDfButton--large{
  min-height:60px;

  padding:0 29px;

  font-size:15px;
}



/* ============================================================
   SECTION 2
   HOW IT WORKS
   ============================================================ */

.mlHow{
  padding:105px 0;

  background:linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F8FAFC 100%
    );
}


.mlHow__steps{
  display:grid;

  grid-template-columns:
    1fr
    38px
    1fr
    38px
    1fr;

  align-items:center;

  gap:12px;
}


.mlHowCard{
  min-height:320px;

  padding:27px;

  border:1px solid #E6EBF1;
  border-radius:26px;

  background:#fff;

  box-shadow:
    0 10px 35px rgba(16,24,40,.035);

  text-align:left;

  position:relative;
}


.mlHowCard--featured{
  border-color:
    rgba(246,70,50,.25);

  box-shadow:
    0 22px 48px rgba(246,70,50,.10);
}


.mlHowCard__tag{
  position:absolute;

  top:-14px;
  right:20px;

  padding:7px 11px;

  border-radius:999px;

  color:#fff;

  background:var(--ml-red);

  font-size:10px;
  font-weight:800;

  letter-spacing:.02em;
}


.mlHowCard__top{
  margin-bottom:26px;

  display:flex;

  justify-content:space-between;
  align-items:center;
}


.mlHowCard__number{
  color:#D0D5DD;

  font-size:46px;

  font-weight:800;

  letter-spacing:-.04em;

  line-height:1;
}


.mlHowCard__icon{
  width:54px;
  height:54px;

  border-radius:17px;

  display:grid;
  place-items:center;

  color:var(--ml-red);

  background:var(--ml-red-soft);

  font-size:20px;
}


.mlHowCard h3{
  margin-bottom:11px;

  color:var(--ml-navy);

  font-size:20px;
  line-height:1.25;

  letter-spacing:-.45px;
}


.mlHowCard p{
  margin-bottom:25px;

  color:var(--ml-muted);

  font-size:15px;
  line-height:1.65;
}


.mlHowCard__meta{
  display:inline-flex;

  padding:8px 11px;

  border-radius:999px;

  color:#475467;

  background:#F6F7F9;

  font-size:11px;

  font-weight:700;
}


.mlHow__connector{
  color:#D0D5DD;

  text-align:center;
}


.mlHow__connector i{
  font-size:14px;
}


.mlHow__cta{
  margin-top:42px;

  display:flex;
  flex-direction:column;

  align-items:center;

  text-align:center;
}


.mlDfMicroTrust{
  margin-top:14px;

  display:flex;

  align-items:center;
  justify-content:center;

  gap:20px;

  color:#667085;

  font-size:11px;

  font-weight:600;
}


.mlDfMicroTrust span{
  display:flex;

  align-items:center;

  gap:6px;
}


.mlDfMicroTrust i{
  color:var(--ml-red);

  font-size:9px;
}





/* ============================================================
   SECTION 3
   RISK AMPLIFICATION
   ============================================================ */

.mlRisk{
  padding:112px 0;

  background:#fff;
}


.mlRisk__header{
  margin-bottom:49px;

  display:grid;

  grid-template-columns:
    minmax(0,1.05fr)
    minmax(350px,.75fr);

  gap:80px;

  align-items:end;
}


.mlRisk__headerCopy{
  text-align:left;
}


.mlRisk__headerCopy h2{
  max-width:680px;

  margin:0;

  color:var(--ml-navy);

  font-size:clamp(38px,4.5vw,51px);
  line-height:1.03;

  letter-spacing:-2px;

  font-weight:800;
}


.mlRisk__headerCopy h2 span{
  color:var(--ml-red);
}


.mlRisk__headerText{
  text-align:left;
}


.mlRisk__headerText p{
  margin:0;

  color:var(--ml-muted);

  font-size:16px;
  line-height:1.75;
}


.mlRisk__grid{
  display:grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap:14px;
}


.mlRiskCard{
  min-height:305px;

  padding:23px;

  border:
    1px solid #E7EBF0;

  border-radius:23px;

  display:flex;
  flex-direction:column;

  background:
    linear-gradient(
      150deg,
      #fff,
      #FCFDFE
    );

  box-shadow:
    0 10px 30px rgba(16,24,40,.035);

  position:relative;

  overflow:hidden;

  text-align:left;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


.mlRiskCard:hover{
  transform:translateY(-4px);

  border-color:
    rgba(246,70,50,.20);

  box-shadow:
    0 20px 45px rgba(16,24,40,.07);
}


.mlRiskCard--accent{
  border-color:
    rgba(246,70,50,.22);

  background:
    linear-gradient(
      145deg,
      #FFFDFC,
      #FFF5F2
    );
}


.mlRiskCard__top{
  margin-bottom:23px;

  display:flex;

  align-items:center;
  justify-content:space-between;
}


.mlRiskCard__icon{
  width:50px;
  height:50px;

  border-radius:15px;

  display:grid;
  place-items:center;

  color:var(--ml-red);

  background:var(--ml-red-soft);

  font-size:17px;
}


.mlRiskCard__tag{
  padding:6px 9px;

  border-radius:999px;

  color:#98A2B3;

  background:#F7F8FA;

  font-size:11px;

  font-weight:800;

  letter-spacing:.065em;

  text-transform:uppercase;
}


.mlRiskCard h3{
  margin-bottom:11px;

  color:var(--ml-navy);

  font-size:18px;
  line-height:1.23;

  letter-spacing:-.35px;
}


.mlRiskCard p{
  margin-bottom:22px;

  color:var(--ml-muted);

  font-size:14px;
  line-height:1.65;

  flex:1;
}


.mlRiskCard__impact{
  padding-top:15px;

  border-top:
    1px solid #EEF1F4;

  display:flex;

  align-items:flex-start;

  gap:8px;

  color:#475467;

  font-size:10.5px;
  line-height:1.45;

  font-weight:700;
}


.mlRiskCard__impact i{
  margin-top:2px;

  color:var(--ml-red);

  font-size:9px;
}



/* risk bridge */

.mlRisk__bridge{
  margin-top:25px;

  padding:19px 20px;

  border:
    1px solid rgba(246,70,50,.16);

  border-radius:20px;

  display:grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items:center;

  gap:15px;

  background:
    linear-gradient(
      100deg,
      #FFF7F5,
      #fff 70%
    );
}


.mlRisk__bridgeIcon{
  width:46px;
  height:46px;

  border-radius:14px;

  display:grid;
  place-items:center;

  color:#fff;

  background:var(--ml-red);

  font-size:15px;
}


.mlRisk__bridgeCopy{
  text-align:left;
}


.mlRisk__bridgeLabel{
  margin-bottom:3px;

  display:block;

  color:var(--ml-red);

  font-size:13px;

  font-weight:800;

  letter-spacing:.06em;

  text-transform:uppercase;
}


.mlRisk__bridgeCopy p{
  margin:0;

  color:#475467;

  font-size:14px;
  line-height:1.55;
}


.mlRisk__bridgeButton{
  min-height:47px;

  padding:0 17px;

  border:0;
  border-radius:12px;

  display:flex;
  align-items:center;

  gap:10px;

  color:#fff;

  background:var(--ml-navy);

  cursor:pointer;

  font-size:14px;

  font-weight:800;

  transition:
    transform .2s ease,
    background .2s ease;
}


.mlRisk__bridgeButton:hover{
  transform:translateY(-2px);

  background:#0B274A;
}





/* ============================================================
   SECTION 4
   OLD WAY VS MAALAM
   ============================================================ */

.mlCompare{
  padding:112px 0;

  background:#F8FAFC;
}


.mlCompare__grid{
  display:grid;

  grid-template-columns:
    minmax(0,.76fr)
    minmax(540px,1.24fr);

  gap:75px;

  align-items:center;
}


.mlCompare__copy{
  text-align:left;
}


.mlCompare__copy h2{
  margin-bottom:20px;

  color:var(--ml-navy);

  font-size:clamp(36px,4vw,52px);
  line-height:1.05;

  letter-spacing:-1.7px;
}


.mlCompare__copy h2 span{
  display:block;

  color:var(--ml-red);
}


.mlCompare__copy > p{
  color:var(--ml-muted);

  font-size:15px;
  line-height:1.72;
}


.mlCompare__quote{
  margin-top:27px;

  padding:18px 19px;

  border-left:
    3px solid var(--ml-red);

  border-radius:
    0 15px 15px 0;

  display:flex;

  gap:12px;

  color:#344054;

  background:var(--ml-red-soft);

  font-size:14px;
  line-height:1.55;

  font-weight:700;
}


.mlCompare__quote i{
  margin-top:2px;
  font-size:16px;

  color:var(--ml-red);
}


.mlCompareBox{
  overflow:hidden;

  border:
    1px solid #E1E6EC;

  border-radius:26px;

  background:#fff;

  box-shadow:
    0 22px 60px rgba(16,24,40,.07);
}


.mlCompareBox__head,
.mlCompareRow{
  display:grid;

  grid-template-columns:
    1fr 1fr;
}


.mlCompareBox__label{
  padding:18px 20px;

  font-size:15px;

  font-weight:800;

  text-align:left;
}


.mlCompareBox__label--old{
  color:#667085;

  background:#F3F5F7;
}


.mlCompareBox__label--new{
  color:var(--ml-red);

  background:#FFF0ED;
}


.mlCompareRow{
  border-top:
    1px solid #E9EDF2;
}


.mlCompareRow > div{
  min-height:82px;

  padding:17px 18px;

  display:flex;

  align-items:flex-start;

  gap:10px;

  font-size:13px;
  line-height:1.52;

  text-align:left;
}


.mlCompareRow > div i{
  margin-top:3px;

  flex:0 0 auto;
}


.mlCompareRow__old{
  color:#737D8C;

  background:#FAFBFC;
}


.mlCompareRow__old i{
  color:#B7BEC8;
}


.mlCompareRow__new{
  color:#24344B;

  background:#fff;

  font-weight:700;
}


.mlCompareRow__new i{
  color:var(--ml-red);
}





/* ============================================================
   SECTION 5
   WHY MAALAM
   ============================================================ */

.mlWhy{
  --why-red:#F64632;
  --why-red-dark:#DF3827;
  --why-red-soft:#FFF2EF;

  --why-navy:#071A33;
  --why-muted:#667085;

  padding:120px 0;

  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F8FAFC 100%
    );
}


.mlWhy__container{
  width:min(1280px, calc(100% - 40px));

  margin:0 auto;

  position:relative;

  z-index:2;
}



/* ambient */

.mlWhy__ambient{
  position:absolute;

  border-radius:999px;

  pointer-events:none;
}


.mlWhy__ambient--one{
  width:470px;
  height:470px;

  top:-250px;
  right:-150px;

  background:
    radial-gradient(
      circle,
      rgba(246,70,50,.10),
      rgba(246,70,50,.035) 43%,
      transparent 72%
    );
}


.mlWhy__ambient--two{
  width:360px;
  height:360px;

  left:-220px;
  bottom:100px;

  background:
    radial-gradient(
      circle,
      rgba(7,26,51,.045),
      transparent 70%
    );
}



/* header */

.mlWhy__header{
  max-width:850px;

  margin:0 auto 58px;

  text-align:center;
}


.mlWhy__kicker{
  width:max-content;

  margin:0 auto 17px;

  padding:8px 12px;

  border:
    1px solid rgba(246,70,50,.14);

  border-radius:999px;

  display:flex;
  align-items:center;

  gap:8px;

  color:#B53627;

  background:
    rgba(255,242,239,.76);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9);

  font-size:10px;
  line-height:1;

  font-weight:800;

  letter-spacing:.065em;

  text-transform:uppercase;
}


.mlWhy__kickerDot{
  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--why-red);

  box-shadow:
    0 0 0 4px rgba(246,70,50,.09);
}


.mlWhy__title{
  margin:0;

  color:var(--why-navy);

  font-size:clamp(40px,5vw,62px);
  line-height:1.01;

  font-weight:800;

  letter-spacing:-2.5px;
}


.mlWhy__title span{
  display:block;

  color:var(--why-red);
}


.mlWhy__lead{
  max-width:680px;

  margin:21px auto 0;

  color:var(--why-muted);

  font-size:16px;
  line-height:1.7;
}



/* grid */

.mlWhy__grid{
  display:grid;

  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap:18px;
}



/* cards */

.mlWhyCard{
  min-height:300px;

  padding:27px 27px 24px;

  border:
    1px solid rgba(7,26,51,.085);

  border-radius:26px;

  display:flex;
  flex-direction:column;

  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      150deg,
      rgba(255,255,255,1),
      rgba(255,255,255,.96)
    );

  box-shadow:
    0 1px 1px rgba(7,26,51,.02),
    0 10px 32px rgba(7,26,51,.035);

  text-align:left;

  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s cubic-bezier(.2,.8,.2,1),
    border-color .28s ease;
}


.mlWhyCard::before{
  content:"";

  position:absolute;

  width:120px;
  height:120px;

  top:-62px;
  left:-42px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(246,70,50,.06),
      transparent 69%
    );

  pointer-events:none;
}


.mlWhyCard:hover{
  transform:translateY(-5px);

  border-color:
    rgba(246,70,50,.20);

  box-shadow:
    0 22px 55px rgba(7,26,51,.075);
}



/* card top */

.mlWhyCard__top{
  margin-bottom:28px;

  display:flex;

  align-items:flex-start;
  justify-content:space-between;
}


.mlWhyCard__icon{
  width:58px;
  height:58px;

  border:
    1px solid rgba(246,70,50,.12);

  border-radius:18px;

  display:grid;
  place-items:center;

  color:var(--why-red);

  background:
    linear-gradient(
      145deg,
      #FFF8F6,
      #FFEDE9
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 8px 22px rgba(246,70,50,.08);

  font-size:19px;
}


.mlWhyCard__index{
  color:#E1E5EA;

  font-size:34px;
  line-height:.85;

  font-weight:800;

  letter-spacing:-.06em;
}



/* card body */

.mlWhyCard__body{
  flex:1;
}


.mlWhyCard__body h3{
  max-width:300px;

  margin:0 0 11px;

  color:var(--why-navy);

  font-size:19px;
  line-height:1.2;

  font-weight:800;

  letter-spacing:-.4px;
}


.mlWhyCard__body p{
  margin:0;

  color:var(--why-muted);

  font-size:14px;
  line-height:1.65;
}



/* footer */

.mlWhyCard__footer{
  margin-top:23px;

  padding-top:16px;

  border-top:
    1px solid #EEF1F4;
}


.mlWhyCard__pill{
  width:max-content;
  max-width:100%;

  padding:7px 10px;

  border-radius:999px;

  display:inline-flex;

  align-items:center;

  gap:7px;

  color:#475467;

  background:#F6F8FA;

  font-size:11.5px;
  line-height:1.25;

  font-weight:750;
}


.mlWhyCard__pill i{
  color:var(--why-red);

  font-size:9px;
}



/* featured */

.mlWhyCard--featured{
  border:
    1px solid rgba(246,70,50,.30);

  background:
    linear-gradient(
      145deg,
      #FFFDFC,
      #FFF4F1
    );

  box-shadow:
    0 22px 58px rgba(246,70,50,.10);
}


.mlWhyCard--featured::after{
  content:"";

  position:absolute;

  width:210px;
  height:210px;

  right:-100px;
  bottom:-110px;

  border:
    1px solid rgba(246,70,50,.11);

  border-radius:50%;

  pointer-events:none;
}


.mlWhyCard__glow{
  width:170px;
  height:170px;

  position:absolute;

  top:-80px;
  right:-70px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(246,70,50,.12),
      transparent 70%
    );

  pointer-events:none;
}


.mlWhyCard__featuredTag{
  position:absolute;

  top:18px;
  right:21px;

  padding:7px 10px;

  border-radius:999px;

  color:#fff;

  background:var(--why-red);

  box-shadow:
    0 8px 18px rgba(246,70,50,.18);

  font-size:8px;
  line-height:1;

  font-weight:800;

  letter-spacing:.035em;

  text-transform:uppercase;
}


.mlWhyCard--featured .mlWhyCard__index{
  margin-top:38px;

  color:
    rgba(246,70,50,.16);
}


.mlWhyCard__icon--featured{
  color:#fff;

  border-color:transparent;

  background:
    linear-gradient(
      145deg,
      #FF5A45,
      #F64632
    );

  box-shadow:
    0 13px 28px rgba(246,70,50,.23);
}


.mlWhyCard__pill--featured{
  color:#A52E20;

  background:
    rgba(246,70,50,.09);
}



/* action */

.mlWhy__action{
  margin-top:27px;

  padding:19px 20px 19px 22px;

  border:
    1px solid rgba(7,26,51,.09);

  border-radius:22px;

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:25px;

  background:
    rgba(255,255,255,.94);

  box-shadow:
    0 14px 42px rgba(7,26,51,.055);

  backdrop-filter:
    blur(14px);
}


.mlWhy__actionCopy{
  display:flex;

  align-items:center;

  gap:13px;

  text-align:left;
}


.mlWhy__actionIcon{
  width:45px;
  height:45px;

  flex:0 0 45px;

  border-radius:14px;

  display:grid;
  place-items:center;

  color:var(--why-red);

  background:var(--why-red-soft);

  font-size:14px;
}


.mlWhy__actionTitle,
.mlWhy__actionText{
  display:block;
}


.mlWhy__actionTitle{
  margin-bottom:3px;

  color:var(--why-navy);

  font-size:15px;

  font-weight:800;
}


.mlWhy__actionText{
  color:var(--why-muted);

  font-size:14px;
  line-height:1.45;
}



/* why CTA */

.mlWhy__cta{
  min-height:54px;

  padding:0 8px 0 21px;

  border:0;
  border-radius:14px;

  display:inline-flex;

  align-items:center;

  gap:15px;

  flex:0 0 auto;

  color:#fff;

  background:var(--why-red);

  box-shadow:
    0 12px 28px rgba(246,70,50,.21);

  cursor:pointer;

  font-family:inherit;

  font-size:15px;

  font-weight:800;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}


.mlWhy__cta:hover{
  transform:translateY(-2px);

  background:var(--why-red-dark);

  box-shadow:
    0 17px 35px rgba(246,70,50,.27);
}


.mlWhy__ctaArrow{
  width:38px;
  height:38px;

  border-radius:10px;

  display:grid;
  place-items:center;

  color:var(--why-red);

  background:#fff;

  font-size:10px;
}


.mlWhy__ctaArrow i{
  transition:
    transform .2s ease;
}


.mlWhy__cta:hover .mlWhy__ctaArrow i{
  transform:translateX(2px);
}





/* ============================================================
   SECTION 6
   FAQ
   ============================================================ */

.mlFaq{
  padding:105px 0;

  background:#fff;
}


.mlFaq__container{
  display:grid;

  grid-template-columns:
    minmax(260px,.68fr)
    minmax(0,1fr);

  gap:90px;
}


.mlFaq__intro{
  text-align:left;
}


.mlFaq__intro h2{
  margin-bottom:16px;

  color:var(--ml-navy);

  font-size:38px;
  line-height:1.08;

  letter-spacing:-1.2px;
}


.mlFaq__intro p{
  color:var(--ml-muted);

  font-size:14px;
  line-height:1.65;
}


.mlFaq__items{
  border-top:
    1px solid #DDE3EA;
}


.mlFaqItem{
  border-bottom:
    1px solid #DDE3EA;
}


.mlFaqItem__button{
  width:100%;

  padding:22px 2px;

  border:0;

  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:22px;

  color:var(--ml-navy);

  background:transparent;

  cursor:pointer;

  font-size:14px;
  line-height:1.45;

  font-weight:750;

  text-align:left;
}


.mlFaqItem__plus{
  width:32px;
  height:32px;

  flex:0 0 32px;

  border-radius:10px;

  display:grid;
  place-items:center;

  color:var(--ml-red);

  background:var(--ml-red-soft);

  transition:
    background .25s ease,
    transform .25s ease;
}


.mlFaqItem__plus i{
  font-size:10px;

  transition:
    transform .28s cubic-bezier(.4,0,.2,1);
}


.mlFaqItem__button[aria-expanded="true"]
.mlFaqItem__plus{
  background:
    var(--ml-red-soft-2);
}


.mlFaqItem__button[aria-expanded="true"]
.mlFaqItem__plus i{
  transform:
    rotate(45deg);
}



/* smooth accordion */

.mlFaqItem__answer{
  display:grid;

  grid-template-rows:0fr;

  opacity:0;

  transition:
    grid-template-rows .34s cubic-bezier(.4,0,.2,1),
    opacity .25s ease;
}


.mlFaqItem__answerInner{
  min-height:0;

  overflow:hidden;
}


.mlFaqItem__answer p{
  margin:0;

  padding:
    0 50px 0 2px;

  color:var(--ml-muted);

  font-size:13px;
  line-height:1.7;

  text-align:left;

  transform:
    translateY(-5px);

  transition:
    transform .34s cubic-bezier(.4,0,.2,1),
    padding-bottom .34s cubic-bezier(.4,0,.2,1);
}


.mlFaqItem.is-open
.mlFaqItem__answer{
  grid-template-rows:1fr;

  opacity:1;
}


.mlFaqItem.is-open
.mlFaqItem__answer p{
  padding-bottom:22px;

  transform:
    translateY(0);
}





/* ============================================================
   SECTION 7
   FINAL CTA
   ============================================================ */

.mlFinalCta{
  padding:110px 0;

  overflow:hidden;

  position:relative;

  background:var(--ml-red);
}


.mlFinalCta__content{
  max-width:790px;

  margin:0 auto;

  position:relative;

  z-index:2;

  text-align:center;
}


.mlFinalCta__icon{
  width:58px;
  height:58px;

  margin:
    0 auto 22px;

  border:
    1px solid rgba(255,255,255,.25);

  border-radius:18px;

  display:grid;
  place-items:center;

  color:#fff;

  background:
    rgba(255,255,255,.12);

  font-size:20px;
}


.mlFinalCta .mlDfKicker{
  margin-bottom:16px;

  color:#FFD6D0;
}


.mlFinalCta h2{
  margin-bottom:18px;

  color:#fff;

  font-size:
    clamp(38px,5vw,60px);

  line-height:1.02;

  letter-spacing:-2px;

  font-weight:800;
}


.mlFinalCta p{
  max-width:650px;

  margin:
    0 auto 28px;

  color:
    rgba(255,255,255,.84);

  font-size:16px;
  line-height:1.65;
}


.mlFinalCta__trust{
  margin-top:20px;

  display:flex;

  justify-content:center;
  flex-wrap:wrap;

  gap:17px 24px;

  color:
    rgba(255,255,255,.88);

  font-size:11px;

  font-weight:650;
}


.mlFinalCta__trust span{
  display:flex;

  align-items:center;

  gap:6px;
}


.mlFinalCta__trust i{
  font-size:10px;

  color:#fff;
}


.mlFinalCta__glow{
  position:absolute;

  border-radius:50%;

  pointer-events:none;
}


.mlFinalCta__glow--1{
  width:420px;
  height:420px;

  top:-230px;
  left:-100px;

  background:
    rgba(255,255,255,.08);
}


.mlFinalCta__glow--2{
  width:500px;
  height:500px;

  right:-210px;
  bottom:-310px;

  border:
    1px solid rgba(255,255,255,.12);
}





/* ============================================================
   TABLET
   ============================================================ */

@media (max-width:980px){


  /* intro */

  .mlDecisionIntro__grid{
    grid-template-columns:1fr;

    gap:45px;
  }


  .mlDecisionIntro__benefits{
    max-width:680px;
  }



  /* how */

  .mlHow__steps{
    grid-template-columns:1fr;

    max-width:650px;

    margin:0 auto;

    gap:13px;
  }


  .mlHow__connector{
    height:25px;

    display:grid;
    place-items:center;
  }


  .mlHow__connector i{
    transform:
      rotate(90deg);
  }


  .mlHowCard{
    min-height:0;
  }



  /* risk */

  .mlRisk__header{
    grid-template-columns:1fr;

    gap:20px;
  }


  .mlRisk__headerText{
    max-width:700px;
  }


  .mlRisk__grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }



  /* compare */

  .mlCompare__grid{
    grid-template-columns:1fr;

    gap:45px;
  }



  /* why */

  .mlWhy{
    padding:95px 0;
  }


  .mlWhyCard{
    padding:22px 20px;
  }


  .mlWhyCard__body h3{
    font-size:17px;
  }


  .mlWhyCard__body p{
    font-size:13px;
  }


  .mlWhy__action{
    flex-direction:column;

    align-items:stretch;
  }


  .mlWhy__cta{
    align-self:flex-start;
  }

}





/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width:700px){


  .mlDfContainer{
    width:
      calc(100% - 34px);
  }


  .mlDfKicker{
    margin-bottom:12px;

    font-size:10px;
  }


  .mlDfSectionHead{
    margin-bottom:34px;
  }


  .mlDfSectionHead--center{
    text-align:left;
  }


  .mlDfSectionHead h2{
    margin-bottom:13px;

    font-size:32px;
    line-height:1.08;

    letter-spacing:-1px;
  }


  .mlDfSectionHead p{
    margin-left:0;

    font-size:14px;
    line-height:1.65;
  }


  .mlDfButton{
    width:100%;

    min-height:55px;
  }



  /* ========================================================
     INTRO — MOBILE LEFT
     ======================================================== */

  .mlDecisionIntro{
    padding:66px 0 72px;
  }


  .mlDecisionIntro__eyebrow{
    margin-bottom:20px;

    font-size:11px;

    text-align:left;
  }


  .mlDecisionIntro__grid{
    gap:34px;
  }


  .mlDecisionIntro__copy{
    text-align:left;
  }


  .mlDecisionIntro__copy h2{
    margin-bottom:18px;

    font-size:36px;
    line-height:1.03;

    letter-spacing:-1.35px;
  }


  .mlDecisionIntro__copy p{
    margin-bottom:24px;

    font-size:14px;
    line-height:1.68;
  }


  .mlDecisionIntro__benefits{
    padding:8px;

    border-radius:22px;
  }


  .mlDfMiniBenefit{
    padding:15px 12px;
  }


  .mlDfMiniBenefit__icon{
    width:42px;
    height:42px;

    flex-basis:42px;
  }



  /* ========================================================
     HOW — MOBILE LEFT
     ======================================================== */

  .mlHow{
    padding:72px 0;
  }


  .mlHowCard{
    padding:23px;

    border-radius:21px;
  }


  .mlHowCard__top{
    margin-bottom:19px;
  }


  .mlHowCard__icon{
    width:48px;
    height:48px;
  }


  .mlHowCard h3{
    font-size:18px;
  }


  .mlHowCard p{
    margin-bottom:18px;

    font-size:14px;
  }


  .mlHow__cta{
    margin-top:31px;

    text-align:center;
  }


  .mlDfMicroTrust{
    gap:14px;
  }



  /* ========================================================
     RISK — MOBILE LEFT
     2 CARDS PER ROW
     ======================================================== */

  .mlRisk{
    padding:76px 0;
  }


  .mlRisk__header{
    margin-bottom:31px;

    gap:16px;
  }


  .mlRisk__headerCopy{
    text-align:left;
  }


  .mlRisk__headerCopy h2{
    font-size:34px;
    line-height:1.05;

    letter-spacing:-1.15px;
  }


  .mlRisk__headerText p{
    font-size:15px;
    line-height:1.65;
  }


  .mlRisk__grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap:9px;
  }


  .mlRiskCard{
    min-height:280px;

    padding:15px 13px;

    border-radius:18px;
  }


  .mlRiskCard:hover{
    transform:none;
  }


  .mlRiskCard__top{
    margin-bottom:17px;
  }


  .mlRiskCard__icon{
    width:40px;
    height:40px;

    border-radius:12px;

    font-size:13px;
  }


  .mlRiskCard__tag{
    padding:5px 6px;

    font-size:10px;
  }


  .mlRiskCard h3{
    font-size:15px;
    line-height:1.22;
  }


  .mlRiskCard p{
    font-size:13px;
    line-height:1.55;
  }


  .mlRiskCard__impact{
    padding-top:11px;

  }


  .mlRisk__bridge{
    margin-top:17px;

    padding:17px;

    grid-template-columns:auto 1fr;

    border-radius:18px;
  }


  .mlRisk__bridgeButton{
    grid-column:1 / -1;

    width:100%;

    min-height:51px;

    justify-content:center;

    margin-top:3px;
  }



  /* ========================================================
     COMPARE — MOBILE LEFT
     ======================================================== */

  .mlCompare{
    padding:76px 0;
  }


  .mlCompare__grid{
    gap:34px;
  }


  .mlCompare__copy{
    text-align:left;
  }


  .mlCompare__copy h2{
    font-size:33px;

    letter-spacing:-1px;
  }


  .mlCompare__copy > p{
    font-size:14px;
  }


  .mlCompareBox{
    border-radius:20px;
  }


  .mlCompareBox__label{
    padding:13px 10px;

    font-size:13px;
  }


  .mlCompareRow > div{
    min-height:92px;

    padding:12px 9px;

    align-items:flex-start;

    font-size:12.5px;
    line-height:1.45;
  }



  /* ========================================================
     WHY MAALAM — MOBILE
     EXACTLY 2 CARDS PER ROW
     Header LEFT
     Cards LEFT
     ======================================================== */

  .mlWhy{
    padding:76px 0;
  }


  .mlWhy__container{
    width:
      calc(100% - 30px);
  }


  .mlWhy__header{
    margin:
      0 0 34px;

    text-align:left;
  }


  .mlWhy__kicker{
    margin:
      0 0 14px;

    font-size:8px;
  }


  .mlWhy__title{
    max-width:350px;

    font-size:34px;
    line-height:1.04;

    letter-spacing:-1.25px;
  }


  .mlWhy__lead{
    max-width:360px;

    margin:
      15px 0 0;

    font-size:13px;
    line-height:1.62;
  }


  .mlWhy__grid{
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap:9px;
  }


  .mlWhyCard{
    min-height:285px;

    padding:
      15px 13px 14px;

    border-radius:18px;

    box-shadow:
      0 6px 20px rgba(7,26,51,.035);
  }


  .mlWhyCard:hover{
    transform:none;
  }


  .mlWhyCard__top{
    margin-bottom:20px;
  }


  .mlWhyCard__icon{
    width:42px;
    height:42px;

    border-radius:13px;

    font-size:14px;
  }


  .mlWhyCard__index{
    font-size:25px;
  }


  .mlWhyCard__body h3{
    margin-bottom:8px;

    font-size:15px;
    line-height:1.2;

    letter-spacing:-.25px;
  }


  .mlWhyCard__body p{
    font-size:13px;
    line-height:1.52;
  }


  .mlWhyCard__footer{
    margin-top:16px;

    padding-top:12px;
  }


  .mlWhyCard__pill{
    padding:
      6px 7px;

    border-radius:8px;

    font-size:9.3px;
    line-height:1.2;

    white-space:normal;
  }


  .mlWhyCard__featuredTag{
    top:12px;
    right:11px;

    padding:5px 6px;

    font-size:6px;
  }


  .mlWhyCard--featured
  .mlWhyCard__index{
    margin-top:27px;
  }


  .mlWhy__action{
    margin-top:16px;

    padding:17px;

    border-radius:18px;

    gap:17px;
  }


  .mlWhy__actionCopy{
    align-items:flex-start;
  }


  .mlWhy__actionIcon{
    width:39px;
    height:39px;

    flex-basis:39px;

    border-radius:11px;
  }


  .mlWhy__actionTitle{
    font-size:14px;
  }


  .mlWhy__actionText{
    font-size:13px;
  }


  .mlWhy__cta{
    width:100%;

    min-height:55px;

    padding:
      0 7px 0 17px;

    justify-content:space-between;

    font-size:14px;
  }



  /* ========================================================
     FAQ — MOBILE LEFT
     ======================================================== */

  .mlFaq{
    padding:75px 0;
  }


  .mlFaq__container{
    grid-template-columns:1fr;

    gap:28px;
  }


  .mlFaq__intro{
    text-align:left;
  }


  .mlFaq__intro h2{
    font-size:31px;
  }


  .mlFaqItem__button{
    padding:19px 0;

    font-size:13px;
  }


  .mlFaqItem__answer p{
    padding-right:40px;
  }



  /* ========================================================
     FINAL CTA — MOBILE CENTER
     ======================================================== */

  .mlFinalCta{
    padding:78px 0;
  }


  .mlFinalCta__content{
    text-align:center;
  }


  .mlFinalCta h2{
    font-size:38px;

    letter-spacing:-1.2px;
  }


  .mlFinalCta p{
    font-size:14px;
  }


  .mlFinalCta__trust{
    gap:10px 15px;

    font-size:10px;
  }

}





/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media (max-width:380px){


  .mlDecisionIntro__copy h2{
    font-size:33px;
  }


  .mlRisk__headerCopy h2{
    font-size:31px;
  }


  .mlRisk__grid{
    gap:7px;
  }


  .mlRiskCard{
    padding:
      14px 11px 13px;
  }


  .mlRiskCard h3{
    font-size:14px;
  }


  .mlRiskCard p{
    font-size:13px;
  }


  .mlCompare__copy h2{
    font-size:31px;
  }


  .mlWhy__container{
    width:
      calc(100% - 24px);
  }


  .mlWhy__grid{
    gap:7px;
  }


  .mlWhyCard{
    padding:
      14px 11px 13px;
  }


  .mlWhyCard__body h3{
    font-size:15px;
  }


  .mlWhyCard__pill{
    font-size:8.8px;
  }


  .mlFinalCta h2{
    font-size:35px;
  }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce){

  .mlDecisionFunnel *,
  .mlDecisionFunnel *::before,
  .mlDecisionFunnel *::after{
    transition:none !important;
  }

}

/* ============================================================
   ============================================================
   
   MAALAM DECISION FUNNEL END
   
   ============================================================
   ============================================================ */
   
   
  /* ============================================================
   CONTEXTUAL CATEGORY SECTIONS (2 SECTIONS)
   ============================================================ */

.mlContextSection{
  position:relative;
  padding:104px 0;
  overflow:hidden;
  text-align:left;
}

.mlContextSection--one{
  background:
    radial-gradient(circle at 8% 15%, rgba(246,70,50,.07), transparent 26%),
    #ffffff;
}

.mlContextSection--two{
  background:
    radial-gradient(circle at 92% 12%, rgba(246,70,50,.06), transparent 24%),
    linear-gradient(180deg,#fafbfc 0%,#f5f7f9 100%);
}

.mlContextSection__grid{
  display:grid;
  grid-template-columns:minmax(0,1.06fr) minmax(400px,.94fr);
  gap:76px;
  align-items:center;
}

.mlContextSection__grid--reverse{
  grid-template-columns:minmax(400px,.94fr) minmax(0,1.06fr);
}

.mlContextSection__content{
  width:100%;
  max-width:720px;
  text-align:left !important;
}

.mlContextSection__kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  padding:8px 12px;
  border:1px solid rgba(246,70,50,.16);
  border-radius:999px;
  background:rgba(246,70,50,.07);
  color:#d93928;
  font-size:13px;
  line-height:1;
  font-weight:750;
  letter-spacing:.02em;
  text-align:left;
}

.mlContextSection__kicker i{
  font-size:12px;
}

.mlContextSection__title{
  max-width:700px;
  margin:0 0 20px;
  color:#111318;
  font-size:clamp(34px,3.15vw,50px);
  line-height:1.06;
  letter-spacing:-.04em;
  font-weight:800;
  text-align:left !important;
}

.mlContextSection__lead{
  max-width:670px;
  margin:0 0 30px;
  color:#606671;
  font-size:17px;
  line-height:1.72;
  text-align:left !important;
}

.mlContextSection__content p{
  text-align:left !important;
}

.mlContextSection__cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:30px;
}

.mlContextInfoCard{
  display:flex;
  align-items:flex-start;
  gap:13px;
  padding:18px;
  border:1px solid #e8eaee;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  box-shadow:
    0 1px 2px rgba(20,25,35,.03),
    0 10px 28px rgba(20,25,35,.035);
  backdrop-filter:blur(8px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.mlContextInfoCard:hover{
  transform:translateY(-2px);
  border-color:rgba(246,70,50,.22);
  box-shadow:0 16px 36px rgba(20,25,35,.07);
}

.mlContextInfoCard__icon{
  flex:0 0 38px;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(246,70,50,.09);
  color:#F64632;
  font-size:15px;
}

.mlContextInfoCard__title{
  margin-bottom:5px;
  color:#1b1e24;
  font-size:15px;
  line-height:1.3;
  font-weight:750;
}

.mlContextInfoCard p{
  margin:0;
  color:#6c727c;
  font-size:13.5px;
  line-height:1.55;
}


/* IMAGE */

.mlContextSection__media{
  position:relative;
  isolation:isolate;
}

.mlContextSection__media::before{
  content:"";
  position:absolute;
  z-index:-1;
  width:70%;
  height:70%;
  right:-28px;
  bottom:-28px;
  border-radius:40px;
  background:rgba(246,70,50,.09);
}

.mlContextSection--two .mlContextSection__media::before{
  right:auto;
  left:-28px;
}

.mlContextSection__media img{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:28px;
  box-shadow:
    0 28px 70px rgba(15,20,30,.13),
    0 4px 14px rgba(15,20,30,.06);
}

/* PRICE FACTORS */

.mlContextFactorGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  margin-top:30px;
  border-top:1px solid #e5e8ec;
}

.mlContextFactor{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid #e5e8ec;
}

.mlContextFactor__number{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:30px;
  margin-top:1px;
  border-radius:9px;
  background:#17191e;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
}

.mlContextFactor__title{
  margin-bottom:4px;
  color:#191c21;
  font-size:15px;
  line-height:1.35;
  font-weight:750;
}

.mlContextFactor p{
  margin:0;
  color:#6a7079;
  font-size:14px;
  line-height:1.58;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width:1020px){

  .mlContextSection{
    padding:82px 0;
  }

  .mlContextSection__grid,
  .mlContextSection__grid--reverse{
    grid-template-columns:1fr;
    gap:46px;
  }

  .mlContextSection__content{
    max-width:none;
  }

  .mlContextSection__media{
    max-width:680px;
  }

  .mlContextSection__grid--reverse .mlContextSection__content{
    order:1;
  }

  .mlContextSection__grid--reverse .mlContextSection__media{
    order:2;
  }

  .mlContextSection__media img{
    aspect-ratio:16/10;
  }
}

@media (max-width:700px){

  .mlContextSection{
    padding:62px 0;
  }

  .mlContextSection__title{
    font-size:clamp(30px,9vw,39px);
  }

  .mlContextSection__lead{
    font-size:16px;
    line-height:1.65;
  }

  .mlContextSection__cards{
    grid-template-columns:1fr;
  }

  .mlContextSection__media img{
    aspect-ratio:4/3;
    border-radius:22px;
  }

  .mlContextSection__media::before{
    right:-14px;
    bottom:-14px;
  }

  .mlContextSection--two .mlContextSection__media::before{
    left:-14px;
  }
}
   
/* ============================================================
   CONTEXTUAL CATEGORY SECTIONS (2 SECTIONS) END
   ============================================================ */
   
   
 /* ============================================================
   CAROUSEL PROFESSIONALS SHOWCASE
   ============================================================ */

.mlProsShowcase,
.mlProsShowcase *{
  box-sizing:border-box;
}

.mlProsShowcase{
  position:relative;
  padding:96px 0 92px;
  overflow:hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(246,70,50,.055), transparent 24%),
    linear-gradient(180deg,#fff 0%,#fafbfc 100%);
  text-align:left !important;
}

.mlProsShowcase .mlDfContainer{
  text-align:left !important;
}


/* ============================================================
   HEADER
   ============================================================ */

.mlProsShowcase__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:48px;
  margin-bottom:34px;
  text-align:left !important;
}

.mlProsShowcase__heading{
  max-width:720px;
  text-align:left !important;
}

.mlProsShowcase__title{
  max-width:700px;
  margin:0 0 12px;
  color:#111318;
  font-size:clamp(32px,3vw,46px);
  line-height:1.08;
  letter-spacing:-.038em;
  font-weight:800;
  text-align:left !important;
}

.mlProsShowcase__title strong{
  color:#F64632;
  font-weight:850;
}

.mlProsShowcase__lead{
  max-width:610px;
  margin:0;
  color:#69707a;
  font-size:16px;
  line-height:1.65;
  text-align:left !important;
}


/* ============================================================
   HEADER NAV
   ============================================================ */

.mlProsShowcase__nav{
  display:flex;
  align-items:center;
  gap:9px;
  flex:0 0 auto;
}

.mlProsShowcase__navBtn{
  width:48px;
  height:48px;
  padding:0;
  border:1px solid #e2e5e9;
  border-radius:50%;
  background:#fff;
  color:#181b20;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:13px;
  box-shadow:
    0 2px 3px rgba(15,23,42,.025),
    0 10px 26px rgba(15,23,42,.045);
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease,
    opacity .2s ease,
    box-shadow .2s ease;
}

.mlProsShowcase__navBtn:hover:not(:disabled){
  transform:translateY(-2px);
  border-color:#F64632;
  background:#F64632;
  color:#fff;
  box-shadow:0 12px 28px rgba(246,70,50,.16);
}

.mlProsShowcase__navBtn:disabled{
  opacity:.28;
  cursor:default;
  box-shadow:none;
}


/* ============================================================
   OUTER CAROUSEL
   ============================================================ */

.mlProsRail{
  position:relative;
  width:100%;
}

/*
 * Subtle edge masks = indication visuelle que le rail continue.
 */
.mlProsRail::before,
.mlProsRail::after{
  content:"";
  position:absolute;
  top:0;
  bottom:18px;
  width:34px;
  z-index:8;
  pointer-events:none;
  opacity:0;
  transition:opacity .2s ease;
}

.mlProsRail::before{
  left:-2px;
  background:linear-gradient(90deg,#fff,rgba(255,255,255,0));
}

.mlProsRail::after{
  right:-2px;
  background:linear-gradient(270deg,#fff,rgba(255,255,255,0));
}

.mlProsRail.has-left::before{
  opacity:1;
}

.mlProsRail.has-right::after{
  opacity:1;
}


.mlProsRail__viewport{
  display:flex;
  gap:18px;

  width:100%;

  padding:4px 2px 40px;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;

  overscroll-behavior-x:contain;

  scrollbar-width:none;

  -webkit-overflow-scrolling:touch;

  cursor:grab;

  user-select:none;

  text-align:left !important;
}

.mlProsRail__viewport::-webkit-scrollbar{
  display:none;
}

.mlProsRail__viewport.is-dragging{
  cursor:grabbing;
  scroll-snap-type:none;
  scroll-behavior:auto;
}

.mlProsRail__slide{
  flex:0 0 calc((100% - 36px) / 3);
  min-width:0;
  scroll-snap-align:start;
  text-align:left !important;
}


/* ============================================================
   PRO CARD
   ============================================================ */

.mlProCarouselCard{
  position:relative;

  height:100%;

  display:flex;
  flex-direction:column;

  overflow:hidden;

  border:1px solid #e5e8ec;
  border-radius:22px;

  background:#fff;

  box-shadow:
    0 1px 2px rgba(15,23,42,.025),
    0 12px 34px rgba(15,23,42,.05);

  text-align:left !important;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.mlProCarouselCard:hover{
  transform:translateY(-3px);
  border-color:rgba(246,70,50,.17);
  box-shadow:
    0 3px 7px rgba(15,23,42,.03),
    0 22px 52px rgba(15,23,42,.085);
}


/* ============================================================
   MEDIA
   ============================================================ */

.mlProCarouselCard__media{
  position:relative;
  width:100%;
  aspect-ratio:1.42 / 1;
  overflow:hidden;
  background:#eef0f2;
}


/* Gallery must fill card media */

.mlProCarouselCard .gallery-new{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  padding-top:0;

  background:#eef0f2;

  overflow:hidden;

  cursor:grab;
}

.mlProCarouselCard .gallery-new:active{
  cursor:grabbing;
}

.mlProCarouselCard .gallery-new-track{
  position:absolute;
  inset:0;

  display:flex;

  overflow:hidden;

  touch-action:pan-y;
}

.mlProCarouselCard .gallery-new-image{
  flex:0 0 100%;

  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
    opacity .3s ease,
    transform .45s ease;
}

.mlProCarouselCard .gallery-new-image.loaded{
  opacity:1;
}

.mlProCarouselCard:hover .gallery-new-image.loaded{
  transform:scale(1.012);
}


/* fallback */

.mlProCarouselCard__fallbackMedia{
  position:absolute;
  inset:0;
  display:block;
}

.mlProCarouselCard__fallbackMedia img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}


/* subtle photo shading */

.mlProCarouselCard__media::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:38%;
  z-index:5;
  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      rgba(8,12,18,0) 0%,
      rgba(8,12,18,.32) 100%
    );
}


/* ============================================================
   GALLERY ARROWS
   Scoped modern reskin
   ============================================================ */

.mlProCarouselCard .gallery-new-arrow{
  position:absolute;

  top:50%;
  transform:translateY(-50%);

  z-index:15;

  width:36px;
  height:36px;

  border:1px solid rgba(255,255,255,.30);
  border-radius:50%;

  background:rgba(15,18,24,.38);

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  font-size:11px;

  cursor:pointer;

  opacity:0;

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  text-shadow:none;

  box-shadow:0 5px 18px rgba(0,0,0,.12);

  transition:
    opacity .18s ease,
    transform .18s ease,
    background .18s ease;
}

.mlProCarouselCard:hover .gallery-new-arrow{
  opacity:1;
}

.mlProCarouselCard .gallery-new-left{
  left:12px;
}

.mlProCarouselCard .gallery-new-right{
  right:12px;
}

.mlProCarouselCard .gallery-new-arrow:hover{
  background:rgba(15,18,24,.65);
  transform:translateY(-50%) scale(1.05);
}

.mlProCarouselCard .gallery-new-arrow.is-disabled{
  opacity:0 !important;
  pointer-events:none;
}


/* ============================================================
   GALLERY DOTS
   ============================================================ */

.mlProCarouselCard .gallery-new-dots{
  position:absolute;

  left:50%;
  bottom:14px;

  transform:translateX(-50%);

  z-index:16;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:6px;

  padding:6px 8px;

  border-radius:999px;

  background:rgba(13,16,21,.22);

  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.mlProCarouselCard .gallery-new-dot{
  width:6px;
  height:6px;

  padding:0;

  border:0;
  border-radius:999px;

  background:rgba(255,255,255,.55);

  cursor:pointer;

  transition:
    width .18s ease,
    background .18s ease,
    transform .18s ease;
}

.mlProCarouselCard .gallery-new-dot.is-active{
  width:17px;
  background:#fff;
}

.mlProCarouselCard .gallery-new-dot:hover{
  transform:none;
}


/* ============================================================
   CITY BADGE
   ============================================================ */

.mlProCarouselCard__city{
  position:absolute;

  left:14px;
  top:14px;

  z-index:20;

  display:inline-flex;
  align-items:center;
  gap:7px;

  padding:7px 10px;

  border:1px solid rgba(255,255,255,.30);
  border-radius:999px;

  background:rgba(15,18,24,.53);

  color:#fff;

  font-size:11.5px;
  line-height:1;
  font-weight:700;

  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);

  box-shadow:0 5px 16px rgba(0,0,0,.08);
}

.mlProCarouselCard__city i{
  font-size:10px;
}


/* ============================================================
   CONTENT
   ============================================================ */

.mlProCarouselCard__content{
  flex:1;

  display:flex;
  flex-direction:column;

  padding:19px;

  text-align:left !important;
}

.mlProCarouselCard__content *{
  text-align:left;
}


/* Identity */

.mlProCarouselCard__identity{
  display:flex;
  align-items:center;

  gap:12px;

  width:100%;

  text-align:left !important;
}

.mlProCarouselCard__logo{
  flex:0 0 52px;

  width:52px;
  height:52px;

  border:1px solid #e5e7eb;
  border-radius:14px;

  overflow:hidden;

  background:#fff;

  box-shadow:0 3px 10px rgba(15,23,42,.035);
}

.mlProCarouselCard__logo img{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;
}

.mlProCarouselCard__identityMain{
  flex:1;
  min-width:0;

  text-align:left !important;
}

.mlProCarouselCard__nameRow{
  display:flex;
  align-items:center;

  gap:6px;

  min-width:0;

  text-align:left !important;
}

.mlProCarouselCard__name{
  overflow:hidden;

  color:#15181d;

  font-size:16px;
  line-height:1.25;
  font-weight:800;

  text-decoration:none;

  text-overflow:ellipsis;
  white-space:nowrap;

  transition:color .18s ease;
}

.mlProCarouselCard__name:hover{
  color:#F64632;
}

.mlProCarouselCard__verified{
  flex:0 0 auto;

  color:#2583e9;

  font-size:13px;
}

.mlProCarouselCard__activity{
  margin-top:4px;

  overflow:hidden;

  color:#747a83;

  font-size:12.5px;
  line-height:1.4;
  font-weight:500;

  white-space:nowrap;
  text-overflow:ellipsis;

  text-align:left !important;
}


/* Rating */

.mlProCarouselCard__rating{
  display:flex;
  align-items:center;

  gap:7px;

  margin-top:16px;

  min-height:20px;

  text-align:left !important;
}

.mlProCarouselCard__rating strong{
  color:#21242a;

  font-size:13px;
  font-weight:800;
}

.mlProCarouselCard__reviews{
  color:#888e96;

  font-size:12px;
  font-weight:500;
}


/* Category */

.mlProCarouselCard__category{
  display:flex;
  align-items:center;

  gap:8px;

  margin-top:13px;

  color:#525861;

  font-size:12.5px;
  line-height:1.4;
  font-weight:650;

  text-align:left !important;
}

.mlProCarouselCard__categoryIcon{
  flex:0 0 21px;

  width:21px;
  height:21px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:rgba(246,70,50,.08);

  color:#F64632;

  font-size:8px;
}


/* ============================================================
   ACTIONS
   ============================================================ */

.mlProCarouselCard__actions{
  display:grid;

  grid-template-columns:.82fr 1.18fr;

  gap:8px;

  margin-top:auto;
  padding-top:20px;
}

.mlProCarouselCard__profile,
.mlProCarouselCard__quote{
  min-height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:7px;

  padding:9px 12px;

  border-radius:12px;

  font-family:inherit;

  font-size:12.5px;
  line-height:1;
  font-weight:750;

  text-decoration:none;

  white-space:nowrap;

  cursor:pointer;

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.mlProCarouselCard__profile{
  border:1px solid #dde1e6;

  background:#fff;

  color:#272b31;
}

.mlProCarouselCard__profile i{
  font-size:9px;
}

.mlProCarouselCard__profile:hover{
  border-color:#cfd4da;

  background:#f7f8f9;

  color:#171a1f;
}

.mlProCarouselCard__quote{
  border:1px solid #F64632;

  background:#F64632;

  color:#fff;

  box-shadow:0 7px 18px rgba(246,70,50,.12);
}

.mlProCarouselCard__quote:hover{
  transform:translateY(-1px);

  border-color:#e9402d;

  background:#e9402d;

  color:#fff;

  box-shadow:0 10px 24px rgba(246,70,50,.16);
}


/* ============================================================
   CAROUSEL BOTTOM / PROGRESS
   ============================================================ */

.mlProsShowcase__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:25px;

  margin-top:4px;
}

.mlProsProgress{
  position:relative;

  width:210px;
  height:3px;

  overflow:hidden;

  border-radius:999px;

  background:#e7e9ed;
}

.mlProsProgress__bar{
  position:absolute;

  left:0;
  top:0;

  width:100%;
  height:100%;

  border-radius:inherit;

  background:#F64632;

  transform:scaleX(.25);
  transform-origin:left center;

  transition:transform .12s linear;
}

.mlProsShowcase__hint{
  display:flex;
  align-items:center;

  gap:8px;

  color:#8b9098;

  font-size:11.5px;
  font-weight:600;

  white-space:nowrap;
}

.mlProsShowcase__hint i{
  color:#b4b8be;

  font-size:9px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media(max-width:1020px){

  .mlProsShowcase{
    padding:78px 0;
  }

  .mlProsRail__slide{
    flex-basis:calc((100% - 16px) / 2);
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media(max-width:700px){

  .mlProsShowcase{
    padding:62px 0;
  }

  .mlProsShowcase__header{
    display:block;

    margin-bottom:27px;
  }

  .mlProsShowcase__title{
    font-size:clamp(29px,8.7vw,38px);
  }

  .mlProsShowcase__lead{
    font-size:15px;
  }

  .mlProsShowcase__nav{
    display:none;
  }


  .mlProsRail__viewport{
    gap:13px;

    /*
     * laisse apercevoir la prochaine carte
     */
    margin-right:-18px;

    padding-right:18px;
    padding-bottom:30px;

    cursor:auto;
  }

  .mlProsRail__slide{
    flex-basis:88%;
  }


  .mlProCarouselCard{
    border-radius:20px;
  }

  .mlProCarouselCard__media{
    aspect-ratio:1.38 / 1;
  }

  .mlProCarouselCard__content{
    padding:17px;
  }


  /*
   * Toujours visibles au tactile
   */
  .mlProCarouselCard .gallery-new-arrow{
    width:34px;
    height:34px;

    opacity:1;

    font-size:10px;
  }


  .mlProsShowcase__bottom{
    margin-top:2px;
  }

  .mlProsProgress{
    width:100%;
  }

  .mlProsShowcase__hint{
    display:none;
  }

}


@media(max-width:420px){

  .mlProsRail__slide{
    flex-basis:92%;
  }

  .mlProCarouselCard__actions{
    grid-template-columns:1fr;
  }

}

 /* ============================================================
   CAROUSEL PROFESSIONALS SHOWCASE END
   ============================================================ */
  
  
   /* ============================================================
   RELATED SEARCH LINKS
   ============================================================ */
   
 .mlRelatedSearches{
  padding:80px 20px 80px;
  background:#fff;
}

.mlRelatedSearches__container{
  max-width:1280px;
  margin:0 auto;
}

.mlRelatedSearches__head{
  margin-bottom:22px;
  text-align:left;
}

.mlRelatedSearches__title{
  margin:0;
  color:#101828;
  font-size:26px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.25px;
}

.mlRelatedSearches__text{
  margin:8px 0 0;
  color:#667085;
  font-size:14px;
  line-height:1.55;
}

.mlRelatedSearches__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.mlRelatedSearches__link{
  min-height:42px;
  padding:8px 15px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  background:#fff;
  color:#344054;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:-0.2px;
  text-align:left;
  font-weight:600;
  line-height:1.25;
  transition:background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.mlRelatedSearches__link span{
  min-width:0;
}

.mlRelatedSearches__link i{
  color:#98a2b3;
  font-size:12px;
  flex:0 0 auto;
  transition:color .16s ease, transform .16s ease;
}

.mlRelatedSearches__link:hover{
  background:rgba(246,70,50,.035);
  border-color:rgba(246,70,50,.24);
  color:#f64632;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(15,23,42,.02);
  text-decoration:none;
}

.mlRelatedSearches__link:hover i{
  color:#f64632;
  transform:translateX(2px);
}

@media (max-width: 1024px){
  .mlRelatedSearches__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px){
    
  .mlRelatedSearches{
    padding:60px 20px 60px;
    background:#fff;
  }

  .mlRelatedSearches__title{
    font-size:22px;
  }
  
  .mlRelatedSearches__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .mlRelatedSearches__link{
    min-height:46px;
  }
}

   /* ============================================================
   RELATED SEARCH LINKS END
   ============================================================ */