*{box-sizing:border-box}
:root{
  --bg:#0d0d0c;
  --bg2:#131311;
  --card:#1b1a18;
  --line:#2c2a26;
  --text:#f1f1ed;
  --muted:#c6c2bb;
  --muted-dark:#9f998f;
  --orange:#ff6400;
  --orange-dark:#d15200;
  --cream:#f4efe8;
  --max:1240px;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:#171614;
  background:var(--cream);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(calc(100% - 48px),var(--max));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,10,10,.95);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}
.nav{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.header-logo{width:380px;display:block;height:auto}
.main-nav{
  display:flex;
  align-items:center;
  gap:42px;
  color:#fff;
  font-size:14px;
  font-weight:700;
}
.main-nav a:hover{color:var(--orange)}
.nav-cta{
  background:var(--orange);
  color:#fff;
  padding:16px 22px;
  border-radius:6px;
}
.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:#fff;
  font-size:28px;
}



.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.trust-item{
  padding:34px 18px 32px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  color:#fff;
}
.trust-item + .trust-item{border-left:1px solid rgba(255,255,255,.08)}
.trust-icon{
  width:42px;
  height:42px;
  border:2px solid var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--orange);
  font-weight:900;
  flex:0 0 42px;
}
.trust-item h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.2;
}
.trust-item p{
  margin:0;
  color:#c9c4bc;
  font-size:15px;
  line-height:1.55;
}

