/* ============================================================
   INFOPHONE — Réparation électronique à Toulouse
   Design system : noir logo + bleu azur (couleurs du logo)
   ============================================================ */

:root {
  /* Couleurs — issues du logo INFOPHONE */
  --ink: #0b0f15;            /* noir logo */
  --ink-soft: #131a23;       /* surfaces sombres */
  --ink-border: #263140;
  --paper: #f6f9fc;          /* blanc froid */
  --paper-soft: #eaf1f8;
  --accent: #1b9df3;         /* bleu des O du logo */
  --accent-dark: #0d7fd6;
  --accent-soft: #e2f2fe;
  --cyan: #62c3ff;
  --text: #1c242e;
  --text-muted: #5a6673;
  --text-inverse: #eef3f8;
  --text-inverse-muted: #93a1b0;

  /* alias hérités de l'ancienne palette (styles inline des pages) */
  --brique: var(--accent);
  --brique-dark: var(--accent-dark);
  --brique-soft: var(--accent-soft);
  --sable: var(--cyan);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(13, 40, 70, .08);
  --shadow-lg: 0 24px 60px rgba(13, 40, 70, .14);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* l'attribut hidden gagne toujours, même sur les éléments en display:flex/grid */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

/* ---------- Barre de progression scroll ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  z-index: 200;
  box-shadow: 0 0 12px rgba(27, 157, 243, .7);
  pointer-events: none;
}

/* ---------- Logo (wordmark fidèle au logo officiel) ---------- */
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .24em;
  color: var(--text-inverse);
  white-space: nowrap;
}
.logo .o {
  color: var(--accent);
  transition: text-shadow .25s ease;
}
.logo:hover .o { text-shadow: 0 0 14px rgba(27, 157, 243, .85); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(27, 157, 243, .38);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(27, 157, 243, .5); }
/* reflet balayant */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  border-color: var(--ink-border);
  color: var(--text-inverse);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(27,157,243,.1); }

.btn-ghost-dark {
  border-color: #c6d3df;
  color: var(--text);
  background: transparent;
}
.btn-ghost-dark:hover { border-color: var(--accent); color: var(--accent-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 21, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--text-inverse-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-inverse); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(27, 157, 243, .13);
  border: 1px solid rgba(27, 157, 243, .45);
  color: #7cc7fb;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.header-cta:hover {
  background: rgba(27, 157, 243, .28);
  color: #b4defc;
  box-shadow: 0 0 18px rgba(27, 157, 243, .35);
}
.header-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-inverse);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(27, 157, 243, .17), transparent 60%),
    radial-gradient(700px 420px at -5% 110%, rgba(98, 195, 255, .08), transparent 55%),
    var(--ink);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}
/* voile de lumière qui balaie lentement le hero */
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 42%, rgba(98, 195, 255, .07) 50%, transparent 58%);
  animation: sheen 9s linear infinite;
  pointer-events: none;
}
@keyframes sheen {
  from { transform: translateX(-28%); }
  to   { transform: translateX(28%); }
}

