/* ============================================
   XPERTPHONE – Style Sheet
   Palette: Noir #0a0a0a · Orange #ff6600 · Gris #1a1a1a
   ============================================ */

:root {
  --orange: #ff6600;
  --orange-dark: #cc5200;
  --orange-light: #ff8533;
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --text: #e0e0e0;
  --muted: #888;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header h1,
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,102,0,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-large { padding: 18px 40px; font-size: 18px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}
.nav-logo img {
  height: 44px;
  display: block;
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--orange-light) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,102,0,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  z-index: -1;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.4);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.info-pill {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
}
.hero-image-wrap {
  flex: 1;
  max-width: 460px;
  position: relative;
  animation: fadeIn 1s 0.3s ease both;
}
.hero-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(255,102,0,0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 20px;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.services-grid[hidden] {
  display: none;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: none; }
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,102,0,0.15);
}
.service-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #1a0d00, #1a1a1a);
}
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: var(--muted); font-size: 15px; }

/* ---- GALLERY ---- */
.gallery { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.97);
  transition: all 0.4s ease;
}
.gallery-item.visible { opacity: 1; transform: scale(1); }
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
}

/* ---- WHY US ---- */
.why {
  padding: 100px 0;
  background: var(--dark);
}
.why-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.why-text { flex: 1; }
.why-text .section-label { display: block; margin-bottom: 12px; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.1;
}
.why-list { list-style: none; margin-bottom: 40px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}
.check {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.why-img-wrap {
  flex: 0 0 380px;
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,102,0,0.4);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- CONTACT ---- */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.contact-card.visible { opacity: 1; transform: none; }
.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.contact-icon { font-size: 36px; margin-bottom: 16px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-card a { color: var(--orange); text-decoration: none; font-size: 20px; font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }
.contact-card .small { font-size: 13px; margin-top: 6px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  margin-top: 8px;
  transition: all 0.2s;
}
.social-btn:hover { background: #1565d0; transform: translateY(-2px); }

.rdv-banner {
  background: linear-gradient(135deg, #1a0d00, #1f1f1f);
  border: 1px solid var(--orange);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rdv-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.rdv-text p { color: var(--muted); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { height: 36px; filter: brightness(0.9); }
.footer-copy { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-actions { justify-content: center; }
  .hero-info { justify-content: center; }
  .hero-image-wrap { max-width: 340px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 260px; }

  .why-inner { flex-direction: column; gap: 48px; }
  .why-img-wrap { flex: unset; max-width: 320px; }
  .why-badge { left: 0; }

  .rdv-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: inline-block; width: 100%; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- DEVIS FORM ---- */
.devis-section { padding: 100px 0; }

.devis-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.devis-banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
  display: block;
}
.devis-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 100%);
  padding: 24px;
}
.devis-banner-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 900;
  color: var(--white);
  margin-top: 8px;
}

.devis-intro {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
}

.devis-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.req { color: var(--orange); }
.optional { color: var(--muted); font-weight: 400; font-size: 13px; }

.form-input {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-input::placeholder { color: #555; }

/* Marque - radio pills */
.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  position: relative;
  cursor: pointer;
}
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--dark);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.pill input:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 16px rgba(255,102,0,0.4);
}
.pill-autre { display: inline-flex; align-items: center; gap: 6px; }
.pill-input {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 14px;
  color: var(--text);
  font-size: 13px;
  width: 130px;
}
.pill-input:focus { outline: none; border-color: var(--orange); }

/* Pannes - cartes avec icône néon */
.panne-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.panne-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--dark);
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}
.panne-card input { position: absolute; opacity: 0; pointer-events: none; }
.panne-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(0.85);
  transition: filter 0.25s ease;
}
.panne-card span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.3;
  transition: color 0.2s;
}
.panne-card:hover {
  border-color: var(--orange-dark);
}
.panne-card input:checked ~ .panne-icon {
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(255,102,0,0.7));
}
.panne-card input:checked ~ span {
  color: var(--white);
}
.panne-card:has(input:checked) {
  border-color: var(--orange);
  background: linear-gradient(135deg, #1a0d00, #1a1a1a);
  box-shadow: 0 0 20px rgba(255,102,0,0.2);
}

/* Upload photos */
.file-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 28px 16px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.2s;
}
.file-drop:hover { border-color: var(--orange); color: var(--text); }
.file-drop input { display: none; }

.devis-submit { align-self: stretch; justify-content: center; margin-top: 8px; }
.devis-disclaimer {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: -8px;
}

.devis-success {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--orange);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
}
.devis-success.visible { display: block; }
.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.devis-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.devis-success p { color: var(--muted); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .panne-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-form { padding: 24px 20px; }
}

