/* ============================================
   ORS RAMONAGE — Feuille de style principale
   Mobile-First | Noir / Orange
   ============================================ */

/* ─── Variables ─── */
:root {
  --orange:      #FF8C00;
  --orange-dark: #D97600;
  --orange-glow: rgba(255, 140, 0, 0.30);
  --bg:          #0D0D0D;
  --surface:     #181818;
  --surface-2:   #222222;
  --border:      #2C2C2C;
  --text:        #FFFFFF;
  --text-muted:  #9A9A9A;
  --r-lg:        20px;
  --r-md:        14px;
  --r-sm:        8px;
  --ease:        0.22s ease;
  --header-h:    64px;
  --bar-h:       70px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: var(--bar-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 2px solid var(--orange);
  height: var(--header-h);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
}
.logo__name {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1.5px;
  line-height: 1;
}
.logo__sub {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Nav liens — masqués mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Bouton Appeler — desktop uniquement */
.btn-call-nav {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-md);
  transition: background var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-call-nav:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 18px var(--orange-glow);
}

/* Bouton RDV en ligne — desktop uniquement */
.btn-rdv-nav {
  display: none;
  align-items: center;
  gap: 8px;
  background: #29A8E0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-md);
  transition: background var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-rdv-nav:hover {
  background: #1A8DC2;
  box-shadow: 0 4px 18px rgba(41, 168, 224, 0.35);
}

/* ─── Burger ─── */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--r-sm);
  z-index: 300;
}
.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.burger.is-active .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-active .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Menu mobile overlay ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: all; }
.mobile-nav__link {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  transition: color var(--ease);
  letter-spacing: -0.5px;
}
.mobile-nav__link:hover { color: var(--orange); }
.mobile-nav__call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--r-lg);
  margin-top: 12px;
  box-shadow: 0 6px 28px var(--orange-glow);
}

/* ─── Barre fixe bas (mobile) ─── */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.btn-call-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--r-md);
  width: 100%;
  box-shadow: 0 4px 22px var(--orange-glow);
  transition: background var(--ease), transform 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.btn-call-bar:active { background: var(--orange-dark); transform: scale(0.98); }

