@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap');

/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}
/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}
/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}
/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}
/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}
/* ============================================================
   VOLTGARAGE — style.css
   Feuille de style globale partagée par toutes les pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: static;
  font-family: 'Syne', sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ── VARIABLES ── */
:root {
  --volt:        #C8FF00;
  --volt2:       #A8E000;
  --volt3:       rgba(200,255,0,0.12);
  --bg:          #0a0a0a;
  --bg2:         #111111;
  --bg3:         #181818;
  --bg4:         #1E1E24;
  --border:      rgba(255,255,255,0.08);
  --border-volt: rgba(200,255,0,0.25);
  --text:        #e8e8e8;
  --muted:       #888;
  --muted2:      #555;
  --red:         #FF4060;
  --green:       #4ade80;
  --orange:      #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
}

/* ── TYPOGRAPHIE DE BASE ── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-mark svg { width: 32px; height: 32px; }
.nav-logo-text span { color: var(--volt); }

.nav-links { display: flex; gap: 8px; align-items: center; }

.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-cta {
  padding: 8px 18px;
  background: var(--volt);
  color: #000;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile {
  display: none;
  background: none;
  color: var(--text);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-mobile:hover { background: var(--bg3); }

/* ── MENU MOBILE ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 24px;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-link:hover { color: var(--text); background: var(--bg3); }

.mobile-link-cta {
  margin: 8px 16px;
  background: var(--volt);
  color: #000;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  border: none;
}

/* ── LABELS DE SECTION ── */
.s-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.s-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ── ANIMATION FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── CHAMPS FORMULAIRE ── */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.f-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.f-input, .f-select, .f-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.f-select { cursor: pointer; }
.f-select option { background: var(--bg2); color: var(--text); }
.f-textarea { resize: vertical; min-height: 80px; }

/* ── BOUTONS ── */
.btn-volt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-volt:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

.btn-send {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,255,0,0.25);
}

/* ── INTER CTA BAR ── */
.inter-cta-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border-volt);
  border-bottom: 1px solid var(--border-volt);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.inter-cta-note { font-size: 0.82rem; color: var(--muted); max-width: 420px; }

/* ── CARTES SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.svc-card:hover { border-color: var(--border-volt); transform: translateY(-3px); }

.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.svc-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 800; color: var(--volt); }
.svc-dur { font-size: 0.78rem; color: var(--muted2); margin-left: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--volt); }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--volt);
  background: rgba(200,255,0,0.1);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-contact-icon { font-size: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── SUIVI ── */
.suivi-search {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.suivi-input-row { display: flex; gap: 12px; }

.suivi-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suivi-input:focus { border-color: var(--volt); box-shadow: 0 0 0 3px rgba(200,255,0,0.1); }

.btn-search {
  padding: 12px 24px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,255,0,0.25); }