/* Scène animée : téléphone en fil de lumière + étincelles */
.hero-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.fx-phone {
  position: absolute;
  right: 4%;
  top: 50%;
  height: 118%;
  transform: translateY(-50%) rotate(14deg);
  opacity: .17;
  animation: phone-drift 12s ease-in-out infinite alternate;
}
@keyframes phone-drift {
  from { transform: translateY(-52%) rotate(12deg); }
  to   { transform: translateY(-48%) rotate(17deg); }
}
.fx-body {
  fill: none;
  stroke: #4db4f5;
  stroke-width: 2.5;
}
.fx-screen {
  fill: rgba(27, 157, 243, .07);
  stroke: rgba(27, 157, 243, .4);
  stroke-width: 1.5;
  animation: screen-glow 6s ease-in-out infinite;
}
@keyframes screen-glow {
  0%, 100% { fill: rgba(27, 157, 243, .05); }
  50%      { fill: rgba(27, 157, 243, .14); }
}
.fx-btn { fill: none; stroke: #4db4f5; stroke-width: 2; }
/* la fissure se dessine… puis se répare */
.fx-crack {
  fill: none;
  stroke: #9fdcff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 0 6px rgba(98, 195, 255, .9));
  animation: crack-heal 9s ease-in-out infinite;
}
.fx-crack2 { animation-delay: .5s; }
@keyframes crack-heal {
  0%   { stroke-dashoffset: 420; opacity: 1; }
  26%  { stroke-dashoffset: 0;   opacity: 1; }   /* la casse apparaît */
  58%  { stroke-dashoffset: 0;   opacity: 1; }
  80%  { stroke-dashoffset: 0;   opacity: 0; }   /* la réparation efface tout */
  81%  { stroke-dashoffset: 420; opacity: 0; }
  100% { stroke-dashoffset: 420; opacity: 0; }
}
/* étincelles qui montent */
.fx-p {
  position: absolute;
  bottom: -12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5fc0ff;
  box-shadow: 0 0 12px 2px rgba(95, 192, 255, .65);
  opacity: 0;
  animation: rise 9s linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  8%   { opacity: .85; }
  85%  { opacity: .15; }
  100% { transform: translateY(-640px) scale(.35); opacity: 0; }
}
.fx-p:nth-of-type(1)  { left: 4%;  animation-duration: 10s;  animation-delay: 0s;   width: 5px; height: 5px; }
.fx-p:nth-of-type(2)  { left: 12%; animation-duration: 13s;  animation-delay: 2.2s; width: 4px; height: 4px; }
.fx-p:nth-of-type(3)  { left: 21%; animation-duration: 9s;   animation-delay: 4.5s; }
.fx-p:nth-of-type(4)  { left: 30%; animation-duration: 12s;  animation-delay: 1.4s; width: 4px; height: 4px; }
.fx-p:nth-of-type(5)  { left: 38%; animation-duration: 10.5s;animation-delay: 5.6s; width: 7px; height: 7px; }
.fx-p:nth-of-type(6)  { left: 47%; animation-duration: 14s;  animation-delay: 3s;   width: 4px; height: 4px; }
.fx-p:nth-of-type(7)  { left: 55%; animation-duration: 9.5s; animation-delay: 6.8s; }
.fx-p:nth-of-type(8)  { left: 64%; animation-duration: 12.5s;animation-delay: .8s;  width: 5px; height: 5px; }
.fx-p:nth-of-type(9)  { left: 72%; animation-duration: 10s;  animation-delay: 4s;   width: 4px; height: 4px; }
.fx-p:nth-of-type(10) { left: 81%; animation-duration: 13.5s;animation-delay: 2.6s; }
.fx-p:nth-of-type(11) { left: 89%; animation-duration: 9s;   animation-delay: 5.2s; width: 5px; height: 5px; }
.fx-p:nth-of-type(12) { left: 96%; animation-duration: 11.5s;animation-delay: 1.8s; width: 4px; height: 4px; }

/* Orbes lumineux animés */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: .55;
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(27,157,243,.55), transparent 70%);
  top: -120px; right: 4%;
  animation: orb-drift 13s ease-in-out infinite alternate;
}
.orb-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(98,195,255,.4), transparent 70%);
  bottom: -100px; left: -6%;
  animation: orb-drift 17s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.18); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  padding: 92px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-inverse-muted);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, .2); }
  50%      { box-shadow: 0 0 0 7px rgba(74, 222, 128, .05); }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero .lead {
  font-size: 18px;
  color: var(--text-inverse-muted);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-inverse-muted);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease;
}
.trust-chip:hover { border-color: rgba(27,157,243,.6); color: var(--text-inverse); }
.trust-chip svg { width: 15px; height: 15px; color: var(--cyan); }

/* Carte device du hero — flotte + tilt 3D (JS) */
.hero-visual { position: relative; perspective: 1000px; }
.hero-card {
  background: linear-gradient(160deg, #17202b, #10161f);
  border: 1px solid rgba(27, 157, 243, .18);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 40px rgba(27,157,243,.07) inset;
  animation: card-float 7s ease-in-out infinite;
  transition: transform .15s ease-out;
  will-change: transform;
}
@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
.hero-card .hc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hero-card .hc-head strong { font-family: var(--font-display); font-size: 16px; }
.hc-status {
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, .12);
  padding: 5px 12px;
  border-radius: 999px;
}
.hc-status.closed {
  color: #f87171;
  background: rgba(248, 113, 113, .12);
}
.hc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hc-row .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(27, 157, 243, .14);
  display: grid;
  place-items: center;
  flex: none;
}
.hc-row .ic svg { width: 19px; height: 19px; color: var(--cyan); }
.hc-row div { flex: 1; }
.hc-row .t { font-weight: 600; font-size: 14.5px; }
.hc-row .s { font-size: 12.5px; color: var(--text-inverse-muted); }
.hc-row .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--cyan);
  white-space: nowrap;
}
.hc-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(27, 157, 243, .1);
  border: 1px solid rgba(27, 157, 243, .3);
  color: #a8d9fb;
  font-weight: 600;
  font-size: 13.5px;
}
.hc-footer svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