/* ---- CGV ---- */
.cgv-section {
  padding: 100px 0;
  background: var(--dark);
}
.cgv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cgv-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
.cgv-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cgv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cgv-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
}
.cgv-list li strong { color: var(--text); }
.cgv-ol {
  list-style: none;
  counter-reset: cgv-counter;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cgv-ol li {
  counter-increment: cgv-counter;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
}
.cgv-ol li::before {
  content: counter(cgv-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.cgv-ol li strong { color: var(--text); }
.cgv-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}
.cgv-signature {
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-style: italic;
}

@media (max-width: 900px) {
  .cgv-grid { grid-template-columns: 1fr; }

/* ↑ correction : accolade manquante en fin de fichier d'origine, fermée ici ↑ */
}

/* ===== FIXES & AJOUTS (v2 multi-pages) ===== */

/* Logo propre, plus de coins pointus */
.nav-logo img, .footer-logo {
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}
.nav-logo img { height: 44px; width: 44px; }
.footer-logo { height: 40px; width: 40px; }

/* Ligne de contact rapide compacte (remplace les 2 rangées d'actions empilées) */
.quick-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-size: 13.5px;
  transition: border-color .2s, color .2s;
}
.quick-contact a:hover { border-color: var(--orange); color: var(--orange); }
.hero-hours {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

/* Bandeau condensé "pourquoi nous choisir" sur l'accueil */
.highlights {
  padding: 60px 0 20px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
}
.highlight-item .check { color: var(--orange); font-size: 20px; display: block; margin-bottom: 8px; }
.highlight-item p { color: var(--text); font-size: 14px; line-height: 1.4; }

/* Teaser services (icônes seules, sans description) sur l'accueil */
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-teaser-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, transform .2s;
}
.service-teaser-item:hover { border-color: var(--orange); transform: translateY(-3px); }
.service-teaser-item .service-icon { font-size: 26px; margin-bottom: 8px; }
.service-teaser-item span { font-size: 12.5px; display: block; line-height: 1.3; }

.section-cta { text-align: center; margin-top: 32px; }

/* ===== CARROUSEL GALERIE ===== */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .gallery-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  height: 320px;
}
.carousel-track .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-arrows {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.carousel-arrow:hover { border-color: var(--orange); color: var(--orange); }

/* ===== PAGE AVIS ===== */
.reviews-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.review-cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
}
.review-cta-card .review-stars { color: var(--orange); font-size: 20px; margin-bottom: 12px; }
.review-cta-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.review-cta-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.review-note {
  background: var(--dark);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ===== PAGES LEGALES (mentions, confidentialité en pleine largeur) ===== */
.legal-single { grid-template-columns: 1fr !important; max-width: 780px; margin: 0 auto; }

/* ===== PAGE RDV ===== */
.rdv-hero {
  padding: 70px 0;
  text-align: center;
}
.rdv-hero .btn-large { margin-top: 22px; }
.rdv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.rdv-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  text-align: center;
}
.rdv-step-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  margin: 0 auto 14px;
}

/* Footer legal row */
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  font-size: 12.5px;
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-teaser-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-cta-grid { grid-template-columns: 1fr; }
  .rdv-steps { grid-template-columns: 1fr; }
}
.nav-links a.active-link { color: var(--orange); }

/* ===== ACCROCHE / CONVERSION ===== */
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 4px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,122,41,0.1);
  border: 1px solid rgba(255,122,41,0.3);
  color: var(--orange);
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  animation: fadeUp 0.8s 0.35s ease both;
}
.social-proof-badge:hover { background: rgba(255,122,41,0.18); }

.hero-reassurance {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
  animation: fadeUp 0.8s 0.55s ease both;
}

/* Barre d'appel fixe (mobile) */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 10px 12px;
  gap: 8px;
}
.sticky-call-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--card);
}
.sticky-call-bar a:first-child {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.sticky-call-bar .sticky-devis { display: none; }

@media (max-width: 700px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 66px; }
  .sticky-call-bar .sticky-devis { display: flex; }
}

/* ===== AVIS CLIENTS (vrais avis Google) ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name { color: var(--white); font-weight: 600; font-size: 14.5px; }
.review-meta { color: var(--muted); font-size: 12px; margin-top: 2px; }
.review-text { color: var(--text); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ (accordéon) ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--white);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 20px;
  font-family: var(--font-display);
  margin-left: 12px;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 14px; line-height: 1.6; padding-bottom: 18px; }
.faq-item p a { color: var(--orange); }

.devis-note {
  color: var(--muted);
  font-size: 13.5px;
  background: rgba(255,122,41,0.08);
  border: 1px solid rgba(255,122,41,0.25);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: -14px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .faq-item summary { font-size: 14.5px; }
}

/* Icône emoji dans les cartes panne (remplace les images d'origine non fournies) */
.panne-icon-emoji {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 8px;
  background: var(--card);
}

/* ===== ESTIMATION INSTANTANÉE (devis) ===== */
.quality-select {
  margin-top: -8px;
  padding-left: 4px;
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}
.estimate-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 4px 0 24px;
  transition: border-color 0.25s ease;
}
.estimate-box.has-estimate { border-left-color: #4ade80; }
.estimate-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.estimate-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.estimate-box.has-estimate .estimate-value { color: #4ade80; }
.estimate-note { font-size: 12.5px; color: var(--muted); }

/* ===== SÉLECTEUR TYPE D'APPAREIL (services) ===== */
.device-type-select {
  max-width: 420px;
  margin: 0 auto 40px;
  text-align: left;
}
.device-type-select select {
  cursor: pointer;
  font-weight: 600;
}

/* ===== LISTE SERVICES STYLE ÉPURÉ (icône + libellé) ===== */
.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-intro h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.services-intro p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.services-intro-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-intro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .services-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.service-list {
  list-style: none;
  max-width: 480px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}
.service-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  filter: sepia(1) saturate(6) hue-rotate(-10deg);
}
.service-list[hidden] {
  display: none;
}

/* ===== CARTE GOOGLE MAPS (contact) ===== */
.map-embed {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  display: block;
}
