:root{
  --bg:#0B1220;
  --panel:#111827;
  --soft:#0f172a;
  --text:#E5E7EB;
  --muted:#94A3B8;
  --white:#ffffff;

  --accent:#2563EB;
  --accent2:#60A5FA;

  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  /* accents bleus (au lieu du jaune/orange) */
  background: radial-gradient(900px 600px at 18% 12%, rgba(96,165,250,.18), transparent 55%),
              radial-gradient(900px 600px at 84% 30%, rgba(37,99,235,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit}
.container{width:min(1120px, 92%); margin-inline:auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(10,15,28,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148,163,184,.12);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.22);
  color: var(--text);
  font-size: 13px;
}
.link{opacity:.95; text-decoration:none}
.link:hover{opacity:1; text-decoration:underline}
.link--muted{color:var(--muted); text-decoration:none}
.link--muted:hover{color:var(--text); text-decoration:underline}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:12px;
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color:#111827;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(245,158,11,.22);
  transform: translateZ(0);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn:active{transform: translateY(0)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(148,163,184,.22);
  box-shadow: none;
}
.btn--small{padding:10px 12px; border-radius:10px}
.btn--wide{width:100%}

.header{
  position:sticky; top:46px; z-index:40;
  background: rgba(11,18,32,.60);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148,163,184,.10);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.14);
  border:1px solid rgba(245,158,11,.25);
}
.brand__text small{display:block; color:var(--muted); font-weight:600; margin-top:2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--text); text-decoration:none; font-weight:750; opacity:.9}
.nav a:hover{opacity:1}
.nav__cta{padding:10px 12px; border-radius:12px; border:1px solid rgba(96,165,250,.22); background: rgba(37,99,235,.12)}

.burger{display:none; background:transparent; border:0; padding:8px; cursor:pointer}
.burger span{display:block; width:26px; height:2px; background:var(--text); margin:6px 0; opacity:.9}

.mobileNav{
  display:none;
  border-top:1px solid rgba(148,163,184,.12);
  padding:12px 0;
}
.mobileNav a{display:block; padding:10px 0; text-decoration:none; font-weight:800}
.mobileNav.open{display:block}

/* Layout blocks */
.hero{
  position:relative;
  padding: 64px 0 34px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.hero__bg{
  position:absolute; inset:-80px -40px auto -40px;
  height: 320px;
  background: radial-gradient(600px 320px at 25% 40%, rgba(96,165,250,.22), transparent 60%),
              radial-gradient(520px 320px at 70% 20%, rgba(37,99,235,.16), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:900;
  color: #111827;
  background: rgba(251,191,36,.92);
  border:1px solid rgba(255,255,255,.22);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom: 14px;
}
.hero h1{margin:0 0 12px; font-size: clamp(28px, 3.6vw, 46px); line-height:1.1}
.lead{color:var(--muted); font-size: 17px; margin:0 0 18px}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 18px}

.trust{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top: 14px}
.trust__item{
  display:flex; gap:10px; align-items:center;
  padding:12px; border-radius:14px;
  background: rgba(17,24,39,.58);
  border:1px solid rgba(148,163,184,.12);
}
.trust__icon svg{
  width:18px; height:18px;
  stroke: var(--accent2);
  fill:none;
  stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}

.card{
  background: rgba(17,24,39,.70);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card--glow{position:relative}
.card--glow:before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: var(--radius);
  background: radial-gradient(280px 180px at 30% 20%, rgba(245,158,11,.25), transparent 60%),
              radial-gradient(280px 180px at 70% 80%, rgba(251,191,36,.18), transparent 60%);
  z-index:-1;
}
.card h2{margin:0 0 10px; font-size: 20px}
.list{margin:0; padding-left:0; list-style:none; display:grid; gap:10px}
.list li{display:flex; gap:10px; align-items:flex-start; color:var(--text); opacity:.95}
.list svg{width:18px; height:18px; stroke:var(--accent2); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; margin-top:2px}

.section{padding: 70px 0}
.section--soft{background: rgba(15,23,42,.45); border-top:1px solid rgba(148,163,184,.10); border-bottom:1px solid rgba(148,163,184,.10)}
.section--cta{
  background: radial-gradient(700px 400px at 30% 40%, rgba(245,158,11,.20), transparent 60%),
              rgba(15,23,42,.50);
  border-top:1px solid rgba(148,163,184,.10);
}

.section__head{text-align:center; margin-bottom: 26px}
.section__head h2{margin:0 0 8px; font-size: clamp(22px, 2.8vw, 34px)}
.section__head p{margin:0; color:var(--muted)}

.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}

.tile{
  background: rgba(17,24,39,.62);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 18px;
  padding: 18px;
  transition: transform .18s ease;
}
.tile:hover{transform: translateY(-2px)}
.tile__icon svg{
  width:22px; height:22px;
  stroke: var(--accent2);
  fill:none;
  stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}
.tile h3{margin:10px 0 6px}
.tile p{margin:0; color:var(--muted)}