/* Bandeau stats */
.stats-band {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.stat {
  text-align: center;
  padding: 6px 16px;
  border-left: 1px solid rgba(255,255,255,.07);
  color: var(--text-inverse);
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(27, 157, 243, .4);
}
.stat .lbl { font-size: 13.5px; color: var(--text-inverse-muted); }

/* ---------- Marquee marques & services ---------- */
.marquee {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections génériques ---------- */
.section { padding: 96px 0; }
.section.alt { background: var(--paper-soft); }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.center .kicker::after {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 16.5px; }

/* ---------- Cartes services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(27, 157, 243, .16);
  border-color: rgba(27, 157, 243, .4);
}
.service-card .ic {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform .25s ease;
}
.service-card:hover .ic { transform: scale(1.1) rotate(-4deg); }
.service-card .ic svg { width: 25px; height: 25px; color: var(--accent-dark); }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--text-muted); flex: 1; }
.service-card .link {
  margin-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card .link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.service-card:hover .link svg { transform: translateX(4px); }

/* ---------- Pannes ---------- */
.pannes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.panne {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius);
  padding: 15px 18px;
  font-weight: 500;
  font-size: 14.5px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.panne:hover {
  border-color: rgba(27, 157, 243, .5);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 157, 243, .12);
}
.panne svg { width: 19px; height: 19px; color: var(--accent); flex: none; }

/* ---------- Pourquoi nous ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .why-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .why-grid.cols-3 { grid-template-columns: 1fr; } }
.why-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Bande microsoudure (sombre) ---------- */
.dark-band {
  background:
    radial-gradient(700px 400px at 90% 20%, rgba(27, 157, 243, .16), transparent 60%),
    var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.dark-band::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,157,243,.35), transparent 70%);
  filter: blur(60px);
  top: -80px; right: -60px;
  animation: orb-drift 11s ease-in-out infinite alternate;
  pointer-events: none;
}
.dark-band h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.dark-band h2 em {
  font-style: normal;
  color: var(--cyan);
}
.dark-band p { color: var(--text-inverse-muted); margin-bottom: 26px; font-size: 16px; }
.dark-band ul { list-style: none; display: grid; gap: 12px; position: relative; }
.dark-band li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: #c9d4df;
}
.dark-band li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open { border-color: rgba(27, 157, 243, .45); box-shadow: 0 10px 30px rgba(27, 157, 243, .1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-q .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .25s ease;
}
.faq-q .chev svg { width: 15px; height: 15px; color: var(--accent-dark); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Rachat ---------- */
.buyback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.buyback-steps { display: grid; gap: 16px; }
.buy-step {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .2s ease, border-color .2s ease;
}
.buy-step:hover { transform: translateX(6px); border-color: rgba(27, 157, 243, .4); }
.buy-step .n {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  flex: none;
}
.buy-step strong { display: block; font-family: var(--font-display); font-size: 15.5px; margin-bottom: 3px; }
.buy-step p { font-size: 14px; color: var(--text-muted); }

/* ---------- Boutiques ---------- */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.store-card {
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(27, 157, 243, .14);
  border-color: rgba(27, 157, 243, .35);
}
.store-card .tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 13px;
}
.store-card h3 { font-size: 18.5px; }
.store-card .addr { color: var(--text-muted); font-size: 14.5px; flex: 1; }
.store-meta { display: grid; gap: 9px; }
.store-meta a, .store-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}
.store-meta svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.store-meta a:hover { color: var(--accent-dark); }
.store-card .maps {
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.store-card .maps svg { width: 15px; height: 15px; }

/* ---------- CTA final ---------- */
.final-cta {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(27, 157, 243, .25), transparent 65%),
    var(--ink);
  color: var(--text-inverse);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,157,243,.3), transparent 70%);
  filter: blur(70px);
  left: -100px; bottom: -160px;
  animation: orb-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(28px, 3.6vw, 44px); max-width: 22ch; margin: 0 auto 18px; position: relative; }
.final-cta p { color: var(--text-inverse-muted); max-width: 56ch; margin: 0 auto 34px; font-size: 16.5px; position: relative; }
.final-cta .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--text-inverse-muted);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.site-footer h4 {
  color: var(--text-inverse);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.site-footer ul { list-style: none; display: grid; gap: 11px; }
.site-footer a:hover { color: var(--text-inverse); }
.footer-brand .logo { font-size: 17px; }
.footer-brand p { margin-top: 16px; max-width: 30ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13.5px;
}

/* ---------- Pages intérieures ---------- */
.page-hero {
  background:
    radial-gradient(700px 380px at 80% -20%, rgba(27, 157, 243, .18), transparent 60%),
    var(--ink);
  color: var(--text-inverse);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,157,243,.4), transparent 70%);
  filter: blur(70px);
  top: -80px; right: 8%;
  animation: orb-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.page-hero .crumb {
  font-size: 13.5px;
  color: var(--text-inverse-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.page-hero .crumb a:hover { color: var(--text-inverse); }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); max-width: 26ch; position: relative; z-index: 1; }
