:root{
  /* Palette Reconversion Soignant (flat, sans dégradés) */
  --bg:#F4EFEA;        /* fond principal */
  --panel:#FFFFFF;     /* cartes */
  --panel2:#E8CFC4;    /* sections alternées */

  --text:#2A241F;      /* texte principal */
  --muted:#5F5B57;     /* texte secondaire */

  --line:rgba(42,36,31,.10);
  --shadow: 0 18px 60px rgba(42,36,31,.12);
  --radius: 18px;

  --accent:#E06B47;    /* CTA / accents */
  --accent2:#161616;   /* titres / éléments forts */
  --good:#34d399;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* Topbar */
.topbar{
  position: sticky; top:0; z-index:50;
  background:#fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__dot{
  width:12px;height:12px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(224,107,71,.14);
}
.brand__name{font-weight:800; letter-spacing:-.2px}

.topnav{display:flex; gap:18px}
.topnav__link{
  color: var(--muted);
  font-weight:700;
  font-size:14px;
}
.topnav__link:hover{color: var(--text)}

/* Hero */
.hero{
  position:relative;
  padding:74px 0 30px;
}
.hero__bg{
    position: absolute;
    inset: 0;
    background:         linear-gradient(
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.6)
        ), url(/landing/ad676d2a-d604-45ad-bcec-df6ffcf28d59.png) center / cover no-repeat;
    z-index: -50;

}
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:start;
}

.badge{
  display:inline-flex; align-items:center;
  font-weight:800;
  font-size:12px;
  padding:8px 12px;
  border:1px solid rgba(224,107,71,.28);
  border-radius:999px;
  background: rgba(224,107,71,.12);
  color: var(--accent2);
}

h1{
  margin:16px 0 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height:1.10;
  letter-spacing:-.9px;
  color: var(--accent2);
}
.muted{
  color: var(--muted);
  font-weight:800;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}

.hero__cta{
  display:flex;
  gap:12px;
  align-items:center;
  margin:18px 0 16px;
  flex-wrap:wrap;
}

.trust{
  margin:0;
  padding-left:18px;
  color: var(--muted);
  display:grid;
  gap:6px;
}

