@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root{
  --bg:#0b0b0d;
  --panel:#101015;
  --panel2:#0f0f14;
  --text:#f4f4f5;
  --muted:#b7b7c3;
  --line:rgba(255,255,255,.10);
  --accent:#f6c3d5;
  --accent2:#b7a5ff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --r: 18px;
  --max: 1280px;

  /* Couleur primaire (BDD) */
  --color-primary: var(--color-primary);
  --color-primary-dark: #e89c14;
  --on-primary: #111111;

  /* Compat */
  --mx-yellow: var(--color-primary);
  --mx-yellow-dark: var(--color-primary-dark);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(246,195,213,.12), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(183,165,255,.10), transparent 60%),
              var(--bg);
  font-family: "Albert Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

h1,h2,h3{font-family:"Albert Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; letter-spacing:-0.02em; line-height:1.08; margin: 0 0 .35rem 0;}
h1{font-size: clamp(2.2rem, 3.4vw, 3.4rem);}
h2{font-size: clamp(1.7rem, 2.5vw, 2.4rem);}
h3{font-size: 1.25rem;}
p{margin:.25rem 0 0 0}
a{color:inherit; text-decoration:none}
.container{max-width: var(--max); margin:0 auto; padding: 0 20px;}

.muted{color:var(--muted)}
.eyebrow{letter-spacing:.16em; text-transform:uppercase; font-size:.78rem; color:rgba(255,255,255,.72)}
.kicker{letter-spacing:.22em; text-transform:uppercase; font-size:.78rem; color:rgba(255,255,255,.70); margin-bottom:.6rem}
.lead{font-size:1.05rem; color:rgba(255,255,255,.82); max-width: 52ch}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.55rem; padding: .9rem 1.1rem;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18)}
.btn--primary{
  background: linear-gradient(135deg, rgba(246,195,213,.95), rgba(183,165,255,.85));
  color: #120f14;
  border-color: transparent;
}
.btn--primary:hover{background: linear-gradient(135deg, rgba(246,195,213,1), rgba(183,165,255,1))}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--block{width:100%}

.link{
  display:inline-flex; gap:.35rem; align-items:center;
  font-weight:600; color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
  text-underline-offset: 4px;
}
.link:hover{ text-decoration-color: rgba(255,255,255,.75); }

.header{
  position: sticky; top:0; z-index: 50;
  background: rgba(11,11,13,.62);
  
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
}
.brand{display:flex; align-items:center; gap:.65rem;}
.brand__mark{
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(246,195,213,.95), rgba(183,165,255,.85));
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.brand__text{font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:.9rem}
.nav{display:flex; gap: 18px; align-items:center;}
.nav a{color: rgba(255,255,255,.80); font-weight:600; font-size:.95rem}
.nav a:hover{color:#fff; text-decoration: underline; text-underline-offset: 6px; text-decoration-color: rgba(255,255,255,.35)}
.header__actions{display:flex; gap:12px; align-items:center;}

/* Desktop social icons in header */
.header__social{display:flex; align-items:center; gap:10px;}
.header__socialLink{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  color:#111;
  text-decoration:none;
}
.header__socialLink i{font-size: 16px;}
.header__socialLink:hover{background: rgba(0,0,0,.06);}

.burger{
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: var(--color-primary);
  display:none; align-items:center; justify-content:center; gap:5px;
  flex-direction: column;
}
.burger span{
  display:block; width:18px; height:2px; background: #111;
  border-radius:2px;
}

.mobile{
  position: fixed;
  top: 72px; /* under header */
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  display:none;
  z-index: 999;
}
.mobile.is-open{display:block;}
.mobile__panel{
  position: static;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 44px 16px 22px;
  box-shadow: none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile__panel > a{
  padding:16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.22);
  color:#111;
  text-decoration:none;
  text-align:center;
  font-weight: 700;
}
.mobile__panel > a:hover{background: rgba(255,255,255,.30);}
.mobile__panel > a.mobile__cta{
  background:#fff;
  color:#111;
}
.mobile__social{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap:14px;
}
.mobile__socialLink{
  width:52px;
  height:52px;
  border-radius:999px;
  background: rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  text-decoration:none;
}
.mobile__socialLink i{font-size:22px;}

.hero{position:relative; overflow:hidden;}
.hero__bg{
  position:absolute; inset:-120px -50px -120px -50px;
  background:
    radial-gradient(800px 420px at 22% 25%, rgba(246,195,213,.18), transparent 60%),
    radial-gradient(780px 420px at 80% 40%, rgba(183,165,255,.14), transparent 62%),
    radial-gradient(1200px 700px at 50% 120%, rgba(255,255,255,.06), transparent 65%);
  filter: saturate(1.05);
}
.hero__inner{
  position:relative;
  min-height: 78vh;
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 26px;
  padding: 64px 0 24px;
  align-items: center;
}
.hero__card{
  background: rgba(16,16,21,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero__cardTop{display:flex; justify-content:space-between; gap:14px; align-items:flex-start; margin-bottom: 10px}
.hero__tag{display:inline-flex; padding:.35rem .55rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(0,0,0,.08); font-weight:700; font-size:.8rem}
.hero__title{font-weight:800; margin-top:.45rem}
.hero__subtitle{color: rgba(255,255,255,.72); font-size:.95rem}
.hero__badge{border-radius: 14px; padding:.5rem .65rem; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); font-weight:800}

.hero__cta{display:flex; gap:12px; margin: 18px 0 14px; flex-wrap:wrap}
.chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding:.5rem .7rem;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.80);
  font-weight:600;
  font-size:.9rem;
}

.separator{position:relative; height: 70px;}
.separator svg{position:absolute; inset:auto 0 0 0; width:100%; height:80px;}
.separator path{fill: rgba(255,255,255,.04)}

.steps{display:flex; flex-direction:column; gap:12px; margin: 12px 0 14px}
.step{display:flex; gap:10px; align-items:flex-start}
.dot{
  width:10px; height:10px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(246,195,213,1), rgba(183,165,255,1));
  margin-top: 7px;
}
.step__t{font-weight:800}
.step__d{color: rgba(255,255,255,.70); font-size:.92rem}

.section{padding: 70px 0}
.section--alt{background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06)}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom: 22px
}

.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(4, 1fr);}
.card{
  border-radius: var(--r);
  background: rgba(16,16,21,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  padding: 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  overflow:hidden;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(18,18,25,.80)}
.card__media{
  height: 160px; border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(246,195,213,.18), rgba(183,165,255,.12)),
    var(--img) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
}