.page-hero .lead {
  margin-top: 18px;
  color: var(--text-inverse-muted);
  max-width: 62ch;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.check-list svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 3px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.info-panel {
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.info-panel h3 { font-size: 19px; margin-bottom: 16px; }

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Formulaire ---------- */
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid #d3dde8;
  border-radius: 11px;
  background: #fff;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(27, 157, 243, .14);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); }
.form-status { font-weight: 600; font-size: 14.5px; }
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }

/* ---------- Devis express (sélecteur de panne) ---------- */
.devis-box {
  max-width: 820px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #e2e9f1;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 26px;
}
.devis-lbl {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 13px;
  color: var(--accent-dark);
  letter-spacing: .04em;
}
.devis-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.devis-mode-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid #d3dde8;
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.devis-mode-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 157, 243, .16);
}
.devis-mode-btn.on {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(27, 157, 243, .18);
}
.devis-mode-btn svg {
  width: 26px; height: 26px;
  color: var(--accent);
  flex: none;
}
.devis-mode-btn strong { display: block; font-family: var(--font-display); font-size: 16px; }
.devis-mode-btn small { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.devis-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.devis-chip {
  border: 1.5px solid #d3dde8;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 19px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.devis-chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.devis-chip.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(27, 157, 243, .35);
}
.devis-result {
  border-top: 1px dashed #d3dde8;
  padding-top: 24px;
  display: grid;
  gap: 16px;
}
.devis-delai {
  display: flex;
  align-items: center;
  gap: 14px;
}
.devis-delai svg { width: 34px; height: 34px; color: var(--accent); flex: none; }
.devis-delai span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.devis-delai small { color: var(--text-muted); font-size: 13px; }
.devis-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.devis-note { font-size: 13.5px; color: var(--text-muted); }
.devis-form { display: grid; gap: 12px; }
.devis-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.devis-form input, .devis-form textarea {
  width: 100%;
  border: 1.5px solid #d3dde8;
  border-radius: 11px;
  background: #fff;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.devis-form input:focus, .devis-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(27, 157, 243, .14);
}
.devis-form textarea { min-height: 72px; resize: vertical; }
.devis-err { font-size: 14px; font-weight: 600; color: #b91c1c; }
.devis-err.ok { color: #15803d; }
.devis-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 30px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-muted);
}
.dp-step { display: flex; align-items: center; gap: 10px; }
.dp-step span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex: none;
}

