:root{
  --bg:#07070d;
  --bg2:#0b0b12;
  --panel:#101022;
  --panel2:#0f0f1a;
  --stroke:rgba(255,255,255,.08);

  --violet:#8b5cf6;
  --violet2:#a78bfa;
  --violetGlow:rgba(139,92,246,.35);

  --text:#ffffff;
  --muted:rgba(255,255,255,.72);

  --radius:22px;
  --radius2:18px;

  --shadow:0 24px 60px rgba(0,0,0,.55);
  --shadow2:0 14px 28px rgba(0,0,0,.45);

  /* engagement button */
  --yellow:#f5c400;
  --yellow2:#ffe066;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(139,92,246,.18), transparent 60%),
              radial-gradient(800px 500px at 20% 40%, rgba(139,92,246,.12), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

.container{max-width:1200px;margin:0 auto;padding:0 18px}

/* HEADER */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(8,8,14,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
}
.brand{display:flex; align-items:center; gap:14px}
.brand__logo{
  width:48px; height:48px;
  object-fit:contain;
  filter: drop-shadow(0 0 8px rgba(139,92,246,.4));
}
.brand__info{display:flex; flex-direction:column}
.brand__title{font-weight:900; font-size:20px; letter-spacing:.2px; line-height:1.1}
.brand__violet{color:var(--violet2)}
.brand__white{color:rgba(255,255,255,.95)}
.brand__sub{margin-top:2px; font-size:11px; color:var(--muted); letter-spacing:.06em}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  user-select:none;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.02em;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn--pill{border-radius:999px}
.btn--primary{
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color:#0b0b12;
  box-shadow: 0 18px 40px rgba(139,92,246,.22);
}
.btn--outline{
  background: rgba(255,255,255,.05);
  border-color: rgba(139,92,246,.55);
  color: rgba(255,255,255,.92);
}
.btn--ghost{
  background: rgba(139,92,246,.12);
  border-color: rgba(139,92,246,.25);
  color: rgba(255,255,255,.92);
}
.btn--yellow{
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color:#0b0b12;
  box-shadow: 0 18px 40px rgba(245,196,0,.18);
  border: 1px solid rgba(245,196,0,.25);
}
.btn--big{padding:15px 32px; font-size:18px}
.btn:not(.btn--big){padding:11px 20px; font-size:14px}
.btn:hover{transform: translateY(-2px); filter:brightness(1.05)}

/* HERO */
.hero{
  position:relative;
  min-height: 660px;
  display:flex;
  align-items:center;
  padding: 40px 0 50px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.10) 100%),
    url("/img/heroe.png");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.1) brightness(0.98);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:-120px;
  background: radial-gradient(700px 350px at 30% 50%, rgba(139,92,246,.28), transparent 65%);
}

/* ✅ HERO ALIGN LEFT */
.hero__inner{
  position:relative; z-index:2;
}
.hero__inner--left{
  display:flex;
  justify-content:flex-start;
  text-align:left;
}

/* ✅ HERO CARD TRANSPARENT (plus de fond gris/noir) */
.hero__card--transparent{
  max-width: 720px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero__badge{
  display:inline-block;
  padding: 6px 14px;
  background: rgba(139,92,246,.18);
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--violet2);
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__title{line-height:1.05}
.hero__titleTop{
  display:block;
  font-size: 52px;
  font-weight: 950;
  color: var(--violet2);
  letter-spacing:.2px;
  text-shadow: 0 18px 50px rgba(0,0,0,.6);
}
.hero__titleBig{
  display:block;
  margin-top:8px;
  font-size: 46px;
  font-weight: 950;
  color: rgba(255,255,255,.98);
  line-height:1.1;
  text-shadow: 0 18px 50px rgba(0,0,0,.65);
}
.hero__text{
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 620px;
  text-shadow: 0 16px 40px rgba(0,0,0,.75);
}
.hero__locations{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(167,139,250,.92);
  font-weight: 700;
  text-shadow: 0 16px 40px rgba(0,0,0,.75);
}
.hero__actions{
  margin-top: 22px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section{padding: 60px 0 20px}
.section--alt{padding: 44px 0 60px; background: linear-gradient(180deg, rgba(255,255,255,.02), transparent)}
.section--dark{background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.05))}
.section__title{
  font-size: 38px;
  font-weight: 950;
  margin: 8px 0 24px;
  color: rgba(255,255,255,.94);
}
.section__subtitle{
  margin-top:-12px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 15px;
  line-height:1.6;
}
.center{text-align:center}

/* GRID & CARDS */
.grid{
  display:grid;
  gap: 20px;
}
.grid--3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0, 1fr))}

.card{
  background: linear-gradient(145deg, rgba(20,20,36,.75), rgba(12,12,22,.75));
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius2);
  padding: 24px 24px;
  box-shadow: var(--shadow2);
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}
.card::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  pointer-events:none;
  box-shadow: 0 0 0 1px rgba(139,92,246,.12) inset;
  opacity:.85;
}
.card__title{font-size:19px; font-weight:900; margin-bottom:9px; color:rgba(255,255,255,.94)}
.card__text{font-size:14px; color:var(--muted); line-height:1.6}