.band{padding: 18px 0 40px}
.band__inner{
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(135deg, rgba(246,195,213,.08), rgba(183,165,255,.06));
  box-shadow: var(--shadow);
  padding: 20px;
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
}
.band__stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{
  min-width: 120px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(16,16,21,.65);
  padding: 12px 14px;
}
.stat__n{font-weight:900; font-size: 1.2rem}
.stat__l{color: rgba(255,255,255,.70); font-weight:700; text-transform:uppercase; letter-spacing:.12em; font-size:.72rem}

.masonry{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 180px;
  gap: 12px;
}
.shot{
  border:0; padding:0; cursor:pointer;
  border-radius: 18px;
  background: var(--img) center/cover no-repeat;
  position:relative;
  overflow:hidden;
  outline: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.shot::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
  opacity:.0;
  transition: opacity .18s ease;
}
.shot:hover::after{opacity:1}
.shot:nth-child(1){grid-row: span 2;}
.shot:nth-child(4){grid-column: span 2;}
.center{display:flex; justify-content:center; margin-top: 18px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.split__media{
  min-height: 420px;
  border-radius: calc(var(--r) + 8px);
  background:
    linear-gradient(135deg, rgba(246,195,213,.12), rgba(183,165,255,.10)),
    var(--img) center/cover no-repeat;
  outline: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.split__content{
  border-radius: calc(var(--r) + 8px);
  background: rgba(16,16,21,.60);
  outline: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: var(--shadow);
}
.pillList{display:grid; gap:10px; margin: 14px 0 18px}
.pill{
  display:flex; justify-content:space-between; gap:12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
}
.pill strong{font-weight:900}
.pill span{color: rgba(255,255,255,.72)}

.faq{display:grid; gap:10px}
.faq__item{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(16,16,21,.62);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item p{color: rgba(255,255,255,.74); margin-top: 8px}

.form{
  border-radius: calc(var(--r) + 10px);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(16,16,21,.70);
  box-shadow: var(--shadow);
  padding: 16px;
}
.form__progress{
  height: 10px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(0,0,0,.08);
  overflow:hidden;
  margin-bottom: 14px;
}
.form__progress .bar{
  display:block; height:100%;
  width: 33.333%;
  background: linear-gradient(135deg, rgba(246,195,213,1), rgba(183,165,255,1));
  border-radius: 999px;
  transition: width .2s ease;
}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
label{display:grid; gap:8px; font-weight:700}
input, select, textarea{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(246,195,213,.55)}
textarea{resize: vertical}
.form__nav{display:flex; gap:10px; justify-content:flex-end; margin-top: 12px; flex-wrap:wrap}
.check{
  grid-auto-flow: column;
  align-items:center;
  justify-content:flex-start;
  gap: 10px;
  margin-top: 8px;
}
.check input{width:18px; height:18px}
.hint{color: rgba(255,255,255,.65); font-size:.92rem}

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{display:flex; justify-content:space-between; gap:16px; align-items:flex-start}
.footer__links{display:flex; gap:16px; flex-wrap:wrap}
.brand--footer .brand__mark{width:28px; height:28px; border-radius: 10px}

.lightbox[hidden]{display:none !important;}

.lightbox{
  position:fixed; inset:0; z-index: 80;
  display:grid; place-items:center;
  background: rgba(0,0,0,.75);
  
  padding: 18px;
}
.lightbox__img{
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  outline: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute; top: 18px; right: 18px;
  width:46px; height:46px; border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:flex}
  .header__inner{padding-left: 12px; padding-right: 12px;}
  .header__social{display:none}

/* Mobile menu: full width under header */
.mobile__panel{
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  padding: 18px 20px;
}
.mobile__panel > a{
  display:block;
  width:100%;
  padding: 12px 12px;
}


  .hero__inner{grid-template-columns: 1fr; min-height: auto; padding-top: 44px}

/* Mobile: center hero content */
.hero__content{margin:0 auto; text-align:center; align-items:center;}
.hero__miniBrand{margin-left:auto; margin-right:auto;}
.heroBadges{justify-content:center;}
/* Mobile: hide review dots */
.reviewsDots{display:none !important;}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .masonry{grid-template-columns: 1fr 1fr; grid-auto-rows: 170px}
  .shot:nth-child(1){grid-row: span 1;}
  .shot:nth-child(4){grid-column: span 2;}
}
@media (max-width: 560px){
  .cards{grid-template-columns: 1fr}
  .row{grid-template-columns: 1fr}
  .band__inner{flex-direction:column; align-items:stretch}

  /* Mobile: center hero content + keep it readable */
  .hero__content{margin: 0 auto; text-align: center; align-items:center;}
  .hero__miniBrand{margin-left:auto; margin-right:auto;}
  .heroBadges{justify-content: center;}

  /* Mobile: hide review dots (pagination) */
  .reviewsDots{display:none !important;}

  /* Mobile: add a bit more breathing room in the header */
  .header__inner{padding-left: 12px; padding-right: 12px;}
}

/* Also hide review dots on small tablets (some devices are >560px) */
@media (max-width: 900px){
  .reviewsDots{display:none !important;}
}


/* HERO IMAGE SLIDER */
.hero__bg--slider{
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
  pointer-events:none;
}


/* --- HERO (photo + changing background) --- */
.header{
  background: rgba(255,255,255,.82);
  
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav a{color: rgba(0,0,0,.72)}
.nav a:hover{color:#000; text-decoration-color: rgba(0,0,0,.25)}
.brand__text{color:#111}
.btn--ghost{background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color:#111}
.btn--ghost:hover{background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.12)}
.burger{background: var(--color-primary); border-color: rgba(0,0,0,.10)}
.burger span{background: #111}

.hero--photo{
  background:#ffffff;
  color:#111;
}
.hero--photo h1{color:#111}
.hero--photo .lead{color: rgba(0,0,0,.70)}
.hero--photo .kicker{color: rgba(0,0,0,.55)}
.hero--photo .chip{border-color: rgba(0,0,0,.10); background: rgba(255,255,255,.65); color: rgba(0,0,0,.70)}
.hero--photo .btn--primary{color:#121016}
.hero--photo .btn--ghost{color:#111}

.hero__photo{
  position:absolute;
  inset: 0;
  overflow:hidden;
}
.hero__photoLayer{
  filter: saturate(1.05) contrast(1.08) brightness(.92);

  position:absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.03);
  transition: opacity .7s ease, transform 7s ease;
  opacity:0;
}
.hero__photoLayer.is-active{
  opacity:1;
  transform: scale(1.0);
}
.hero__overlay{
  position:absolute;
  inset:0;
  /* Left side much clearer for text + soft vignette to increase contrast */
  background:
    radial-gradient(900px 520px at 26% 55%, rgba(255,255,255,.86) 0%, rgba(255,255,255,.70) 45%, rgba(255,255,255,.28) 72%, rgba(255,255,255,.12) 100%),
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,.26) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.08) 35%, rgba(0,0,0,.18) 100%);
}
.hero__rings{
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 58% -10%, rgba(255,197,74,.65) 0 90px, transparent 92px),
    radial-gradient(circle at 72% -12%, rgba(255,133,170,.55) 0 150px, transparent 152px),
    radial-gradient(circle at 18% 40%, rgba(255,197,74,.35) 0 120px, transparent 122px),
    radial-gradient(circle at 12% 52%, rgba(255,133,170,.30) 0 90px, transparent 92px);
  mix-blend-mode: multiply;
  opacity:.95;
}

.hero--photo .hero__inner{
  min-height: 74vh;
  padding: 96px 0 34px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero__formCard{
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  padding: 14px;
}
.formMini__title{
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.formMini__subtitle{
  color: rgba(0,0,0,.55);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 12px;
}
.mini{display:grid; gap: 10px}
.mini__label{
  font-weight: 800;
  font-size: .95rem;
  color: rgba(0,0,0,.72);
}
.mini__label span{color:#ff6b8a}
.mini select, .mini input{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
  border-radius: 12px;
  padding: 11px 12px;
}
.mini__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radio{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
  cursor:pointer;
}
.radio input{width:16px; height:16px}
.radio span{font-weight: 800; color: rgba(0,0,0,.78)}
.mini__actions{display:flex; gap:10px; justify-content:space-between; flex-wrap:wrap}
.mini__progress{
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  overflow:hidden;
}
.mini__progress span{
  display:block;
  height:100%;
  background: linear-gradient(135deg, rgba(246,195,213,1), rgba(183,165,255,1));
}
.mini__hint{margin: 0; font-size: .88rem; color: rgba(0,0,0,.55)}
.separator--white path{fill:#ffffff}

/* Make body background lighter at top to match hero */
body{
  background: #fff;
}
.section{background: transparent;}
.section--dark{background:#0b0b0d; color:#fff}
.section--alt{background: rgba(255,255,255,.6)}
.band{background: transparent}
.footer{background: transparent}

/* HERO wider container */
.hero--photo .container{
  max-width: 1400px;
}

.hero__content{
  max-width: 640px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.08);
  
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}
.hero__content h1{
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.hero__content .lead{
  color: rgba(0,0,0,.72);
}


/* --- HERO readability improvements --- */
.hero__overlay{
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.85) 38%,
      rgba(255,255,255,.55) 62%,
      rgba(255,255,255,.30) 100%);
  
}

.hero__content{
  background: rgba(255,255,255,.65);
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.hero--photo h1{
  color:#111;
}

.hero--photo .lead{
  color: rgba(0,0,0,.75);
}

.hero__photoLayer{
  filter: saturate(0.9) contrast(0.95);
}

@media (max-width: 980px){
  .hero__content{
    background: rgba(255,255,255,.78);
  }
}



/* ===== MX DREAM EVENT - HERO MDB STYLE OVERRIDES ===== */
:root{ --max: 1320px; }

.header{
  position: sticky; top:0; z-index: 50;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  backdrop-filter: none !important;
}
.nav a{ color: rgba(0,0,0,.78) !important; }
.nav a:hover{ color:#000 !important; text-decoration-color: rgba(0,0,0,.25) !important; }
.brand__text{ color:#111 !important; }
.btn--ghost{ background: rgba(0,0,0,.04) !important; border-color: rgba(0,0,0,.10) !important; color:#111 !important; }

body{ background:#fff !important; }

.hero--mdb{
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  border-bottom: 0;
  isolation: isolate; /* prevents overlays affecting outside */
}
.hero--mdb .hero__photo{
  position:absolute;
  inset:0;
  z-index: 0;
}
.hero--mdb .hero__photoLayer{
  z-index: 0;

  position:absolute; inset:0;
  background:center/cover no-repeat;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .7s ease, transform 7s ease;
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}
.hero--mdb .hero__photoLayer.is-active{ opacity:1; transform: scale(1.0); }

.hero--mdb .hero__overlay{
  position:absolute;
  left:0; right:0; top:0;
  bottom: 110px; /* stop before the white wave */
  z-index: 1;
  background:
    radial-gradient(900px 520px at 22% 52%, rgba(0,0,0,.32) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.10) 70%, rgba(0,0,0,0) 100%),
    linear-gradient(90deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.20) 40%, rgba(0,0,0,.08) 65%, rgba(0,0,0,0) 100%);
}

.hero--mdb .hero__rings{
  position:absolute; left:0; right:0; top:0; bottom:110px;
  pointer-events:none;
  z-index: 2;
  background:
    radial-gradient(circle at 72% -14%, rgba(255,197,74,.72) 0 160px, transparent 162px),
    radial-gradient(circle at 86% -18%, rgba(255,133,170,.62) 0 230px, transparent 232px),
    radial-gradient(circle at 12% 46%, rgba(255,197,74,.45) 0 170px, transparent 172px),
    radial-gradient(circle at 18% 58%, rgba(255,133,170,.35) 0 140px, transparent 142px);
  mix-blend-mode: screen;
  opacity:.55;
}

.hero--mdb .hero__wave{
  position:absolute; left:0; right:0; bottom:0;
  height: 120px;
  z-index: 2;
}
.hero--mdb .hero__wave svg{ width:100%; height:100%; }
.hero--mdb .hero__wave path{ fill:#fff; }

.hero--mdb .hero__inner{
  z-index: 3;

  position:relative;
  min-height: 78vh;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 36px;
  align-items: center;
  padding: 90px 0 70px;
}

.hero--mdb .hero__content{
  max-width: 760px;
  color:#fff;
  padding: 0;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.hero--mdb .hero__miniBrand{
  letter-spacing:.22em;
  text-transform: uppercase;
  font-size:.78rem;
  opacity:.85;
  margin-bottom: 14px;
}
.hero--mdb h1{
  font-family: "Albert Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  margin: 0 0 14px 0;
  color: #ffffff;
  text-shadow: 0 10px 35px rgba(0,0,0,.45);
}
.hero--mdb .hero__pill{
  display:inline-flex;
  padding: .62rem 1rem;
  border-radius: 999px;
  background: rgba(255,190,65,.92);
  color: #1b1208;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.hero--mdb .hero__form{
  width: min(560px, 100%);
  justify-self: end;
  background: rgba(255,255,255,.98);
  border-radius: 10px;
  padding: 26px 26px 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.08);
}
.hero--mdb .hero__formTitle{
  font-weight: 900;
  color:#111;
  margin: 0 0 10px 0;
}
.hero--mdb .hero__formTitle span{ color:#ff4c7a; }

.hero--mdb .hero__formRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.heroRadio{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor:pointer;
  font-weight: 800;
  color:#111;
}
.heroRadio input{ width:16px; height:16px; }

.heroSelect{
  width:100%;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.14);
  background:#fff;
  font-weight: 700;
  color:#111;
}

.heroBtn{
  width:100%;
  margin-top: 14px;
  padding: 14px 14px;
  border:0;
  border-radius: 6px;
  background: var(--color-primary);
  color:#fff;
  font-weight: 900;
  font-size: 1rem;
  cursor:pointer;
}
.heroBtn:hover{ filter: brightness(.98); }


.hero__actions{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 520px){
  .hero__actions{ grid-template-columns: 1fr; }
}
.heroBtn--ghost{
  background: #fff;
  color:#111;
  border: 1px solid rgba(0,0,0,.14);
}
.heroBtn--ghost:hover{ background: rgba(0,0,0,.02); }

.hero__formRow--1{ grid-template-columns: 1fr !important; }
.heroRadio--left{ justify-content:flex-start; }

.file-input{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px;
  border: 2px dashed rgba(0,0,0,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  margin-bottom: 8px;
}
.file-input input[type=file]{ display:none; }
.file-input .btn{ width:auto; margin:0; padding: 10px 14px; border-radius: 10px; }
.file-input .file-name{ font-weight: 700; color: rgba(0,0,0,.65); }
.help{ font-size:.92rem; color:#d11c3a; font-weight:700; margin-bottom: 12px; }
.muted{ color: rgba(0,0,0,.55); font-weight: 800; }


.heroProgress{
  height: 8px;
  border-radius: 999px;
  background: rgba(248,170,22,.22);
  margin-top: 14px;
  overflow:hidden;
}
.heroProgress span{
  display:block;
  width: 26%;
  height:100%;
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 980px){
  .hero--mdb .hero__inner{
    grid-template-columns: 1fr;
    padding: 74px 0 70px;
  }
  .hero--mdb .hero__form{ justify-self: start; }
}


/* ===== FIX HERO OVERLAY OVERFLOW ===== */
.hero--mdb{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 0;
}
.hero--mdb .hero__photo{
  position:absolute;
  inset:0;
  z-index: 1;
}
.hero--mdb .hero__overlay,
.hero--mdb .hero__rings{
  position:absolute;
  inset:0;
  z-index: 2;
  pointer-events:none;
}
.hero--mdb .hero__inner{
  position:relative;
  z-index: 3;
}

body, button, input, select, textarea{
  font-family: 'Albert Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

.header .btn--primary{
  padding: 8px 20px !important;
  border-radius: 999px;
  font-weight: 800;
  background: var(--color-primary) !important;
  color:#111 !important;
}

/* Header CTA */
.btn--cta{
  padding: .62rem 1.25rem;
  border-radius: 999px;
  border: 0;
  background: var(--color-primary);
  color: var(--on-primary);
  font-weight: 600;
}
.btn--cta:hover{
  background: rgba(235,170,50,.95);
}
.btn--cta:hover{ filter: brightness(.98); }

/* HEADER LOGO ONLY */
.brand{
  background: none !important;
  padding: 0 !important;
}
.brand *{
  background: none !important;
}
.logo-img{
  height: 68px;
  width: auto;
  display: block;
}



/* Force hero badges to match "Devis en ligne" button orange */
.heroBadge{
  background: var(--color-primary);
  color: var(--on-primary) !important;
  font-weight: 600 !important;
}
.heroBadge:hover{
  background: rgba(235,170,50,.95) !important;
}

/* FINAL FORCE hero badges */
.heroBadges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.heroBadge{
  background: var(--color-primary);
  color: var(--on-primary) !important;
  padding:.6rem 1rem;
  border-radius:999px;
  font-weight:600;
}


/* --- Form wizard additions --- */
.heroInput, .heroTextarea{
  width:100%;
  color: #111;
  padding: 14px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  background: #fff;

.heroInput::placeholder, .heroTextarea::placeholder{ color: #9aa0a6; opacity: 1; }
.heroInput:-webkit-autofill, .heroTextarea:-webkit-autofill{
  -webkit-text-fill-color: #111;
  box-shadow: 0 0 0px 1000px #fff inset;
}
}

/* Fix: keep the required "*" inline on steps 2 & 3 (global label rules were stacking it) */
.hero--mdb .hero__form label.hero__formTitle{
  display: block;
  font-weight: 900;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.25;
}
.hero--mdb .hero__form label.hero__formTitle span{
  display: inline;
  margin-left: 4px;
  color: #ff4c7a;
}

/* Fix: remove number spinners for a cleaner UI */
.hero--mdb .hero__form input[type="number"]::-webkit-outer-spin-button,
.hero--mdb .hero__form input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.hero--mdb .hero__form input[type="number"]{ -moz-appearance: textfield; }
.heroTextarea{ resize: vertical; min-height: 110px; }

.heroInput:focus, .heroTextarea:focus{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.formNav{
  display:flex;
  gap:10px;
  margin-top: 14px;
}

/* In the nav row, avoid the primary button forcing full width */
.formNav .heroBtn{
  flex: 2;
  width: auto;
  margin-top: 0;
}
.formNav .ghostBtn{ flex: 1; }
.ghostBtn{
  flex: 1;
  padding: 14px 14px;
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font-weight: 900;
  cursor:pointer;
}
.twoCols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media (max-width: 420px){
  .twoCols{ grid-template-columns: 1fr 1fr; gap:10px; }
}

.rgpd{
  display:flex;
  gap:10px;
  align-items:center;   /* checkbox + texte sur la même ligne */
  width:100%;
  font-size:.9rem;
  color:#111;
}
.rgpd input{
  width:16px;
  height:16px;
  flex:0 0 auto;
  margin-top:0;
}
.rgpd span{
  flex:1 1 auto;
  min-width:0;         /* évite le rendu en "colonne" */
  display:block;
  width:auto;
  height:auto;
  background:none;
  border-radius:0;
  line-height:1.35;
  text-align:left;
}
.formHint{
  margin-top: 8px;
  font-size: .9rem;
  color:#b00020;
}

/* MultiSelect (chips) */
.multiSelect{ position: relative; }
.multiSelect__control{
  width:100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #fff;
  display:flex;
  gap:8px;
  align-items:center;
  cursor:pointer;
}
.multiSelect__control:focus{
  outline:none;
  border-color:var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}
.multiSelect__chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  flex: 1;
}
.multiSelect__placeholder{
  color:#888;
  flex:1;
}
.multiSelect__chev{ opacity:.7; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: color-mix(in srgb, var(--color-primary) 18%, transparent);
  border: 1px solid rgba(248,170,22,.55);
  color:#111;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
}
.chip__x{
  width:18px;
  height:18px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--color-primary);
  color:#fff;
  font-size: 12px;
  line-height: 1;
}

.multiSelect__menu{
  position:absolute;
  left:0; right:0;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  overflow:hidden;
  z-index: 50;
}
.multiSelect__item{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-weight: 700;
}
.multiSelect__item:hover{
  background: rgba(248,170,22,.12);
}


/* ======================
   Devis page (no hero)
   ====================== */
.devisPage .pageBanner{
  background: var(--color-primary);
padding: 48px 0 44px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.devisPage .pageBanner__title{
  margin: 0;
  text-align: center;
  color: var(--on-primary);
  font-weight: 950;
  letter-spacing: .2px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}
.devisPage .devisSection{
  padding: 34px 0 80px;
}
.devisPage .devisSection .hero__form{
  margin: 0 auto;
}


/* ===== Devis page tweaks ===== */
.devisPage .pageBanner{
  /* Bloc titre plus haut + titre centré verticalement */
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}

.devisPage .pageBanner__inner{
  width: 100%;
  position: relative;
  z-index: 2;
}
.devisPage .pageBanner__title{
  color: var(--on-primary);
  text-align:center;
  font-weight:800;
  letter-spacing:.2px;
}
.pageBanner__wave{
  position:absolute;
  left:0; right:0;
  bottom:0;
  height:92px;
  line-height:0;
}
.pageBanner__wave svg{ width:200%; height:100%; display:block; }
.pageBanner__wave .wave{
  fill:#fff;
  opacity:.95;
  transform: translateX(0) translateZ(0);
  will-change: transform;
  animation: waveMove 12s linear infinite;
}
.pageBanner__wave .wave--back{
  opacity:.55;
  will-change: transform;
  animation: waveMove 18s linear infinite;
}

@media (prefers-reduced-motion: reduce){
  .pageBanner__wave .wave,
  .pageBanner__wave .wave--back{ animation: none; }
}
@keyframes waveMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-25%); }
}

.devisPage .devisIntro{
  margin: 22px 0 18px;
  color:#222;
  font-size: 15px;
  line-height: 1.6;
}
.devisPage .devisIntro p{ margin:0; }

/* Card wrapper for the full quote form on devis.php */
.devisPage .formCard{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  padding: 18px;
}
.devisPage .formCard__title{
  font-family: "Fraunces", serif;
  font-weight: 700;
  color:#111;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin: 2px 0 14px;
}
.devisPage .hero__form--card{
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.devisPage .hero__formTitle{
  color:#111;
}
.devisPage .hero__formTitle span{
  color:#e83d68;
}
.devisPage .heroRadio span{
  color:#111;
}
.devisPage .hero__formRow{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
}
.devisPage .heroRadio{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}



/* ===== Devis contact blocks ===== */
.devisPage .contactBlocks{
  display:flex;
  gap:18px;
  margin-top: 22px;
  align-items: stretch;
}
.devisPage .contactBlock{
  flex:1;
  border-radius: 16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  padding: 18px 18px 16px;
  text-align:center;
  color:#111;
  text-decoration:none;
}
.devisPage .contactBlock--phone{
  background: var(--color-primary);
  border-color: rgba(0,0,0,.03);
  color: var(--on-primary);
}
.devisPage .contactIcon{
  width:44px; height:44px;
  margin: 0 auto 10px;
  border-radius: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(248,170,22,.12);
  color:#111;
}
.devisPage .contactBlock--phone .contactIcon{
  background: rgba(255,255,255,.22);
  color:#fff;
}
.devisPage .contactBlockTitle{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}
.devisPage .contactBlockTitle--small{
  font-size: 12px;
  letter-spacing: .16em;
  opacity: .8;
  margin-bottom: 4px;
}
.devisPage .contactBlockText{
  font-size: 14px;
  color: rgba(0,0,0,.75);
}
.devisPage .contactBlock--phone .contactBlockText{
  color:#fff;
}
.devisPage .contactBlockText--big{
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .02em;
}
@media (max-width: 820px){
  .devisPage .contactBlocks{ flex-direction: column; }
}

/* -------------------------
   Reviews (manual)
------------------------- */
.reviewsSection{
  margin-top: 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 16px 16px 12px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

/* Variante "flat" (ex: sur l'index) : pas de fond, pas de contour, pas d'ombre */
.reviewsSection--flat{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.reviewsHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}
.reviewsTitle{
  font-weight: 800;
  font-size: 18px;

  color:#0f172a;
}
.reviewsSubtitle{
  font-size: 13px;
  color: rgba(15,23,42,.62);
  margin-top: 2px;
}
.reviewsNav{display:flex; gap:8px;}
.reviewsBtn{
  width:38px;height:38px;
  border-radius: 12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.reviewsBtn:disabled{opacity:.4;cursor:not-allowed;}
.reviewsTrack{
  display:flex;
  width:100%;
  transition: transform .35s ease;
  will-change: transform;
}

.reviewSlide{
  flex: 0 0 100%;
  display: flex;
  gap: 12px;
  padding: 2px;
  align-items: flex-start; /* avis courts = cards plus courtes */
}

/* Large: 3 cards */
@media (min-width: 1024px){
  .reviewSlide .reviewCard{ flex: 0 0 calc((100% - 24px) / 3); }
}
/* Medium: 2 cards */
@media (min-width: 720px) and (max-width: 1023px){
  .reviewSlide .reviewCard{ flex: 0 0 calc((100% - 12px) / 2); }
}
/* Small: 1 card */
@media (max-width: 719px){
  .reviewSlide .reviewCard{ flex: 0 0 100%; }
}
.reviewCard{
  flex: 0 0 auto;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background:#fff;

  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.reviewTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.reviewAuthor{font-weight:800;color:#0f172a;}
.reviewStars{
  letter-spacing: 1px;
  font-size: 14px;

  color: rgba(248,170,22,.98);
}
.reviewText{
  color: rgba(15,23,42,.92);
  font-size: 14px;
  line-height: 1.5;
  min-height: 72px;
}
.reviewMeta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15,23,42,.58);
}
.reviewSource{white-space:nowrap;}
.reviewsDots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 10px;
}
.reviewsDots span{
  width:8px;height:8px;border-radius:999px;
  background: rgba(15,23,42,.18);
}
.reviewsDots span.is-active{
  background: rgba(248,170,22,.95);
}

.reviewsSub{font-size:13px;color:rgba(15,23,42,.62);margin-top:2px}


/* Fix reviews carousel layout */
.reviewsCarousel{
  display:flex;
  align-items:center;
  gap:10px;
}
.reviewsViewport{
  overflow:hidden;
  width:100%;
}
.reviewsNav{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color: rgba(15,23,42,.80);
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex:0 0 auto;
  transition: transform .15s ease, box-shadow .15s ease;
}
.reviewsNav:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(15,23,42,.10)}
.reviewsNav:disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}
.reviewsTrack{gap:0}
.reviewCard{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 28px rgba(15,23,42,.06);
}
.reviewText{min-height: 84px;}
@media (min-width: 900px){
  .reviewsSection{padding:18px 18px 14px;}
  .reviewText{min-height: 72px;}
}



/* Reviews carousel layout */
.reviewsCarousel{ position: relative; display:flex; align-items:center; gap:12px; }
.reviewsViewport{ overflow:hidden; width:100%; }
.reviewsNav{
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  color:#0f172a;
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
  cursor:pointer;
  flex: 0 0 auto;
}
.reviewsNav:disabled{ opacity:.35; cursor:not-allowed; box-shadow:none; }
.reviewCard--loading{
  color:#0f172a;
  font-weight:600;
}
.reviewText{ color:#0f172a; }
.reviewMeta{ color: rgba(15,23,42,.70); }
.reviewAuthor{ font-size: 15px; }
.reviewStars{ font-size: 15px; }

/* Avis : hauteur des cards auto (pas de min-height forcé) */
.reviewsSection .reviewText{ min-height: 0 !important; }

/* Bouton "Voir tous les avis" */
.reviewsMore{
  display:flex;
  justify-content:center;
  margin-top: 12px;
}
.reviewsDots span{
  width:9px;height:9px;border-radius:999px;
  background: rgba(15,23,42,.20);
  cursor:pointer;
}
.reviewsDots span.is-active{ background: var(--color-primary); }


/* =============================
   Prestations (Index)
   ============================= */
.services{
  padding: 56px 0 64px;
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.sectionHead h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.servicesGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px){
  .servicesGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .servicesGrid{ grid-template-columns: repeat(4, 1fr); }
}

.serviceCard{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  padding: 14px 14px 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.serviceCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}
.serviceImg{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.10));
}
.serviceCard h3{
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align:center;
}
.serviceCard p{
  margin: 0;
  color: rgba(15,23,42,.75);
  line-height: 1.45;
  text-align:center;
}


/* === FIX LISIBILITE PRESTATIONS (FORCE) === */
.services .sectionHead h2{
  color: var(--color-primary) !important;
  opacity: 1 !important;
}
.services .serviceCard h3{
  color: #000 !important;
  opacity: 1 !important;
}

.services .sectionHead h2,
.services .serviceCard h3{
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* === Prestation page === */
/* Prestation : bannière comme Devis + page claire */
.prestaPageSection{padding:34px 0 80px; background:#fff; color:#111}
.prestaFeatured{border-radius:22px; overflow:hidden; border:1px solid rgba(0,0,0,.08); background:#fff; margin: -90px auto 18px; box-shadow: 0 18px 60px rgba(0,0,0,.10)}
.prestaFeatured img{width:100%; height: clamp(220px, 32vw, 420px); object-fit:cover; display:block}
.prestaCard{background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:22px; padding:22px; box-shadow: 0 18px 60px rgba(0,0,0,.08)}
.prestaCard h2{margin-top:0}

/* Carousel en boucle */
.prestaLoop{margin-top:22px}
.prestaLoop__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0 0 10px}
.prestaLoop__head h2{margin:0; color:#111}
.prestaLoop__viewport{overflow:hidden;border-radius:22px;border:1px solid rgba(0,0,0,.08);background:#fff; box-shadow: 0 18px 60px rgba(0,0,0,.08)}
.prestaLoop__track{display:flex; gap:12px; padding:14px; width:max-content; will-change: transform; animation: prestaLoopMove var(--dur, 24s) linear infinite}
.prestaLoop__viewport:hover .prestaLoop__track{animation-play-state: paused}
.prestaLoop__item{appearance:none;border:0;background:transparent;padding:0;cursor:pointer;flex:0 0 auto;border-radius:18px;overflow:hidden}
.prestaLoop__item img{width:280px;height:190px;object-fit:cover;display:block;border-radius:18px;border:1px solid rgba(0,0,0,.06)}
@media (max-width:720px){
  .prestaLoop__item img{width:240px;height:170px}
  .prestaFeatured{margin:-70px auto 16px}
}
@keyframes prestaLoopMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Modal photo */
.photoModal{position:fixed;inset:0;z-index:9999}
.photoModal[hidden]{display:none}
.photoModal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.75)}
.photoModal__inner{position:relative;max-width:min(980px, 92vw);max-height:86vh;margin:6vh auto 0;}
.photoModal__img{width:100%;height:auto;max-height:86vh;object-fit:contain;display:block;border-radius:18px;border:1px solid rgba(255,255,255,.18);background:#111}
.photoModal__close{position:absolute;top:-14px;right:-14px;width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.22);background:rgba(0,0,0,.55);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center}
.photoModal__close:hover{background:rgba(0,0,0,.70)}

/* === Prestations (dynamic) === */
.serviceMedia{width:100%;height:170px;border-radius:18px;overflow:hidden;background:rgba(15,23,42,.04);border:1px solid rgba(15,23,42,.08);margin-bottom:12px}
.serviceMedia img{width:100%;height:100%;object-fit:cover;display:block}
.serviceMedia--placeholder{background:linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.03))}

/* === Home - présentation === */
.home-presentation{
  /* Moins haute (plus proche de la référence) */
  padding:100px 0 32px;
  /* Section pleine largeur, ton du site (plus clair), sans effet “card” */
  background:
    radial-gradient(900px 320px at 18% 22%, rgba(248,170,22,.22), rgba(248,170,22,0) 70%),
    radial-gradient(680px 260px at 78% 70%, color-mix(in srgb, var(--color-primary) 14%, transparent), rgba(248,170,22,0) 72%),
    /* un peu plus jaune, mais léger */
    #ffe0ad;
}
.presentation-card{
  /* (compat) Ancien wrapper “card” : neutralisé pour garder une section pleine largeur */
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:0;
}
.presentation-grid{display:grid;grid-template-columns:350px minmax(0,1fr);gap:22px;align-items:start}
.presentation-photo{max-width:400px;}
.presentation-photo img{width:100%;height:auto;display:block;border-radius:0}
.presentation-content h2{margin:0 0 8px;font-size:30px;line-height:1.12;color:#0f172a;letter-spacing:-.02em}
.presentation-content > p{margin:0 0 12px;color:rgba(15,23,42,.78);font-weight:600;line-height:1.55}
.presentation-content h3{margin:12px 0 6px;font-size:16px;color:#0f172a;font-weight:800}
.presentation-content h3::after{content:"";display:block;width:44px;height:3px;border-radius:999px;background:rgba(248,170,22,.90);margin-top:8px}
.presentation-content .lead{margin:0;color:rgba(15,23,42,.72);line-height:1.65}

.presentation-reassurance{margin-top:14px;display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:12px}

/* Lisibilité sur fond jaune clair (évite un éventuel style global qui forcerait le texte en blanc) */
.presentation-reassurance,
.presentation-reassurance *{color:#1f1f1f}
.presentation-reassurance .reassurance-item p{color:#4b4b4b}
.presentation-reassurance .reassurance-icon i{color:#fff}
.reassurance-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:12px 12px;
  text-align:center;
  backdrop-filter:saturate(120%) blur(4px);
}
.reassurance-card--light{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
}
.reassurance-icon{width:42px;height:42px;border-radius:14px;display:inline-grid;place-items:center;margin:0 auto 10px;background:var(--color-primary);box-shadow:0 12px 26px rgba(15,23,42,.12);border:0}
.reassurance-icon i{font-size:18px;color:#fff}
.reassurance-card--light .reassurance-icon i{color:#fff}
.reassurance-card h4{margin:0 0 6px;font-size:15px;line-height:1.2;color:#0f172a}
.reassurance-card p{margin:0;color:rgba(15,23,42,.72);font-size:12px;line-height:1.35}

@media (max-width: 900px){
  .presentation-card{
  /* (compat) Ancien wrapper “card” : neutralisé pour garder une section pleine largeur */
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:0;
}
  .presentation-grid{grid-template-columns:1fr;gap:18px}
  .presentation-content h2{margin:0 0 10px;font-size:32px;line-height:1.12;color:#0f172a;letter-spacing:-.02em}
  .presentation-reassurance{grid-template-columns:repeat(2, minmax(0,1fr))}
}

@media (max-width: 520px){
  .presentation-reassurance{grid-template-columns:1fr}
}


/* ======================
   Footer (orange + vague)
   ====================== */
.siteFooter{
  position:relative;
  margin-top: 36px;
  background: var(--color-primary);
  color:#111;
  overflow:hidden;
}
.siteFooter__wave{
  position:absolute;
  left:0; right:0;
  top:0;
  height:92px;
  line-height:0;
  /* Flip only vertically (keep left/right direction like the page banner) */
  transform: scaleY(-1);
}
.siteFooter__wave svg{width:200%; height:100%; display:block;}
.siteFooter__wave .wave{fill:#fff; opacity:.95; animation: waveMove 12s linear infinite;}
.siteFooter__wave .wave--back{fill:#fff; opacity:.55; animation: waveMove 18s linear infinite;}

.siteFooter__inner{
  padding: 120px 0 34px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}

.siteFooter__logo{height: 74px; width:auto; display:block;}
.siteFooter__logoLink{display:inline-block;}

.siteFooter__infos{margin-top: 10px; display:grid; gap:8px; font-weight:700;}
.siteFooter__info{display:flex; gap:10px; align-items:center; color:rgba(0,0,0,.86)}
.siteFooter__info i{width:18px; text-align:center;}
.siteFooter__info a{color:rgba(0,0,0,.86); text-decoration:none;}
.siteFooter__info a:hover{text-decoration:underline;}

.siteFooter__title{font-weight:900; letter-spacing:.6px; text-transform:uppercase; font-size:12px; margin-bottom:10px;}
.siteFooter__links{display:grid; gap:10px;}
.siteFooter__links a{color:rgba(0,0,0,.86); text-decoration:none; font-weight:800;}
.siteFooter__links a:hover{text-decoration:underline;}

.siteFooter__bottom{
  background: rgba(255,255,255,.28);
  color:#111;
  border-top: 1px solid rgba(0,0,0,.10);
}
.siteFooter__bottomText{
  padding: 14px 0;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:center;
  align-items:center;
  font-weight:900;
}
.siteFooter__credit{color:#111; text-decoration:none;}
.siteFooter__credit:hover{text-decoration:none; opacity:.9;}

@media (max-width: 900px){
  .siteFooter__inner{grid-template-columns:1fr; padding: 110px 0 28px; text-align:center;}
  .siteFooter__info{justify-content:center;}
}

@media (prefers-reduced-motion: reduce){
  .siteFooter__wave .wave,
  .siteFooter__wave .wave--back{animation:none;}
}


/* --- Réalisations page --- */
.realTabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 18px;
}
.realTab{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: rgba(0,0,0,.75);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.realTab:hover{
  background: var(--color-primary) !important;
  color:#fff !important;
  border-color: transparent !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.realTab.is-active{
  background: var(--color-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.realGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px){ .realGrid{grid-template-columns: repeat(3,1fr);} }
@media (max-width: 800px){ .realGrid{grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .realGrid{grid-template-columns: 1fr;} }

.realShot{
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  background: var(--img) center/cover no-repeat;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.realShot__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.22) 100%);
  opacity: 0;
  transition: opacity .18s ease;
}
.realShot:hover .realShot__overlay{ opacity: 1; }

.realLightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.74);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 22px;
}
.realLightbox.is-open{ display:flex; }
.realLightbox__img{
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  background: #fff;
}
.realLightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.realLightbox__close:hover{ background: rgba(0,0,0,.55); }

.noScroll{ overflow: hidden; }

/* When the mobile menu is open, prevent background scroll */
body.is-mobile-open{ overflow: hidden; }


/* ===== Réalisations page ===== */
/* On utilise le même bandeau (.pageBanner) que les autres pages (devis, prestations, etc.). */
.realisationsPage main{
  background:#fff;
  color:#111;
}
.realisationsPage .sectionHead h2{ color:#111; }
.realisationsPage .sectionHead p,
.realisationsPage .sectionSub{ color:#333; }

.burger:focus{outline: 2px solid rgba(0,0,0,.25); outline-offset: 2px}



/* =========================
   MOBILE NAV OVERLAY (FIX)
   Opens under header, full width, site primary color, vertical links
   ========================= */
@media (max-width: 900px){
  .header__inner{ padding-left: 14px !important; padding-right: 14px !important; }

  .burger{
    background: var(--color-primary) !important;
    border: 1px solid rgba(0,0,0,.18) !important;
    box-shadow: none !important;
  }
  .burger span{ background: #111 !important; }

  /* Fullscreen panel below header */
  .mobile{
    display:none;
    position: fixed;
    left:0; right:0; bottom:0;
    top: 72px; /* under header */
    background: var(--color-primary);
    z-index: 49; /* header is 50 */
    padding: 16px;
    padding-top: 64px; /* more spacing under header */
  }
  .mobile.is-open{ display:block !important; }

  .mobile__panel{
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    gap: 12px !important;
  }
  .mobile__panel > a{
    display:block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.35);
    border: 1px solid rgba(0,0,0,.10);
    color: #111 !important;
    font-weight: 700;
    text-align: center;
  }
  .mobile__panel > a:hover{ background: rgba(255,255,255,.50); }

  .mobile__panel .btn--cta,
  .mobile__panel .btn--block{
    background: rgba(255,255,255,.65) !important;
    border-color: rgba(0,0,0,.12) !important;
    color:#111 !important;
  }

  /* Devis tab: pure white on mobile */
  .mobile__panel .mobile__cta{
    background: #fff !important;
    color:#111 !important;
  }

  /* Social icons under Devis */
  .mobile__social{
    display:flex;
    justify-content:center;
    gap: 14px;
    margin-top: 14px;
  }
  .mobile__socialLink{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(0,0,0,.10);
    color:#111 !important;
    text-decoration:none;
  }
  .mobile__socialLink i{ font-size: 18px; }
  .mobile__socialLink:hover{ background: rgba(255,255,255,.90); }

  /* Hero centering */
  .hero__inner{
    text-align: center;
    justify-items: center;
    align-items: center;
  }
  .hero__content{ margin: 0 auto; text-align:center; }
  .hero__badges{ justify-content: center !important; }
  .heroBadges{justify-content:center !important;}
  .heroBadge{margin-left:auto; margin-right:auto;}


  /* Hide review dots on mobile */
  .reviewsDots, [data-reviews-dots]{ display:none !important; visibility:hidden !important; height:0 !important; }
}

/* Never show the mobile overlay on desktop (prevents resize bugs) */
@media (min-width: 901px){
  .mobile{ display:none !important; }
}


/* Force-hide reviews dots on small screens */
@media (max-width: 900px){
  .reviewsDots, [data-reviews-dots]{display:none !important;visibility:hidden !important;height:0 !important;}
}


@media (max-width: 900px){
  .mobile__social{justify-content:center !important;}
  .mobile__socialLink{
    width:52px !important;
    height:52px !important;
    border-radius:999px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background: rgba(255,255,255,.22) !important;
    border: none !important;
    padding: 0 !important;
  }
  .mobile__socialLink i{font-size:22px !important;}
}



/* ===== Devis form: label alignment + file input style ===== */
.form-group label,
.form-row label,
label.form-label{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 0 8px 0;
  font-weight:700;
  color:#111;
}

.form-group label .required,
.form-row label .required,
label.form-label .required{
  color:#e11d48; /* red-600 */
  font-weight:800;
  line-height:1;
}

.form-group{
  margin-bottom:18px;
}

.form-help{
  margin-top:6px;
  font-size:13px;
  color:#b91c1c;
}

/* File input (inspiration photos) */
.file-input{
  width:100%;
  border:2px dashed rgba(0,0,0,.18);
  border-radius:14px;
  padding:12px 12px;
  background: rgba(255,255,255,.65);
}

.file-input:focus-within{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.file-input input[type="file"]{
  width:100%;
  font-size:14px;
}

.file-input input[type="file"]::file-selector-button{
  border:0;
  border-radius:10px;
  padding:10px 14px;
  margin-right:12px;
  background: var(--color-primary);
  color: var(--on-primary, #fff);
  font-weight:700;
  cursor:pointer;
}

.file-input input[type="file"]::file-selector-button:hover{
  filter: brightness(.95);
}

.file-input .hint{
  margin-top:8px;
  font-size:13px;
  color:#b91c1c;
}

/* Keep radio cards aligned */
.choice-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 640px){
  .choice-cards{ grid-template-columns: 1fr; }
}


/* --- FIX labels required inline --- */
.form-group label{
  display:flex;
  align-items:center;
  gap:6px;
}
.form-group label .required,
.form-group label .asterisk{
  color:#e11d48;
  font-weight:600;
}

/* remove duplicate helper text under file input */
.file-help + .file-help{
  display:none;
}

/* --- Devis: required asterisk inline --- */
label .required{display:inline-block; margin-left:6px; vertical-align:baseline;}
label{line-height:1.2;}

label {display:inline-flex; align-items:center; gap:6px;}
label .required{color:#e11d48;font-weight:600;}


/* Fix required asterisk inline */
label.hero__formTitle{display:flex;align-items:center;gap:6px;}
label.hero__formTitle span{display:inline;line-height:1;}