.quote{
  margin:0;
  background: rgba(17,24,39,.62);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 18px;
  padding: 18px;
}
.quote blockquote{margin:0; font-weight:800}
.quote figcaption{margin-top:10px; color:var(--muted); font-weight:650}
.stars{display:flex; gap:6px; margin-bottom:10px}
.stars svg{width:16px; height:16px; stroke:var(--accent2); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round}

.chips{display:flex; flex-wrap:wrap; gap:10px; justify-content:center}
.chip{
  padding:10px 12px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(96,165,250,.22);
  border-radius: 999px;
  font-weight:800;
  color: var(--text);
}

.ctaGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.mini{display:grid; gap:10px; margin-top:14px}
.mini__item{display:flex; gap:10px; align-items:center; color:var(--muted); font-weight:650}
.mini__item svg{width:18px; height:18px; stroke:var(--accent2); fill:none; stroke-width:2}

.form{
  background: rgba(17,24,39,.70);
  border:1px solid rgba(148,163,184,.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.form__row{display:grid; gap:8px; margin-bottom:12px}
label{font-weight:900}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(10,15,28,.60);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(251,191,36,.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,.16);
}
.fine{margin:10px 0 0; color:var(--muted); font-size: 13px}
.honeypot{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

.footer{
  padding: 26px 0 10px;
  border-top:1px solid rgba(148,163,184,.10);
  background: rgba(11,18,32,.65);
}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:14px}
.footer__right{display:flex; flex-direction:column; gap:8px; align-items:flex-end}
.footer__bottom{padding:14px 0 18px; color:var(--muted)}

.muted{color:var(--muted)}
.breadcrumb{color:var(--muted); font-weight:700; font-size:14px}
.breadcrumb a{color:var(--text); text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}

/* Reveal */
.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1; transform:none}
.reveal--delay{transition-delay:.12s}

/* Content */
.content{
  background: rgba(17,24,39,.55);
  border:1px solid rgba(148,163,184,.12);
  border-radius: 18px;
  padding: 18px;
}
.content h1{margin-top:0; font-size: clamp(24px, 3vw, 38px)}
.content h2{margin-top:22px}
.content p{color: var(--text); opacity:.95}
.content ul{color: var(--text); opacity:.95}
iframe.map{width:100%; height:360px; border:0; border-radius:18px; box-shadow: var(--shadow);}

/* FAQ */
.faq{display:grid; gap:10px}
.faq details{
  background: rgba(17,24,39,.62);
  border:1px solid rgba(148,163,184,.14);
  border-radius: 16px;
  padding: 14px 14px;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin:10px 0 0; color:var(--muted)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr}
  .grid--3,.grid--2{grid-template-columns: 1fr}
  .ctaGrid{grid-template-columns: 1fr}
  .nav{display:none}
  .burger{display:block}
  .footer__inner{flex-direction:column}
  .footer__right{align-items:flex-start}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none}
  .btn, .tile{transition:none}
}

/* ===============================
   Correctifs UI (garagiste)
   - styles manquants (panel/checklist/cta)
   - supprime les gros SVG non stylés (triangle noir)
   =============================== */

/* Empêche les SVG inline de prendre la taille par défaut (300x150) */
svg{max-width:100%; height:auto}

.hero__panel{
  display:flex;
  flex-direction:column;
  justify-content:center;

  min-height: 520px;
  padding: 48px;

  background: linear-gradient(
    145deg,
    rgba(17,24,39,.92),
    rgba(17,24,39,.75)
  );

  border: 1px solid rgba(148,163,184,.18);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.panel__title{font-weight:900; font-size:16px; color:var(--text); margin-bottom:10px}

.checklist{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.checklist li{display:flex; gap:10px; align-items:flex-start; color:var(--text); opacity:.95}
.checklist svg{width:18px; height:18px; stroke:var(--accent2); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; margin-top:2px; flex:0 0 auto}

.panel__cta{margin-top:14px}
.btn--sm{padding:10px 12px; border-radius:12px; font-weight:900}

/* Harmonise les sections */
.section--alt{background: rgba(15,23,42,.45); border-top:1px solid rgba(148,163,184,.10); border-bottom:1px solid rgba(148,163,184,.10)}

/* CTA bloc */
.cta{
  padding: 56px 0;
  background: radial-gradient(700px 400px at 30% 40%, rgba(96,165,250,.18), transparent 60%),
              rgba(15,23,42,.50);
  border-top:1px solid rgba(148,163,184,.10);
}
.cta__grid{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap}
.cta__copy h2{margin:0 0 8px; font-size: clamp(22px, 2.6vw, 34px)}
.cta__copy p{margin:0; color:var(--muted)}
.cta__actions{display:flex; gap:12px; flex-wrap:wrap}

@media (max-width: 980px){
  .cta__grid{flex-direction:column; align-items:flex-start}
}


.panel__title{
  font-size: 20px;
  margin-bottom: 20px;
}
.panel__cta .btn{
  width:100%;
  padding:16px;
  font-size:16px;
}