/* ---------- Chat widget ---------- */
.chat-root { position: fixed; right: 22px; bottom: 22px; z-index: 150; font-family: var(--font-body); }
.chat-fab {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(27, 157, 243, .45);
  transition: box-shadow .2s ease;
  animation: fab-bounce 5.5s ease-in-out infinite;
}
.chat-fab:hover { box-shadow: 0 16px 40px rgba(27, 157, 243, .6); }
/* halo qui pulse en continu */
.chat-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(27, 157, 243, .45);
  animation: fab-ping 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes fab-ping {
  0%       { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.8); opacity: 0; }
}
/* petit rebond toutes les ~5 s */
@keyframes fab-bounce {
  0%, 84%, 100% { transform: translateY(0); }
  88%  { transform: translateY(-8px); }
  92%  { transform: translateY(0); }
  96%  { transform: translateY(-4px); }
}
.chat-fab svg { width: 26px; height: 26px; }
/* bulle d'accroche */
.chat-teaser {
  position: absolute;
  right: 72px;
  bottom: 10px;
  background: #fff;
  color: var(--text);
  padding: 11px 16px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 16px 40px rgba(13, 40, 70, .25);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  transform: translateX(10px) scale(.96);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.chat-teaser.show { opacity: 1; transform: none; pointer-events: auto; }
.chat-teaser small { display: block; font-weight: 500; font-size: 12px; color: var(--text-muted); }
.chat-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #ef4444;
  color: #ef4444;
  font-size: 8px;
  border: 2px solid #fff;
}
.chat-panel {
  position: absolute;
  right: 0; bottom: 74px;
  width: 350px;
  max-width: calc(100vw - 44px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(13, 40, 70, .3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-head {
  background: var(--ink);
  color: var(--text-inverse);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-head strong { font-family: var(--font-display); letter-spacing: .12em; font-size: 15px; }
.chat-status { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-inverse-muted); margin-top: 2px; }
.chat-status i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
.chat-close {
  background: none; border: 0;
  color: var(--text-inverse-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}
.chat-close:hover { color: #fff; }
.chat-body { display: flex; flex-direction: column; max-height: 440px; }
.chat-form { padding: 16px; display: grid; gap: 10px; }
.chat-intro { font-size: 13.5px; color: var(--text-muted); }
.chat-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chat-form input, .chat-form textarea, .chat-reply input {
  width: 100%;
  border: 1.5px solid #d3dde8;
  border-radius: 10px;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.chat-form input:focus, .chat-form textarea:focus, .chat-reply input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 157, 243, .14);
}
.chat-form textarea { min-height: 76px; resize: vertical; }
.chat-send-btn {
  border: 0;
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  font-family: var(--font-body);
}
.chat-send-btn:hover { filter: brightness(1.08); }
.chat-send-btn:disabled { opacity: .6; cursor: default; }
.chat-err { font-size: 13px; color: #b91c1c; font-weight: 600; }
.chat-conv { display: flex; flex-direction: column; min-height: 300px; max-height: 440px; }
.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper-soft);
}
.chat-msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-msg.moi {
  align-self: flex-end;
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg.shop {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e2e9f1;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-reply {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #e6ecf3;
  background: #fff;
}
.chat-reply button {
  flex: none;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.chat-reply button:hover { background: var(--accent-dark); }
.chat-reply button svg { width: 18px; height: 18px; }
@media (max-width: 480px) {
  .chat-root { right: 14px; bottom: 14px; }
  .chat-panel { bottom: 68px; }
}

/* ---------- Animations reveal (cascade) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
/* cascade dans les grilles */
.services-grid > .reveal:nth-child(2), .why-grid > .reveal:nth-child(2), .stores-grid > .reveal:nth-child(2) { transition-delay: .1s; }
.services-grid > .reveal:nth-child(3), .why-grid > .reveal:nth-child(3), .stores-grid > .reveal:nth-child(3) { transition-delay: .2s; }
.services-grid > .reveal:nth-child(4), .why-grid > .reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .orb, .orb-1, .orb-2, .hero-card, .marquee-track, .dark-band::after,
  .final-cta::before, .page-hero::after, .hero-badge .dot,
  .chat-fab, .chat-fab::before, .chat-status i,
  .hero::before, .fx-phone, .fx-screen, .fx-crack, .fx-p {
    animation: none !important;
  }
  .fx-crack { opacity: 0; }
  .fx-p { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .header-cta span { display: none; }
  .header-cta { padding: 10px 13px; }
  .main-nav { gap: 20px; }
}

@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pannes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding: 68px 0 80px; }
  .hero-visual { max-width: 520px; }
  .fx-phone { opacity: .08; right: -14%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dark-band { grid-template-columns: 1fr; padding: 44px 34px; }
  .two-col, .buyback { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: 1fr 1fr; }
}

/* Barre d'actions mobile — masquée sur desktop */
.mobile-bar { display: none; }
.main-nav .nav-call { display: none; }

@media (max-width: 720px) {
  .logo { font-size: 16px; letter-spacing: .18em; }
  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .main-nav a::after { display: none; }
  .main-nav .nav-call {
    display: block;
    margin-top: 14px;
    padding: 14px;
    text-align: center;
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-radius: 12px;
    border-bottom: 0;
    font-weight: 600;
  }
  .nav-toggle { display: block; }
  /* bouton d'appel : rond, plein, propre */
  .header-cta span { display: none; }
  .header-cta {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 5px 14px rgba(27, 157, 243, .45);
    flex: none;
  }
  .header-cta:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
  .header-cta svg { width: 18px; height: 18px; }
  .header-inner { gap: 14px; }
  /* barre d'actions fixe en bas */
  body { padding-bottom: 54px; }
  .mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 140;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(11, 15, 21, .97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
  }
  .mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.1); }
  .mobile-bar a svg { width: 18px; height: 18px; }
  .mobile-bar .mb-devis { color: var(--cyan); }
  /* le chat passe au-dessus de la barre */
  .chat-root { right: 14px; bottom: 72px; }
  /* boutons pleine largeur, plus propres au pouce */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .devis-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { padding: 14px 10px; }
  .stores-grid, .pannes-grid { grid-template-columns: 1fr; }
  .form-row, .devis-form-row { grid-template-columns: 1fr; }
  .devis-box { padding: 24px 20px; }
  .devis-mode { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .orb-1 { width: 260px; height: 260px; }
  .orb-2 { width: 220px; height: 220px; }
}