/* Sections */
.section{padding:56px 0;     background: #fff;}
.section--alt{
  background: rgba(232,207,196,.45);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:-.6px;
  color: var(--accent2);
}
.section__sub{margin:0; color:#161616}

/* Layout grids */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

/* Cards */
.card{

  padding:18px;
text-align: center;
}
.feature-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.icon{
  width:22px;
  height:22px;
  stroke:#111;
  flex-shrink:0;
}

/* Cartes */
.card.card--feature
{
  border: 2px solid #161616;
  border-radius: 12px;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

/* Titre + icône bien centrés */
.feature-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Icônes en blanc */
.card .icon {
  width: 32px;
  height: 32px;
  stroke: #161616;
}

/* Optionnel : léger hover pour le feeling premium */
.card:hover {
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}
.card h3{
  margin:0 0 8px;
  letter-spacing:-.3px;
  color: var(--accent2);
}
.card p{margin:0; color:#161616}

.card--feature{
  position:relative;
  overflow:hidden;
}
/* halo supprimé = 100% flat */
.card--feature::after{display:none;}

.card--note{
  background: rgba(224,107,71,.08);
  border: 1px solid #161616;
}


/* Highlights */
.highlights{
  margin-top:16px;
  display:grid;
  gap:10px;
}
.highlights__item{
  padding:12px 14px;

  border-radius: 16px;
  background: rgba(224,107,71,.08);
  color: #3a2f2a;
  font-weight:700;
}

/* Buttons */
.btn{

  background: rgba(255,255,255,.92);
  color: var(--text);
    border-radius: 5px;
  padding:12px 16px;
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, opacity .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

}
.btn:hover{box-shadow: 0 16px 30px rgba(42,36,31,.12)}
.btn:active{transform: translateY(1px)}

.btn--primary{
  background: #E06B47;           /* terracotta */
  color:#fff;
  border:none;
  box-shadow: 0 14px 32px rgba(224,107,71,.28);
}
.btn--primary:hover{
  box-shadow: 0 18px 40px rgba(224,107,71,.35);
}
.btn--primary:active{
  transform: translateY(1px);
}

.btn--ghost{
  background: rgba(244,239,234,.9);
  border:1px solid rgba(224,107,71,.25);
  color:#8C5A44;
}
.btn--ghost:hover{
  background: rgba(244,239,234,1);
}
.btn--sm{padding:10px 14px}
.btn--block{width:100%}

.btn__sub{
  font-size:12px;
  font-weight:800;
  opacity:.92;
}

/* Media card (YouTube) */
.media{
  padding:0;
  overflow:hidden;
  border-radius: var(--radius);
}
.media__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 14px 0;
  gap:12px;
}
.media__title{margin:0; font-weight:1000; color: var(--accent2);}
.media__subtitle{margin:0; color: var(--muted); font-size:13px}

.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(224,107,71,.22);
  background: rgba(224,107,71,.10);
  color: var(--accent2);
  white-space:nowrap;
  font-weight:900;
}

.video{
  margin-top:12px;
  position:relative;
  aspect-ratio: 16/9;
  border-top: 1px solid rgba(42,36,31,.08);
}
.video iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

/* Mini proof */
.mini-proof{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.mini-proof__item{
  padding:12px;
  border:1px solid rgba(42,36,31,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 22px rgba(42,36,31,.06);
}
.kpi{display:block; font-weight:1000; letter-spacing:-.4px; color: var(--accent2);}
.kpi__label{display:block; color: var(--muted); font-size:12px; margin-top:2px}

/* Quotes */
.quote blockquote{
  margin:0;
  color: #161616;
  font-weight:800;
}
.quote figcaption{
  margin-top:10px;
  color: var(--muted);
  font-weight:900;
}

/* Center + footer */
.center{display:flex; flex-direction:column; align-items:center; gap:10px; margin-top:18px}
.tiny{margin:0; color: var(--muted); font-size:13px}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0 92px;
  background: rgba(232,207,196,.35);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.footer__brand{margin:0; font-weight:1000; color: var(--accent2);}

/* Sticky CTA */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0;
  padding:12px;
  background: rgba(244,239,234,.95);
  border-top:1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index:60;
  display:none;
}

.sticky-cta .btn{
  width: min(1120px, calc(100% - 0px));
  margin: 0 auto;
  display:flex;
}

/* Modal */
.modal{position:fixed; inset:0; z-index:80; display:none}
.modal.is-open{display:block}
.modal__backdrop{position:absolute; inset:0; background: rgba(42,36,31,.45)}
.modal__dialog{
  position:relative;
  width:min(520px, calc(100% - 28px));
  margin: 10vh auto 0;
  background: rgba(255,255,255,.96);
  border:1px solid rgba(42,36,31,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding:18px;
}
.modal__head{display:flex; justify-content:space-between; align-items:center; gap:10px}
.modal__head h3{margin:0; letter-spacing:-.4px; color: var(--accent2);}
.modal__sub{margin:8px 0 14px; color: var(--muted); font-weight:700}

.icon-btn{
  border:1px solid rgba(42,36,31,.12);
  background: rgba(255,255,255,.92);
  color: var(--text);
  border-radius: 999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:900;
}

/* Form */
.form{display:grid; gap:12px}
.form__row{display:grid; gap:6px}
label{font-weight:900; font-size:13px; color: var(--accent2);}
input{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(42,36,31,.12);
  background: rgba(255,255,255,.95);
  padding:12px 12px;
  color: var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(224,107,71,.55);
  box-shadow: 0 0 0 6px rgba(224,107,71,.14);
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border:1px solid rgba(42,36,31,.10);
  border-radius:16px;
  padding:12px;
  background: rgba(224,107,71,.08);
}
.check input{width:18px; height:18px; margin-top:2px}
.check span{
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}

.form__msg{margin:0; min-height:18px; font-weight:900; font-size:13px}
.form__msg.ok{color: var(--good)}
.form__msg.err{color: #e11d48}

/* Responsive */
@media (max-width: 920px){
  .hero__inner{grid-template-columns: 1fr;}
  .topnav{display:none}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .sticky-cta{display:block}
  .footer{padding-bottom:120px}
}