/* ─── Hero (index.html) ─── */
.hero {
  margin: 16px;
  padding: 26px 20px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.hero__badge {
  display: flex;
  width: fit-content;
  align-items: center;
  background: var(--orange);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  margin: 0 auto 18px;
}
.hero__title {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hero__title-big {
  font-size: 1.4em;
}
.hero__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #CCCCCC;
}
.accent { color: var(--orange); font-weight: 700; font-style: normal; }

.btn-primary.btn-primary--blue {
  background: #29A8E0;
  color: #D8D8D8;
  box-shadow: 0 8px 32px rgba(41, 168, 224, 0.35);
}
.btn-primary.btn-primary--blue:hover  { background: #1A8DC2; }
.btn-primary.btn-primary--blue:active { background: #1579A8; transform: scale(0.97); }

.btn-prestation.btn-prestation--blue {
  background: #29A8E0;
  color: #D8D8D8;
  box-shadow: 0 6px 26px rgba(41, 168, 224, 0.40);
}
.btn-prestation.btn-prestation--blue:hover  { background: #1A8DC2; }
.btn-prestation.btn-prestation--blue:active { background: #1579A8; }

/* ─── CTA principal ─── */
.cta-wrap {
  padding: 32px 16px 16px;
  display: flex;
  justify-content: center;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--text);
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 22px 32px;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 32px var(--orange-glow);
  transition: background var(--ease), transform 0.12s, box-shadow var(--ease);
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.2px;
  cursor: pointer;
}
.btn-primary:active { transform: scale(0.97); background: var(--orange-dark); }

/* ─── Deux boutons CTA côte à côte ─── */
.cta-wrap--duo {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-wrap--duo .btn-primary {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}
.btn-call {
  background: var(--orange);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.btn-call:hover  { background: var(--orange-dark); }
.btn-call:active { background: var(--orange-dark); }
.btn-rdv {
  background: #1a7abf;
  box-shadow: 0 8px 24px rgba(26,122,191,0.30);
  color: #fff;
}
.btn-rdv:hover  { background: #1568a3; }
.btn-rdv:active { background: #1568a3; transform: scale(0.97); }

/* ─── Bouton RDV mobile (pages prestation) ─── */
.btn-rdv-mobile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  margin: 10px 16px 0;
  box-shadow: 0 3px 10px var(--orange-glow);
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.1px;
  transition: background var(--ease), transform 0.12s;
}
.btn-rdv-mobile:active { background: var(--orange-dark); transform: scale(0.97); }

.btn-rdv-mobile-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #29A8E0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  margin: 10px 0 0 8px;
  box-shadow: 0 3px 10px rgba(41, 168, 224, 0.35);
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.1px;
  transition: background var(--ease), transform 0.12s;
}
.btn-rdv-mobile-online:active { background: #1A8DC2; transform: scale(0.97); }

/* ─── Prestations (prestations.html) ─── */
.page-header {
  padding: 28px 16px 8px;
  text-align: center;
}
.page-header__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.page-header__title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--text);
}

.prestation-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 16px;
}
.btn-prestation {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: var(--text);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--r-lg);
  width: 100%;
  box-shadow: 0 6px 26px var(--orange-glow);
  transition: background var(--ease), transform 0.12s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.3px;
  cursor: pointer;
  text-decoration: none;
}
.btn-prestation:active { transform: scale(0.98); background: var(--orange-dark); }

.btn-prestation--red {
  background: #C0392B;
  box-shadow: 0 6px 26px rgba(192, 57, 43, 0.40);
}
.btn-prestation--red:hover  { background: #A93226; }
.btn-prestation--red:active { background: #922B21; }

.btn-prestation--green {
  background: #1E8449;
  box-shadow: 0 6px 26px rgba(30, 132, 73, 0.40);
}
.btn-prestation--green:hover  { background: #196F3D; }
.btn-prestation--green:active { background: #145A32; }
.btn-prestation__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  flex-shrink: 0;
}
.btn-prestation__label { flex: 1; }
.btn-prestation__arrow {
  opacity: 0.7;
  flex-shrink: 0;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  padding: 14px 16px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { opacity: 0.35; font-size: 0.8rem; }
.breadcrumb__current { color: var(--orange); font-weight: 700; }

/* ─── Fiche prestation détail ─── */

/* Encart prix orange */
.price-card-orange {
  margin: 14px 16px 0;
  background: var(--orange);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 8px 32px var(--orange-glow);
}
.price-card-orange .price-value {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.price-card-orange .price-ttc {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Description de la prestation */
.desc-card {
  margin: 0 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* Zone dessin technique (zoomable desktop) */
.drawing-zone {
  margin: 0 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  padding: 14px;
}
.drawing-zone__hint {
  display: none; /* affiché uniquement desktop via media query */
}
.drawing-zone .drawing-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.22s ease;
  user-select: none;
  -webkit-user-select: none;
}

/* Ordre d'affichage flex pour les pages détail */
.page-detail {
  display: flex;
  flex-direction: column;
}
.page-detail .breadcrumb        { order: 1; }
.page-detail .page-header       { order: 2; }
.page-detail .price-card-orange { order: 3; }
.page-detail .cta-wrap          { order: 4; padding-top: 14px; padding-bottom: 4px; }
.page-detail .desc-card         { order: 5; }
.page-detail .drawing-zone      { order: 6; }
/* ─── Conteneur page détail ─── */
.detail-page {
  padding: 20px 16px 40px;
}

/* ─── Section Détails de la prestation ─── */
.detail-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
}

.detail-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.detail-section__title-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.detail-section__bar {
  display: block;
  width: 4px;
  min-height: 52px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-section__title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.15;
  text-transform: uppercase;
}

.detail-section__sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 7px;
}

/* Badge prix — carré fixe identique sur tous les écrans */
.detail-section__price {
  background: var(--orange);
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
  width: 100px;
  height: 100px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile : 1 colonne × 4 lignes */
.detail-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Cartes — style identique mobile et desktop */
.detail-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
}

.detail-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1.3;
}

.detail-card__text {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Responsive ≥ 768px ─── */
@media (min-width: 600px) {
  body { padding-bottom: 0; }
  .burger { display: none; }
  .bottom-bar { display: none; }
  .btn-rdv-mobile { display: none; }
  .nav-links { display: flex; }
  .btn-call-nav { display: flex; }
  .btn-rdv-nav  { display: flex; }

  .hero {
    margin: 40px auto;
    max-width: 860px;
    padding: 52px 56px;
  }
  .hero__title { font-size: 2.4rem; }
  .cta-wrap { padding: 8px 16px 56px; }
  .btn-primary { font-size: 1.3rem; padding: 24px 64px; max-width: 420px; }

  .prestation-list { max-width: 580px; margin: 0 auto; padding: 32px 24px; gap: 18px; }
  .btn-prestation { font-size: 1.8rem; padding: 28px 32px; }
  .btn-prestation__icon { width: 56px; height: 56px; border-radius: 14px; }

  /* Détail desktop */
  .price-card-orange {
    max-width: 480px;
    margin: 24px auto 0;
  }
  .price-card-orange .price-value { font-size: 4.5rem; }
  .desc-card { max-width: 480px; margin: 12px auto; }

  .drawing-zone {
    cursor: zoom-in;
    margin: 8px auto 28px;
    max-width: 880px;
    padding: 20px;
  }
  .drawing-zone.is-zoomed { cursor: zoom-out; }

  /* Détails de la prestation — desktop : uniquement mise en page */
  .detail-page   { padding: 32px 24px 60px; }
  .detail-section { max-width: 920px; margin: 0 auto; padding: 36px 44px; }
  /* Desktop : 2 colonnes */
  .detail-section__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  /* Dernière carte seule sur sa ligne (nb impair) → pleine largeur centrée */
  .detail-section__grid > .detail-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    margin: 0 auto;
  }

  .drawing-zone__hint {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 0.63rem;
    color: rgba(255,140,0,0.38);
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    letter-spacing: 0.3px;
    font-style: italic;
  }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 3.6rem; }

  .prestation-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
    gap: 20px;
  }
}

/* ─── Page Fioul — accordéon ─── */
.fioul-packs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 16px 40px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.fioul-pack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease);
}
.fioul-pack--open {
  border-color: var(--orange);
}

.fioul-pack__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.fioul-pack__trigger-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.fioul-pack__bar {
  display: block;
  width: 4px;
  min-height: 44px;
  background: var(--border);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
  transition: background var(--ease);
}
.fioul-pack--open .fioul-pack__bar { background: var(--orange); }

.fioul-pack__title {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.3px;
  text-transform: uppercase;
  line-height: 1.15;
}

.fioul-pack__sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  transition: color var(--ease);
}
.fioul-pack--open .fioul-pack__sub { color: var(--orange); }

.fioul-pack__trigger-aside {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fioul-pack__price {
  background: var(--orange);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
  width: 84px;
  height: 84px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -1px;
  line-height: 1;
  flex-shrink: 0;
  padding: 4px;
}

.fioul-pack__chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.32s ease, color var(--ease);
}
.fioul-pack--open .fioul-pack__chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

/* Corps expansible */
.fioul-pack__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.fioul-pack--open .fioul-pack__body {
  max-height: 900px;
}

.fioul-pack__content {
  padding: 0 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Carte "03" exclusive à la formule complète */
.detail-card--exclusive {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.07);
}

/* ─── Page Tarifs ─── */
.tarif-page { padding: 16px 16px 40px; max-width: 680px; margin: 0 auto; }
.tarif-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.tarif-section__head {
  background: var(--orange);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tarif-section__head--red   { background: #C0392B; }
.tarif-section__head--green { background: #1E8449; }
.tarif-section__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tarif-row {
  display: grid;
  grid-template-columns: 1fr 100px 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--ease);
}
.tarif-row:last-child { border-bottom: none; }
a.tarif-row:hover { background: rgba(255,140,0,0.06); cursor: pointer; }
.tarif-row__arrow {
  color: var(--border);
  transition: color var(--ease), transform var(--ease);
  justify-self: end;
}
a.tarif-row:hover .tarif-row__arrow {
  color: var(--orange);
  transform: translateX(3px);
}
.tarif-row__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.tarif-row__desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.tarif-row__price {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  white-space: nowrap;
  letter-spacing: -0.5px;
  text-align: right;
}
.tarif-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 0 4px;
  line-height: 1.5;
}

/* ─── Page Contact ─── */
.contact-page { padding: 16px 16px 40px; max-width: 560px; margin: 0 auto; }
.contact-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-form__input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.contact-form__input:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form__input::placeholder { color: var(--text-muted); opacity: 0.55; }
textarea.contact-form__input { resize: vertical; min-height: 120px; }
.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background var(--ease), transform 0.12s;
}
.contact-form__submit:hover { background: var(--orange-dark); }
.contact-form__submit:active { transform: scale(0.98); }
.contact-success {
  display: none;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid var(--orange);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

/* ─── Page Zone d'intervention ─── */
.zone-page { padding: 16px 16px 40px; max-width: 700px; margin: 0 auto; }
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 0;
}
.zone-map { width: 100%; height: auto; display: block; }
.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 14px;
}
.zone-cities__title {
  width: 100%;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.zone-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease);
}
a.zone-tag:hover { border-color: var(--orange); color: var(--orange); cursor: pointer;
}

/* ─── Accordéon Audit — variante verte ─── */
.audit-packs .fioul-pack--open                    { border-color: #1E8449; }
.audit-packs .fioul-pack--open .fioul-pack__bar   { background: #1E8449; }
.audit-packs .fioul-pack--open .fioul-pack__sub   { color: #1E8449; }
.audit-packs .fioul-pack--open .fioul-pack__chevron { color: #1E8449; }
.audit-packs .fioul-pack__price                   { background: #1E8449; }

/* ─── Popup numéro (desktop) ─── */
.tel-popup {
  position: absolute;
  z-index: 9999;
  background: var(--surface-2);
  border: 1.5px solid var(--orange);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  animation: tel-popup-in 0.15s ease;
}
@keyframes tel-popup-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tel-popup__num {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.tel-popup__copy {
  background: var(--orange);
  color: var(--bg);
  border: none;
  border-radius: var(--r-sm);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease);
  font-family: inherit;
}
.tel-popup__copy:hover { background: var(--orange-dark); }