.section{padding:92px 0}
.services-intro{background:linear-gradient(180deg,#151412 0%, #0f0f0e 100%); color:#fff}
.section-heading{max-width:760px;margin-bottom:42px}
.section-heading h2{
  font-size:clamp(36px,5vw,58px);
  line-height:1.04;
  letter-spacing:-2px;
  margin-bottom:16px;
}
.section-heading p:last-child{color:#c8c2b7;font-size:17px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  background:#1a1917;
  border:1px solid #302d28;
  padding:32px;
  min-height:390px;
}
.service-card.featured{border-top:5px solid var(--orange)}
.service-card .icon{font-size:28px;display:block;margin-bottom:24px}
.service-card h3{font-size:28px;margin-bottom:10px;color:#fff}
.service-card ul{margin:0;padding-left:18px;color:#d2ccc3}
.service-card li{margin-bottom:7px}

.micro-box{
  margin-top:22px;
  padding:30px 34px;
  background:#25211d;
  border:1px solid #363029;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:42px;
  align-items:center;
}
.micro-box p{margin:0;color:#cec7bd}
.micro-box h3{font-size:28px;color:#fff;margin:0}

.dark-section{
  background:#181715;
  color:#fff;
}
.console-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;
  background:#34312c;
  border:1px solid #34312c;
}
.console-group{
  background:#22201d;
  padding:36px;
}
.console-group h3{font-size:24px;margin-bottom:10px}
.console-group p{margin:0;color:#c0baaf;font-size:18px;line-height:1.7}
.small-note{margin-top:18px;color:#a49e94;font-size:14px}

#fonctionnement{background:linear-gradient(180deg,#151412 0%, #0f0f0e 100%);color:#fff}
.steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.step{
  border-top:2px solid #1d1b18;
  padding-top:18px;
}
.step span{
  font-family:"Space Grotesk",sans-serif;
  color:var(--orange-dark);
  font-size:14px;
  font-weight:800;
}
.step h3{font-size:19px;margin:16px 0 10px}
.step p{margin:0;color:#5f594f;font-size:15px}

.contact-section{background:#eadfce}
.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
}
.contact-copy{
  position:sticky;
  top:120px;
  align-self:start;
}
.contact-copy p:not(.eyebrow){color:#5f594f;font-size:18px}
.contact-note{
  margin-top:28px;
  padding:16px 18px;
  border-left:4px solid var(--orange);
  background:rgba(255,255,255,.36);
}
.contact-note strong,.contact-note span{display:block}
.contact-note span{color:#5f594f}
.repair-form{
  background:#fffaf2;
  border:1px solid #d1c4b2;
  padding:34px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
label{
  display:block;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}
input,select,textarea{
  width:100%;
  margin-top:7px;
  padding:13px 14px;
  border:1px solid #cbbdaa;
  background:#fff;
  font:inherit;
  color:#171614;
}
textarea{resize:vertical;min-height:140px}
input:focus,select:focus,textarea:focus{
  outline:2px solid rgba(255,122,0,.22);
  border-color:var(--orange);
}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:500;
}
.check input{width:auto;margin-top:4px}
.full{width:100%}
.form-status{margin:12px 0 0;color:var(--orange-dark);font-size:13px}

footer{
  background:#11110f;
  color:#d6d2ca;
  padding:52px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.45fr .8fr .8fr;
  gap:48px;
}
.footer-grid > div{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-grid strong{color:#fff}
.footer-grid a,
.footer-grid p{margin:0;color:#9e978d;font-size:14px}
.footer-logo{width:220px;height:auto;display:block;margin-bottom:10px}
.copyright{
  margin-top:40px;
  padding-top:18px;
  border-top:1px solid #2b2926;
  color:#706b64;
  font-size:12px;
}

@media (max-width: 1080px){
  
  
  
  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item:nth-child(3){border-left:0}
  .cards{grid-template-columns:1fr}
  .micro-box{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .contact-copy{position:static}
}

@media (max-width: 900px){
  .header-logo{width:250px}
  .main-nav{
    display:none;
    position:absolute;
    top:80px;
    left:20px;
    right:20px;
    background:#141412;
    border:1px solid rgba(255,255,255,.08);
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .main-nav.open{display:flex}
  .menu-toggle{display:block}
}

@media (max-width: 620px){
  .container{width:min(calc(100% - 28px),var(--max))}
  .nav{min-height:82px}
  .header-logo{width:195px}
  h1{font-size:clamp(42px,11vw,60px);letter-spacing:-2px}
  .hero-text{font-size:17px;line-height:1.7}
  .hero-actions{gap:12px}
  .btn{min-height:56px;padding:0 20px;font-size:16px;width:100%}
  
  .trust-grid{grid-template-columns:1fr}
  .trust-item + .trust-item{border-left:0;border-top:1px solid rgba(255,255,255,.08)}
  .section{padding:68px 0}
  .console-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr;gap:0}
  .repair-form{padding:22px}
  .footer-grid{grid-template-columns:1fr}
}



.hero-section{
  background:radial-gradient(circle at top, #132033 0%, #0b0b0a 45%, #0b0b0a 100%);
  color:#fff;
  padding:18px 0 0;
}

.hero-stage{
  position:relative;
  min-height:760px;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.92) 34%, rgba(5,5,5,.70) 48%, rgba(5,5,5,.22) 62%, rgba(5,5,5,.10) 100%),
    url('hero-reparation-modding.jpg') center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(11,11,10,.10) 0%, rgba(11,11,10,.04) 40%, rgba(11,11,10,.14) 100%);
}

.hero-copy-integrated{
  position:relative;
  z-index:2;
  max-width:620px;
  padding:84px 0 72px 18px;
  min-height:760px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.eyebrow{
  margin:0 0 18px;
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:14px;
  font-weight:800;
}

h1,h2,h3{
  font-family:"Space Grotesk",sans-serif;
  margin-top:0;
}

h1{
  margin:0 0 24px;
  font-size:clamp(54px,6.1vw,86px);
  line-height:.98;
  letter-spacing:-3px;
}

h1 span{color:var(--orange)}

.hero-text{
  max-width:480px;
  margin:0 0 34px;
  color:#d5d1ca;
  font-size:18px;
  line-height:1.8;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:62px;
  padding:0 28px;
  border-radius:4px;
  font-weight:800;
  font-size:17px;
  border:1px solid rgba(255,255,255,.22);
}

.btn-primary{
  background:var(--orange);
  color:#fff;
  border-color:var(--orange);
}

.btn-secondary{
  background:rgba(255,255,255,.02);
  color:#fff;
}

@media (max-width: 1080px){
  .hero-stage{
    min-height:680px;
    background:
      linear-gradient(180deg, rgba(5,5,5,.90) 0%, rgba(5,5,5,.76) 46%, rgba(5,5,5,.44) 100%),
      url('hero-reparation-modding.jpg') center center / cover no-repeat;
  }

  .hero-copy-integrated{
    min-height:680px;
    max-width:100%;
    padding:62px 18px 44px;
  }
}

@media (max-width: 620px){
  h1{
    font-size:clamp(42px,11vw,60px);
    letter-spacing:-2px;
  }

  .hero-stage{
    min-height:620px;
  }

  .hero-copy-integrated{
    min-height:620px;
    padding:42px 0 34px;
  }

  .hero-text{
    font-size:17px;
    line-height:1.7;
  }

  .hero-actions{
    gap:12px;
  }

  .btn{
    min-height:56px;
    padding:0 20px;
    font-size:16px;
    width:100%;
  }
}



/* Harmonisation foncée des 2 sections du bas */
#fonctionnement .section-heading h2,
#fonctionnement .section-heading p,
#fonctionnement .step h3{
  color:#fff;
}

#fonctionnement .section-heading p:last-child,
#fonctionnement .step p{
  color:#c8c2b7;
}

#fonctionnement .step{
  border-top:2px solid #3a352e;
}

#fonctionnement .step span{
  color:var(--orange);
}

/* 2) section contact */
.contact-section{
  background:#181715 !important;
  color:#fff;
}

.contact-copy p:not(.eyebrow){
  color:#c8c2b7;
}

.contact-note{
  background:#25211d;
  border-left:4px solid var(--orange);
}

.contact-note span{
  color:#c8c2b7;
}

.repair-form{
  background:#22201d;
  border:1px solid #3a352e;
  color:#fff;
}

.repair-form label{
  color:#fff;
}

.repair-form input,
.repair-form select,
.repair-form textarea{
  background:#141311;
  border:1px solid #3a352e;
  color:#f1f1ed;
}

.repair-form input::placeholder,
.repair-form textarea::placeholder{
  color:#9f998f;
}

.repair-form select{
  color:#f1f1ed;
}

.repair-form option{
  background:#ffffff;
  color:#171614;
}

.check{
  color:#d6d0c8;
}


/* Petit mouvement vers le haut au survol des CTA principaux */
.nav-cta,
.hero-actions .btn{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.nav-cta:hover,
.hero-actions .btn:hover{
  transform:translateY(-3px);
}

.nav-cta:hover,
.hero-actions .btn-primary:hover{
  box-shadow:0 8px 18px rgba(0,0,0,.22);
}

.hero-actions .btn-secondary:hover{
  box-shadow:0 8px 18px rgba(0,0,0,.16);
}


/* Corrige le texte du bouton Demande de réparation au survol */
.nav-cta,
.nav-cta:visited{
  color:#fff;
}

.nav-cta:hover,
.nav-cta:focus{
  color:#fff !important;
  background:var(--orange);
  border-color:var(--orange);
}


/* Contact Facebook Messenger dans le pied de page */
.messenger-contact{
  margin-top:34px;
  padding:24px 0 4px;
  border-top:1px solid #2b2926;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.messenger-contact strong{
  display:block;
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:20px;
  margin-bottom:3px;
}
.messenger-contact p{
  margin:0;
  color:#9e978d;
  font-size:14px;
}
.messenger-btn{
  min-height:54px;
  padding:0 22px;
  background:var(--orange);
  border-color:var(--orange);
  color:#fff;
  white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.messenger-btn:visited{color:#fff}
.messenger-btn:hover,
.messenger-btn:focus{
  color:#fff;
  background:var(--orange-dark);
  border-color:var(--orange-dark);
  transform:translateY(-3px);
  box-shadow:0 8px 18px rgba(0,0,0,.22);
}
.messenger-icon{
  margin-right:9px;
  font-size:19px;
  line-height:1;
}

@media (max-width: 620px){
  .messenger-contact{
    align-items:stretch;
    flex-direction:column;
    gap:16px;
  }
  .messenger-btn{width:100%}
}

/* Bloc Messenger placé avant la navigation dans le pied de page */
.footer-contact{
  min-width:0;
}
.contact-copy .contact-messenger-inline{
  margin-top:30px;
  padding-top:24px;
  border-top:1px solid #2b2926;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.contact-copy .contact-messenger-inline strong{
  color:#fff;
  font-family:"Space Grotesk",sans-serif;
  font-size:20px;
}
.contact-copy .contact-messenger-inline p{
  margin:0;
  font-size:14px;
}
.footer-contact .messenger-btn{
  width:100%;
  max-width:310px;
  margin-top:8px;
  color:#fff;
  font-size:14px;
}
.footer-grid .footer-contact .messenger-btn,
.footer-grid .footer-contact .messenger-btn:visited,
.footer-grid .footer-contact .messenger-btn:hover,
.footer-grid .footer-contact .messenger-btn:focus{
  color:#fff;
}
@media (max-width:620px){
  .footer-contact .messenger-btn{max-width:none;}
}


/* Exemples de prix */
.pricing-section{
  background:#11110f;
  color:#fff;
  border-top:1px solid #2b2926;
  border-bottom:1px solid #2b2926;
}
.pricing-heading{max-width:820px}
.pricing-heading p:last-child{color:#c8c2b7}
.pricing-card{
  max-width:900px;
  background:#1b1a18;
  border:1px solid #34312c;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
}
.pricing-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px 34px;
  border-bottom:1px solid #34312c;
  background:#22201d;
}
.pricing-card-head h3{
  margin:4px 0 0;
  color:#fff;
  font-size:30px;
}
.pricing-kicker{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:12px;
  font-weight:800;
}
.pricing-note-badge{
  padding:8px 12px;
  border:1px solid #4b443b;
  color:#c8c2b7;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  white-space:nowrap;
}
.price-list{padding:0 34px}
.price-row{
  min-height:68px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
  border-bottom:1px solid #302d28;
  color:#e4dfd7;
  font-size:17px;
}
.price-row strong{
  color:var(--orange);
  font-family:"Space Grotesk",sans-serif;
  font-size:21px;
  letter-spacing:-.3px;
}
.pricing-disclaimer{
  margin:0;
  padding:22px 34px 26px;
  color:#9f998f;
  font-size:13px;
  line-height:1.65;
}
@media (max-width:620px){
  .pricing-card-head{
    align-items:flex-start;
    flex-direction:column;
    padding:24px 22px;
  }
  .price-list{padding:0 22px}
  .price-row{
    min-height:76px;
    gap:16px;
    font-size:15px;
  }
  .price-row strong{font-size:18px}
  .pricing-disclaimer{padding:20px 22px 24px}
}
