/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f7f5f2;
  --bg-alt:   #eeeae3;
  --card:     #ffffff;
  --navy:     #0e1c35;
  --navy2:    #162340;
  --text:     #1a1a2a;
  --muted:    #64647a;
  --light:    #a0a0b8;
  --accent:   #f97316;
  --accent-h: #e8620a;
  --border:   #e0dbd3;
  --radius:   10px;
  --radius-sm:6px;
  --sh-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 8px rgba(0,0,0,.04);
  --sh:       0 4px 20px rgba(0,0,0,.08);
  --sh-md:    0 8px 40px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, .logo, .stat-num, .hcard-score, .rating-score, .step-num {
  font-family: 'Outfit', 'Inter', Arial, sans-serif;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #c8c3bb; border-radius: 99px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp .5s ease both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .18s; }
.delay-3 { animation-delay: .28s; }

/* ===== ICON WRAP ===== */
.icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.icon-wrap svg { width: 22px; height: 22px; }
.card:hover .icon-wrap,
.highlight-item:hover .icon-wrap { background: rgba(249,115,22,.18); transform: scale(1.08); }

.icon-wrap-lg {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin: 0 auto 16px;
}
.icon-wrap-lg svg { width: 26px; height: 26px; }

.icon-wrap-navy {
  background: rgba(14,28,53,.08);
  color: var(--navy);
  margin: 0 auto 14px;
}
.garantie-card:hover .icon-wrap-navy { background: rgba(14,28,53,.15); transform: scale(1.08); }
.atelier-card:hover .icon-wrap { transform: scale(1.08); }
.atelier-card .icon-wrap,
.garantie-card .icon-wrap { margin-left: auto; margin-right: auto; }

/* ===== DIAGONALES DE SECTION ===== */
.section-diag-top {
  position: relative;
}
.section-diag-top::before {
  content: '';
  position: absolute;
  top: -32px; left: 0; right: 0;
  height: 32px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANNOUNCE BAR ===== */
.announce-bar {
  background: var(--accent);
  color: #fff;
  font-size: .82rem;
  position: relative;
  z-index: 200;
}
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 48px 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.announce-inner strong { font-weight: 700; }
.announce-link {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  opacity: .9;
  transition: opacity .15s;
}
.announce-link:hover { opacity: 1; }
.announce-close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .15s;
  line-height: 1;
}
.announce-close:hover { color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: #fff; font-weight: 600; }

.nav-cta {
  margin-left: 12px;
  padding: 8px 18px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--accent-h) !important; }

.burger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  padding: 7px;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius-sm);
  transition: color .15s;
}
.burger:hover { color: #fff; }
.burger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--navy);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 8px 16px 14px; }
.mobile-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s, background .15s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.07); }

/* ===== MAIN ===== */
main { flex: 1; }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 72px 32px 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(249,115,22,.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-orb { display: none; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 20px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(120deg, #f97316 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-sky {
  background: linear-gradient(120deg, #f97316 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid #b8b4ac;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-alt);
  transform: translateY(-1px);
}

.hero .btn-outline,
.cta-section .btn-outline,
.page-header .btn-outline {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.22);
}
.hero .btn-outline:hover,
.cta-section .btn-outline:hover,
.page-header .btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.stat-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}

.stat-label {
  font-size: .74rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 32px; }
.section-alt {
  background: var(--bg-alt);
}
.glow-line { display: none; }

.section-inner { max-width: 1240px; margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.1;
  color: var(--navy);
  text-align: center;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: .97rem;
  max-width: 500px;
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 18px; }

/* ===== CARD ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
  border-color: var(--border-h);
}
.card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 1.9rem; margin-bottom: 16px; display: block; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  box-shadow: var(--sh-sm);
}
.product-card:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--accent); }

.product-img {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border-bottom: 1px solid var(--border);
}
.product-img::after { display: none; }

.product-info { padding: 20px; }
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; margin-top: 8px; color: var(--navy); }
.product-info p { font-size: .84rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }

.price { font-size: 1.35rem; font-weight: 800; color: var(--accent); }

/* ===== TAG ===== */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .71rem;
  font-weight: 600;
  background: rgba(249,115,22,.1);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,.2);
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  box-shadow: var(--sh-sm);
}
.blog-card:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--accent); }