.suivi-result-box {
  display: none;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── CALCULATEUR TARIFS ── */
.calc-form-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-volt);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-item:hover { border-color: var(--border-volt); transform: translateX(4px); }

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 0.92rem; color: var(--text); line-height: 1.5; }

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ── BADGE STATUT ── */
.badge-sent      { color: var(--volt);   border-color: rgba(200,255,0,0.3);   background: rgba(200,255,0,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-accepted  { color: var(--blue);   border-color: rgba(96,165,250,0.3);  background: rgba(96,165,250,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-completed { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08);  font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-cancelled { color: var(--red);    border-color: rgba(255,64,96,0.3);   background: rgba(255,64,96,0.08);   font-family: 'Courier New', monospace; font-size: 0.55rem; padding: 3px 8px; border-radius: 3px; border-width: 1px; border-style: solid; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--volt);
  text-transform: uppercase;
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-title .volt    { color: var(--volt); display: block; }
.hero-title .outline {
  display: block;
  -webkit-text-stroke: 1.5px var(--muted2);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-n { font-size: 1.6rem; font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-l { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero Right / Card */
.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.floating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--volt);
  background: rgba(200,255,0,0.12);
  border: 1px solid var(--border-volt);
  border-radius: 4px;
  padding: 4px 8px;
  text-transform: uppercase;
  animation: blink-badge 2s ease-in-out infinite;
}
@keyframes blink-badge { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero-card-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted2);
  text-transform: uppercase;
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}

.repair-steps { padding: 8px 0; }

.repair-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  opacity: 0.45;
  transition: background 0.2s;
}
.repair-step.active { opacity: 1; }
.repair-step:last-child { border-bottom: none; }

.step-num    { font-size: 0.62rem; font-weight: 700; color: var(--muted2); font-family: 'Courier New', monospace; width: 18px; flex-shrink: 0; }
.step-icon   { font-size: 1rem; flex-shrink: 0; }
.step-info   { flex: 1; min-width: 0; }
.step-label  { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.step-desc   { font-size: 0.7rem; color: var(--muted); margin-top: 1px; }

.step-status {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.status-done   { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.08); }
.status-active { color: var(--volt);   border-color: var(--border-volt);    background: rgba(200,255,0,0.08);  animation: blink-badge 1.5s ease-in-out infinite; }
.status-wait   { color: var(--muted2); border-color: var(--border);         background: transparent; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.hcf-client { font-size: 0.78rem; color: var(--muted); }
.hcf-ref    { font-size: 0.65rem; font-weight: 700; color: var(--volt); font-family: 'Courier New', monospace; letter-spacing: 0.08em; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 24px;
  white-space: nowrap;
}

.trust-check { color: var(--volt); font-size: 0.8rem; }

.trust-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── SERVICES HEADER ── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

/* ── SECTION NAVIGATION RAPIDE ── */
.section-nav {
  padding: 72px clamp(16px, 6vw, 80px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    min-height: auto;
    gap: 40px;
  }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-desc  { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar  { padding: 12px 16px; gap: 4px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-sep  { display: none; }

  /* Services header */
  .services-header { flex-direction: column; align-items: flex-start; }

  /* Formulaires & layout */
  .f-row { grid-template-columns: 1fr; }
  .inter-cta-bar { flex-direction: column; text-align: center; padding: 24px 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .suivi-input-row { flex-direction: column; }
  .btn-search { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PAGE DEVIS ── */
#rdv {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.rdv-conversion-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.rdv-form-main {
  background: var(--bg2);
  border: 1px solid var(--border-volt);
  border-radius: var(--radius);
  overflow: hidden;
}

.rdv-form-header {
  background: linear-gradient(135deg, #0f1a00, #1a2a00);
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-volt);
}
.rdv-form-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--volt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rdv-form-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.rdv-form-header-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.rdv-form-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rdv-submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: var(--volt);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,255,0,0.3);
}
.rdv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.rdv-urgency {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.02em;
}

.rdv-success { padding: 48px 32px; text-align: center; }
.rdv-success-icon { font-size: 3rem; margin-bottom: 16px; }
.rdv-success-title { font-size: 1.4rem; font-weight: 800; color: var(--volt); margin-bottom: 10px; }
.rdv-success-msg { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.rdv-success-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--volt);
  background: rgba(200,255,0,0.08);
  border: 1px solid var(--border-volt);
  border-radius: 6px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
}

.rdv-trust-col { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.rdv-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.rdv-trust-card:hover { border-color: var(--border-volt); transform: translateX(4px); }
.rdv-trust-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--border-volt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rdv-info-lbl { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rdv-info-val { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .rdv-conversion-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #rdv { padding: 40px 16px 60px; }
}

/* ── RESPONSIVE GLOBAL MOBILE ── */

/* Footer en 2 colonnes sur tablette, 1 colonne sur mobile */
@media (max-width: 768px) {
  /* Footer colonnes côte à côte sur mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  /* Colonne brand prend toute la largeur */
  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
  footer {
    padding: 40px 20px 28px;
  }

  /* Nav - masquer le bouton espace réparateur sur très petits écrans */
  .nav-repairer { display: none; }

  /* fade-up toujours visible */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Devis */
  .rdv-conversion-layout { grid-template-columns: 1fr; gap: 24px; }
  .rdv-trust-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  #rdv { padding: 32px 16px 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Page headers */
  .s-title { font-size: 1.6rem; }
  .services-header { gap: 16px; }
}

@media (max-width: 480px) {
  /* Footer 1 colonne sur très petit écran */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rdv-trust-col { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .hero-stats { justify-content: flex-start; gap: 16px; }
  .hero-title { font-size: 1.8rem; }
}

/* ── FOOTER LÉGAL VOLTGARAGE ── */
.footer-legal-bar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 8px 20px 16px !important;
  width: 100% !important;
  text-align: center !important;
}
.footer-legal-bar a {
  display: inline !important;
  flex: none !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
  padding: 2px 10px !important;
  white-space: nowrap !important;
  transition: color 0.2s !important;
}
.footer-legal-bar a:hover {
  color: #8fce00 !important;
}