.card--service{padding: 28px 26px}
.card--service .card__text{max-width: 520px}

/* ICON */
.icon{
  width: 46px; height: 46px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 14px;
  background: rgba(139,92,246,.20);
  border: 1px solid rgba(139,92,246,.32);
  box-shadow: 0 0 28px rgba(139,92,246,.22);
}
.icon svg{
  width: 23px; height: 23px;
  fill: none;
  stroke: rgba(255,255,255,.94);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ✅ ENGAGEMENT (style comme ton image) */
.steps{padding: 70px 0}
.steps__kicker{
  color: rgba(245,196,0,.95);
  font-weight: 900;
  letter-spacing: .25em;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.steps__title{
  font-size: 38px;
  font-weight: 950;
  margin: 0 0 10px;
  color: rgba(255,255,255,.95);
}
.steps__title span{ color: rgba(245,196,0,.95); }
.steps__subtitle{
  color: rgba(255,255,255,.72);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-align:center;
}

.steps__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.step2{
  width: 240px;
  display:flex;
  align-items:center;
  gap: 14px;
}
.step2__circle{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(245,196,0,.22);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.step2__circle--ok{
  border-color: rgba(245,196,0,.35);
  box-shadow: 0 16px 40px rgba(245,196,0,.10);
}
.step2__icon{font-size: 22px}

.step2__content h3{
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  margin-bottom: 4px;
}
.step2__content p{
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.45;
}

.steps__line{
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(245,196,0,.18), rgba(245,196,0,.55), rgba(245,196,0,.18));
  opacity: .95;
  margin: 0 6px;
}

.steps__cta{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}

/* GALLERY */
.gallery{padding: 60px 0}
.gallery__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.gallery__item{
  aspect-ratio: 4/3;
  border-radius: var(--radius2);
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease;
}
.gallery__item:hover{transform: scale(1.03)}
.gallery__img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}

/* ✅ MOBILE SLIDER */
.gallerySlider{display:none; margin-top: 26px}
.gallerySlider__track{
  display:flex;
  gap: 14px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.gallerySlider__track::-webkit-scrollbar{height:6px}
.gallerySlider__track::-webkit-scrollbar-thumb{background: rgba(255,255,255,.12); border-radius:999px}

.gallerySlider__slide{
  flex: 0 0 100%;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.gallerySlider__slide img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
}

.gallerySlider__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 12px;
}
.galleryDot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.galleryDot.active{
  width: 18px;
  background: rgba(167,139,250,.95);
}

/* CTA */
.cta{padding: 70px 0 80px}
.cta__box{
  background:
    radial-gradient(650px 240px at 50% 0%, rgba(139,92,246,.25), transparent 70%),
    linear-gradient(145deg, rgba(20,20,36,.82), rgba(12,12,22,.84));
  border:1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 52px 30px;
  text-align:center;
  box-shadow: var(--shadow);
}
.cta__title{
  font-size: 40px;
  font-weight: 950;
  color: rgba(255,255,255,.96);
  margin-bottom: 12px;
  line-height:1.15;
}
.cta__text{
  color: var(--muted);
  margin-bottom: 26px;
  font-size: 15px;
  line-height:1.5;
}
.cta__phone{
  font-size: 28px;
  font-weight: 900;
  color: var(--violet2);
  margin: 20px 0;
  display:block;
  letter-spacing: .02em;
  text-decoration:none;
}
.cta__phone:hover{color: var(--violet)}
.cta__email{
  color: rgba(255,255,255,.75);
  font-size: 14px;
  display:block;
  margin-top:12px;
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0 36px;
  background: rgba(0,0,0,.15);
}
.footer__inner{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.footer__logo{
  width:42px; height:42px;
  object-fit:contain;
}
.footer__brandText{
  font-weight:900;
  font-size:18px;
  color:rgba(255,255,255,.92);
}
.footer__desc{
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height:1.6;
  margin-top:10px;
}
.footer__heading{
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer__list{list-style:none}
.footer__list li{margin-bottom: 8px}
.footer__link{
  color: rgba(255,255,255,.65);
  text-decoration:none;
  font-size: 13px;
  transition: color .15s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.footer__link:hover{color: var(--violet2)}
.footer__social{display:flex; gap:10px; margin-top:14px}
.social-icon{
  width:38px; height:38px;
  border-radius:50%;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, background .15s ease;
}
.social-icon:hover{transform: translateY(-2px); background: rgba(139,92,246,.25)}
.social-icon svg{width:18px; height:18px; fill: rgba(255,255,255,.85)}
.footer__bottom{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align:center;
  color: rgba(255,255,255,.50);
  font-size: 12px;
}

/* REVEAL ANIM */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{opacity: 1; transform: translateY(0)}

/* RESPONSIVE */
@media (max-width: 1024px){
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr; gap:32px}
  .gallery__grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}

@media (max-width: 900px){
  .steps__row{flex-direction: column; align-items: flex-start; gap: 16px; max-width: 520px; margin: 0 auto}
  .steps__line{display:none}
  .step2{width:100%}
}

@media (max-width: 768px){
  .hero__bg{background-position: 65% center}
  .hero__titleTop{font-size: 42px}
  .hero__titleBig{font-size: 38px}

  /* ✅ mobile: gallery becomes slider */
  .gallery__grid--desktop{display:none}
  .gallerySlider{display:block}
}

@media (max-width: 520px){
  .brand__logo{width:40px; height:40px}
  .hero__titleTop{font-size: 36px}
  .hero__titleBig{font-size: 32px}
  .hero__text{font-size:15px}
  .section__title{font-size: 32px}
  .cta__title{font-size: 32px}
  .cta__phone{font-size: 24px}
  .header__inner{height:64px}
  .btn:not(.btn--big){padding:9px 16px; font-size:13px}
}
/* ✅ HERO FULL WIDTH (texte vraiment à gauche de l'écran) */
.hero .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 60px;   /* ajuste 40 / 60 / 80 */
  padding-right: 18px;
}

@media (max-width: 768px) {
  .hero .container {
    padding-left: 18px;
  }
}
/* ✅ HERO : texte un peu plus grand */
.hero__badge{
  font-size: 13px !important;
  padding: 7px 16px !important;
}

.hero__titleTop{
  font-size: 60px !important;   /* avant ~52 */
}

.hero__titleBig{
  font-size: 54px !important;   /* avant ~46 */
}

.hero__text{
  font-size: 18px !important;   /* avant ~16 */
  max-width: 680px !important;
}

.hero__locations{
  font-size: 14px !important;   /* avant ~13 */
}

.hero__actions .btn{
  font-size: 15px !important;
  padding: 13px 22px !important;
}

/* ✅ Mobile : garder propre */
@media (max-width: 520px){
  .hero{ min-height: 560px; padding: 22px 0 30px; }
  .hero__bg{ background-position: 70% center; }
  .hero .container{ padding-left: 16px !important; padding-right: 16px !important; }
}

/* ===== NOTRE ENGAGEMENT : VIOLET AU LIEU DE JAUNE ===== */

/* Titre "NOTRE ENGAGEMENT" */
.steps__kicker{
  color: var(--violet2) !important;
}

/* Partie "en 4 étapes" */
.steps__title span{
  color: var(--violet2) !important;
}

/* Cercles des étapes */
.step2__circle{
  border-color: rgba(139,92,246,.45) !important;
  background: rgba(139,92,246,.12) !important;
  box-shadow: 0 0 28px rgba(139,92,246,.25) !important;
}

/* Cercle final (Satisfaction) */
.step2__circle--ok{
  border-color: rgba(139,92,246,.75) !important;
  box-shadow: 0 0 40px rgba(139,92,246,.35) !important;
}

/* Ligne entre les étapes */
.steps__line{
  background: linear-gradient(
    90deg,
    rgba(139,92,246,.25),
    rgba(139,92,246,.75),
    rgba(139,92,246,.25)
  ) !important;
}

/* Bouton INTERVENTION IMMEDIATE */
.btn--yellow{
  background: linear-gradient(135deg, var(--violet), var(--violet2)) !important;
  color: #0b0b12 !important;
  border-color: rgba(139,92,246,.45) !important;
  box-shadow: 0 18px 45px rgba(139,92,246,.35) !important;
}
.mobileCallBar{
  display:none;
}

@media (max-width: 768px){
  .mobileCallBar{
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 999;
    display:flex;
    justify-content:center;
    align-items:center;
    padding: 14px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--violet), var(--violet2));
    color:#0b0b12;
    font-weight: 950;
    text-decoration:none;
    box-shadow: 0 18px 45px rgba(139,92,246,.35);
    border: 1px solid rgba(255,255,255,.10);
  }

  /* évite que la barre cache le bas de page */
  body{ padding-bottom: 90px; }
}
/* ===== HERO : CENTRÉ SUR MOBILE ===== */
@media (max-width: 768px){
  .hero__inner--left{
    justify-content: center !important;
    text-align: center !important;
  }

  .hero__card,
  .hero__card--transparent,
  .hero__content{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero__actions{
    justify-content: center !important;
  }

  .hero__text,
  .hero__locations{
    margin-left: auto;
    margin-right: auto;
  }
}
/* ===== HERO : TEXTE PLUS PETIT SUR MOBILE ===== */
@media (max-width: 768px){

  .hero__badge{
    font-size: 11px !important;
    padding: 6px 14px !important;
  }

  .hero__titleTop{
    font-size: 34px !important;   /* avant plus grand */
    line-height: 1.1;
  }

  .hero__titleBig{
    font-size: 30px !important;
    line-height: 1.15;
  }

  .hero__text{
    font-size: 14px !important;
    line-height: 1.55;
    max-width: 95%;
  }

  .hero__locations{
    font-size: 12px !important;
  }

  .hero__actions .btn{
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
}

/* Encore plus petit sur très petits écrans */
@media (max-width: 360px){
  .hero__titleTop{ font-size: 30px !important; }
  .hero__titleBig{ font-size: 26px !important; }
}