.blog-img {
  height: 175px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-body { padding: 20px; }
.blog-body .date { font-size: .77rem; color: var(--light); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.blog-body h3 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; color: var(--navy); }
.blog-body p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap .18s;
}
.read-more:hover { gap: 9px; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 18px; }

label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  padding: 11px 15px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .94rem;
  font-family: inherit;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
select option { background: #fff; color: var(--text); }
textarea { resize: vertical; min-height: 130px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 64px 32px 52px;
  text-align: center;
  background: var(--navy);
  border-bottom: none;
}
.page-header::before { display: none; }
.page-header::after { display: none; }

.page-header h1 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,.5);
  font-size: .97rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.page-header .badge { position: relative; z-index: 1; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===== GLOW DIVIDER ===== */
.glow-line { height: 1px; background: var(--border); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'Réparation';
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.04em;
  line-height: 1;
}
.cta-section .section-label { color: var(--accent); opacity: .9; }
.cta-section .section-title { color: #fff; }
.cta-section p { color: rgba(255,255,255,.5); }
.cta-section .btn-outline {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
}
.cta-section .btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.cta-section .section-inner { position: relative; z-index: 1; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(249,115,22,.07);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-box::before { display: none; }
.info-box p { font-size: .87rem; color: var(--muted); line-height: 1.6; }
.info-box strong { color: var(--text); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: none;
  padding: 60px 32px 28px;
}
footer::before { display: none; }

.footer-inner { max-width: 1240px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .logo { display: inline-block; margin-bottom: 12px; color: #fff; }
.footer-brand p { color: rgba(255,255,255,.38); font-size: .855rem; max-width: 260px; line-height: 1.75; }

.footer-col h4 { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.35); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.28);
  font-size: .78rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ===== HIGHLIGHTS (points forts) ===== */
.highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.highlight-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: box-shadow .22s, border-color .22s, transform .22s;
  position: relative;
  overflow: hidden;
}
.highlight-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.highlight-item:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--border-h); }
.highlight-item:hover::before { transform: scaleX(1); }
.highlight-item .icon-wrap { margin: 0 auto 16px; }
.highlight-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.highlight-item p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) { .highlight-row { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { padding: 68px 20px 52px; }
  .section { padding: 56px 20px; }
  .stats-row { flex-direction: column; max-width: 260px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .page-header { padding: 48px 20px 36px; }
  .faq-a-inner { padding: 2px 20px 18px; }
  .section-sub { margin-bottom: 32px; }
  .step-bg-num { display: none; }
  input, textarea, select { font-size: 1rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .brands-label { display: none; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
  .hero-card { padding: 20px 16px; }
  .hcard-score { font-size: 2.5rem; }
  .faq-a-inner { padding: 2px 16px 18px; }
  .tarif-v2-strip { gap: 16px; padding: 16px 20px; }
  .badge-location { display: none; }
}

/* ===== ATELIER INFO ===== */
.atelier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.atelier-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: box-shadow .22s, border-color .22s, transform .22s;
  position: relative;
  overflow: hidden;
}
.atelier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.atelier-card:hover { box-shadow: var(--sh); border-color: var(--border-h); transform: translateY(-2px); }
.atelier-card:hover::before { transform: scaleX(1); }
.atelier-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.atelier-card h4 { font-size: .69rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.atelier-card p { font-size: .88rem; line-height: 1.6; color: var(--text); }
.atelier-card p a { color: var(--accent); transition: color .15s; }
.atelier-card p a:hover { color: var(--accent-h); }
.atelier-card small { font-size: .79rem; color: var(--muted); display: block; margin-top: 4px; }

/* ===== TARIFS ===== */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.tarif-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.tarif-card:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--accent); }
.tarif-card-header {
  background: var(--navy);
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
}
.tarif-card-header::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(249,115,22,.18);
  pointer-events: none;
}
.tarif-card-header::before {
  content: '';
  position: absolute;
  right: 20px; bottom: -30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(249,115,22,.1);
  pointer-events: none;
}
.tarif-card-header h3 { font-size: .95rem; font-weight: 700; color: #fff; position: relative; z-index: 1; }
.tarif-list { list-style: none; padding: 12px 22px 16px; }
.tarif-line { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); }
.tarif-line:last-child { border-bottom: none; }
.tarif-line span { font-size: .87rem; color: var(--muted); }
.tarif-line strong { font-size: .87rem; font-weight: 700; color: var(--accent); }

/* ===== GARANTIES ===== */
.garanties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.garantie-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, border-color .2s;
}
.garantie-card:hover { box-shadow: var(--sh); border-color: var(--accent); }
.garantie-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.garantie-card h3 { font-size: .93rem; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
.garantie-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ===== VILLES ===== */
.villes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.ville-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 17px;
  box-shadow: var(--sh-sm);
  transition: border-color .2s;
}
.ville-card:hover { border-color: var(--accent); }
.ville-card strong { font-size: .87rem; font-weight: 700; display: block; margin-bottom: 3px; color: var(--navy); }
.ville-card span { font-size: .77rem; color: var(--muted); }

/* ===== AVIS CAROUSEL ===== */
.avis-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.avis-grid::-webkit-scrollbar { display: none; }
.avis-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, border-color .2s;
  min-width: 320px;
  max-width: 380px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.avis-card:hover { box-shadow: var(--sh); border-color: var(--accent); }
.avis-header { display: flex; align-items: center; gap: 12px; }
.avis-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .92rem; flex-shrink: 0;
}
.avis-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.avis-loc { font-weight: 400; font-size: .78rem; color: var(--muted); }
.avis-stars { color: #f59e0b; font-size: .88rem; margin-top: 2px; }
.avis-text { font-size: .87rem; color: var(--muted); font-style: italic; line-height: 1.7; flex: 1; }
.avis-source { font-size: .77rem; color: var(--light); border-top: 1px solid var(--border); padding-top: 10px; }

/* ===== FAQ ===== */
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, background .22s;
  box-shadow: var(--sh-sm);
}
.faq-item:hover { box-shadow: var(--sh); }
.faq-item.open {
  border-color: var(--accent);
  background: #fff9f5;
  box-shadow: 0 4px 24px rgba(249,115,22,.10);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: .97rem; font-weight: 600; text-align: left;
  color: var(--navy); font-family: inherit;
}
.faq-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(249,115,22,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: background .22s, transform .22s;
}
.faq-icon svg { width: 18px; height: 18px; display: block; }
.faq-item.open .faq-icon { background: rgba(249,115,22,.18); transform: scale(1.08); }
.faq-q-text { flex: 1; }
.faq-item.open .faq-q-text { color: var(--accent); }
.faq-chevron { flex-shrink: 0; color: var(--light); transition: transform .25s; margin-left: auto; }
.faq-chevron svg { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .33s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 2px 22px 20px 74px;
  font-size: .875rem; color: var(--muted); line-height: 1.8;
  border-top: 1px solid rgba(249,115,22,.12);
}

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 700;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--navy);
  box-shadow: var(--sh-sm);
  transition: all .18s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--sh); transform: translateY(-2px); }
.social-btn.google { border-color: var(--accent); color: var(--accent); }

/* ===== CHATBOT ===== */
.chatbot-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent);
  color: #fff; border: none; cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
}
.chatbot-btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 28px rgba(249,115,22,.5); }
.chatbot-modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.45); z-index: 1000;
  justify-content: flex-end; align-items: flex-end;
}
.chatbot-modal.active { display: flex; }
.chatbot-window {
  width: 390px; height: 640px;
  background: #fff; border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  overflow: hidden; margin: 0 24px 24px 0;
}
.chatbot-iframe { flex: 1; border: none; width: 100%; display: block; }
/* Le bouton fermer est désormais intégré dans l'iframe header */
.chatbot-close-btn { display: none; }
@media (max-width: 600px) {
  .chatbot-modal { align-items: flex-end; justify-content: center; }
  .chatbot-window {
    width: 100%; height: 92dvh; height: 92vh;
    margin: 0; border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 600px) { .chatbot-btn { bottom: 20px; right: 20px; } }

/* ===== ARTICLE BLOG ===== */
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-wrap article { padding: 0 0 64px; }
.article-wrap article > p,
.article-wrap article > ul,
.article-wrap article > ol { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.article-wrap article h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 36px 0 10px; }
.article-wrap article h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin: 26px 0 8px; }
.article-wrap article ul, .article-wrap article ol { padding-left: 1.4rem; margin-bottom: 14px; }
.article-wrap article li { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: 5px; }
.article-wrap article strong { color: var(--text); }
.article-wrap article a { color: var(--accent); }
.article-wrap article a:hover { color: var(--accent-h); }
.breadcrumb-nav { font-size: .8rem; color: var(--light); margin-bottom: 28px; }
.breadcrumb-nav a { color: var(--accent); }
.tip-box {
  background: rgba(249,115,22,.06); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 18px; margin: 18px 0;
}
.tip-box p { margin: 0; font-size: .87rem; color: var(--muted) !important; line-height: 1.7; }
.warn-box {
  background: rgba(245,158,11,.07); border-left: 3px solid #f59e0b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 18px; margin: 18px 0;
}
.warn-box p { margin: 0; font-size: .87rem; color: #92400e !important; line-height: 1.7; }
.cta-inline {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 30px 26px; text-align: center; margin: 36px 0;
}
.cta-inline h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 7px; color: #fff; }
.cta-inline p { font-size: .88rem; color: rgba(255,255,255,.55) !important; margin-bottom: 18px !important; }
.compare-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .87rem; }
.compare-table th { background: var(--bg-alt); padding: 10px 13px; text-align: left; font-weight: 700; font-size: .77rem; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); border-bottom: 2px solid var(--border); }
.compare-table td { padding: 10px 13px; border-top: 1px solid var(--border); color: var(--muted); }
.compare-table tr:hover td { background: var(--bg-alt); }
.checklist { list-style: none !important; padding-left: 0 !important; }
.checklist li::before { content: "✅ "; }

/* ===== NAV PHONE ===== */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,.15);
  color: var(--accent);
  font-size: .83rem;
  font-weight: 700;
  transition: background .15s;
  margin-left: 8px;
  white-space: nowrap;
}
.nav-phone:hover { background: rgba(249,115,22,.25); }
.nav-phone svg { flex-shrink: 0; }

@media (max-width: 900px) { .nav-phone { display: none; } }

/* ===== HERO SPLIT ===== */
.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-content { text-align: left; }
.hero-content .badge { margin-bottom: 22px; }

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-bottom: 18px;
  color: #fff;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 32px;
  line-height: 1.75;
  max-width: 460px;
}

.hero-content .btn-group { justify-content: flex-start; }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-trust span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ===== HERO CARD ===== */
.hero-card {
  background: linear-gradient(rgba(255,255,255,.07), rgba(255,255,255,.04)) padding-box,
              linear-gradient(135deg, rgba(249,115,22,.5), rgba(255,255,255,.12), rgba(249,115,22,.2)) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.hcard-rating { text-align: center; padding-bottom: 4px; }
.hcard-stars { font-size: 1.4rem; color: #fbbf24; letter-spacing: 2px; margin-bottom: 6px; }
.hcard-score {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
}
.hcard-score span { font-size: 1.2rem; font-weight: 500; color: rgba(255,255,255,.4); }
.hcard-count { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 4px; }

.hcard-sep {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 20px 0;
}

.hcard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hcard-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}
.hcard-list svg { flex-shrink: 0; margin-top: 1px; stroke: var(--accent); }

.hcard-open {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
}
.open-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
  flex-shrink: 0;
  animation: pulse-open 2s ease-in-out infinite;
}
@keyframes pulse-open {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.25); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,.1); }
}

.hcard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
}
.hcard-stat {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hcard-stat:last-child { border-right: none; }
.hcard-stat strong { display: block; font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hcard-stat span { font-size: .72rem; color: rgba(255,255,255,.38); }

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-content h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero-content p { margin: 0 auto 32px; }
  .hero-content .btn-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-card { max-width: 420px; margin: 0 auto; order: 2; }
}

/* ===== BRANDS TICKER ===== */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.brands-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.brands-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.brands-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }

.brands-track span {
  padding: 0 28px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color .2s;
}
.brands-track span:hover { color: var(--navy); }

/* ===== STEPS (comment ça marche) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  counter-reset: steps;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 14px);
  pointer-events: none;
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  text-align: center;
}
.step-item:first-child { padding-left: 0; }
.step-item:last-child { padding-right: 0; }

.step-bg-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(14,28,53,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
  position: relative;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.step-item p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .step-item { padding: 0; text-align: left; display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; row-gap: 6px; align-items: start; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; margin: 0; grid-row: 1 / 3; align-self: start; }
  .step-item h3 { grid-column: 2; }
  .step-item p { grid-column: 2; }
}

/* ===== RATING SHOWCASE ===== */
.rating-showcase {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 40px;
  box-shadow: var(--sh-sm);
  flex-wrap: wrap;
}
.rating-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.05em;
  line-height: 1;
}
.rating-details { flex: 1; min-width: 140px; }
.rating-stars { font-size: 1.3rem; color: #f59e0b; letter-spacing: 2px; }
.rating-count { font-size: .83rem; color: var(--muted); margin-top: 4px; }
.rating-cta { margin-left: auto; white-space: nowrap; }

@media (max-width: 600px) {
  .rating-showcase { flex-direction: column; align-items: flex-start; gap: 14px; }
  .rating-cta { width: 100%; justify-content: center; }
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
  gap: 10px;
}
.mcta-call, .mcta-rdv {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  transition: opacity .15s;
}
.mcta-call {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.mcta-rdv {
  background: var(--accent);
  color: #fff;
}
.mcta-call:hover, .mcta-rdv:hover { opacity: .88; }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .chatbot-btn { bottom: 88px; }
}

/* ===== RÉPARATIONS RÉCENTES ===== */
.repairs-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding: 20px 0 36px;
  margin-top: 32px;
}
.repairs-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.repairs-ticker:hover { animation-play-state: paused; }
.repairs-ticker .repair-card {
  width: 260px;
  flex-shrink: 0;
  border-top: 3px solid var(--accent);
}
.repair-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.repair-card:hover { box-shadow: var(--sh); transform: translateY(-2px); border-color: var(--accent); }
.repair-done {
  position: absolute; top: 14px; right: 14px;
  background: rgba(74,222,128,.1);
  color: #16a34a;
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.repair-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.repair-icon-wrap svg { width: 20px; height: 20px; }
.repair-model {
  font-family: 'Outfit', sans-serif;
  font-size: .97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.repair-panne { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.repair-sep { border: none; border-top: 1px dashed var(--border); margin-bottom: 14px; }
.repair-footer { display: flex; justify-content: space-between; align-items: center; }
.repair-time { font-size: .78rem; color: var(--light); }
.repair-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
}
@media (max-width: 900px) { .repairs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .repairs-grid { grid-template-columns: 1fr; } }

/* ===== ATELIER VISUAL ===== */
.atelier-info-mini { display: flex; flex-direction: column; gap: 14px; margin-bottom: 4px; }
.aim-item { display: flex; align-items: flex-start; gap: 12px; }
.aim-icon {
  width: 36px; height: 36px;
  background: rgba(249,115,22,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.aim-icon svg { width: 16px; height: 16px; }
.aim-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.aim-item span { font-size: .82rem; color: var(--muted); }
.aim-item a { color: var(--navy); transition: color .15s; }
.aim-item a:hover { color: var(--accent); }

.atelier-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.atelier-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 860px) {
  .atelier-map-wrap { height: 280px; }
}

.atelier-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.atelier-visual-text {
  display: flex;
  flex-direction: column;
}

.atelier-visual-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.atelier-visual-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
}
.atelier-visual-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.atelier-photo-placeholder {
  background: linear-gradient(145deg, #0e1c35 0%, #162340 60%, #1c2d50 100%);
  border-radius: 16px;
  height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,.2);
  box-shadow: 0 20px 60px rgba(14,28,53,.15);
}
.aphoto-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.aphoto-glow {
  position: absolute;
  top: 35%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 200px;
  background: radial-gradient(ellipse, rgba(249,115,22,.18) 0%, transparent 70%);
  pointer-events: none;
}
.aphoto-icons {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
}
.aphoto-icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
}
.aphoto-icon.accent {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.35);
  color: var(--accent);
  transform: scale(1.12);
}
.aphoto-icon svg { width: 28px; height: 28px; }
.aphoto-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,18,36,.95));
  padding: 48px 24px 22px;
}
.aphoto-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.aphoto-sub {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.aphoto-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .atelier-visual-grid { grid-template-columns: 1fr; gap: 32px; }
  .atelier-photo-placeholder { height: 280px; }
}

/* ===== PAGE LÉGALE ===== */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 36px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .89rem; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 10px; }
.legal-content li { font-size: .89rem; color: var(--muted); line-height: 1.8; }
