/* =========================================
   BR TRANSPORT — style.css
   ========================================= */

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

:root {
  --blue:        #0d1f4e;
  --blue-mid:    #1a3270;
  --blue-light:  #2a4a9e;
  --orange:      #f97316;
  --orange-h:    #ea6c0a;
  --orange-light:#fff7ed;
  --green:       #25d366;
  --green-h:     #1ebe5d;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --r:           14px;
  --r-sm:        8px;
  --sh:          0 2px 16px rgba(13,31,78,.08);
  --sh-lg:       0 8px 40px rgba(13,31,78,.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-xl { padding: 16px 28px; font-size: 1rem; border-radius: 10px; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-h);
  border-color: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-wa, .btn-wa-sm {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-wa:hover, .btn-wa-sm:hover {
  background: var(--green-h);
  border-color: var(--green-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-call {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  padding: 11px 18px;
  font-size: .85rem;
}
.btn-call:hover { background: var(--blue-mid); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover { background: var(--white); color: var(--blue); }

.btn-blue-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-blue-outline:hover { background: var(--blue); color: var(--white); }

/* ----- HEADER ----- */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
#header.scrolled {
  background: var(--blue);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text { font-weight: 900; font-size: 1.2rem; letter-spacing: -.3px; line-height: 1; }
.logo-br { color: var(--orange); }
.logo-tr { color: var(--white); }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--orange); }

.header-actions { display: flex; gap: 10px; align-items: center; }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue);
  padding: 8px 0 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a i { width: 18px; color: var(--orange); }
.mobile-ctas {
  display: flex;
  gap: 10px;
  padding: 16px 24px 0;
  flex-wrap: wrap;
}
.mobile-nav.open { display: flex; }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,31,78,.95) 0%,
    rgba(13,31,78,.80) 55%,
    rgba(13,31,78,.45) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 820px;
}

.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  color: #fdba74;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37,211,102,.25);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-desc strong { color: var(--white); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.proof-item i { color: var(--green); }
.proof-sep { width: 1px; height: 20px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ----- BANDE FLOTTE ----- */
.fleet-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-100);
  padding: 14px 0;
}
.fleet-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.fleet-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-400); flex-shrink: 0;
}
.fleet-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 8px; border: 1.5px solid var(--gray-200);
  transition: border-color .2s, background .2s;
}
.fleet-item i      { font-size: 1.3rem; color: var(--blue); }
.fleet-item span   { font-size: .78rem; font-weight: 700; color: var(--blue); line-height: 1.3; }
.fleet-item small  { display: block; font-size: .68rem; color: var(--gray-400); font-weight: 400; }
.fleet-item.active { border-color: var(--orange); background: var(--orange-light); }
.fleet-item.active i { color: var(--orange); }
.fleet-sep         { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }
.fleet-badge {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  background: var(--blue); color: var(--white);
  font-size: .73rem; font-weight: 700;
  padding: 7px 14px; border-radius: 100px; white-space: nowrap;
}
.fleet-badge i { color: var(--orange); font-size: .75rem; }

/* ----- BANDE URGENCE ----- */
.urgence-bar {
  background: var(--orange);
  padding: 18px 0;
}
.urgence-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.urgence-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.urgence-left strong { font-size: 1rem; }
.urgence-left span { font-size: .9rem; opacity: .9; }
.urgence-icon { font-size: 1.5rem; }
.urgence-right { display: flex; gap: 10px; flex-wrap: wrap; }

/* ----- SECTIONS ----- */
.section { padding: 100px 0; }
.bg-blue { background: var(--blue); }
.bg-light { background: var(--off-white); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.stag {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.stag.light {
  background: rgba(249,115,22,.2);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.2;
}
.bg-blue .section-head h2 { color: var(--white); }
.section-head p { font-size: 1.05rem; color: var(--gray-600); max-width: 540px; margin: 0 auto; }
.bg-blue .section-head p { color: rgba(255,255,255,.65); }

/* ----- SERVICES GRID ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.srv-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.srv-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.srv-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff7ed 0%, #ffffff 60%);
  box-shadow: 0 4px 32px rgba(249,115,22,.12);
}
.srv-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(249,115,22,.2);
}

.srv-badge-top {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.srv-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.srv-icon-wrap.urgent   { background: rgba(249,115,22,.12); color: var(--orange); }
.srv-icon-wrap.express  { background: rgba(13,31,78,.08);   color: var(--blue); }
.srv-icon-wrap.regulier { background: rgba(37,211,102,.1);  color: #16a34a; }

.srv-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.srv-tagline { font-size: .82rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 14px; }
.srv-desc { font-size: .9rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.srv-desc strong { color: var(--gray-800); }

.srv-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.srv-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--gray-600); font-weight: 500;
}
.srv-features i { color: var(--orange); font-size: .85rem; flex-shrink: 0; }

.btn-srv { width: 100%; justify-content: center; }

/* ----- ACCUSÉ DE RÉCEPTION ----- */
.adr-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.adr-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.adr-card-header {
  background: rgba(249,115,22,.9);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.adr-card-header i { font-size: 1.3rem; }

.adr-card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.adr-row { display: flex; justify-content: space-between; align-items: center; }
.adr-label { font-size: .83rem; color: rgba(255,255,255,.55); font-weight: 500; }
.adr-val { font-size: .87rem; color: rgba(255,255,255,.85); font-weight: 600; }
.adr-val.confirmed { color: #4ade80; display: flex; align-items: center; gap: 6px; }

.adr-card-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 8px;
}

.adr-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 12px;
}
.adr-text > p { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.adr-text strong { color: var(--white); }

.adr-benefits { display: flex; flex-direction: column; gap: 20px; }
.adr-benefit { display: flex; gap: 16px; align-items: flex-start; }
.ab-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(249,115,22,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
}
.adr-benefit strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.adr-benefit p { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ----- GARANTIES ----- */
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.garantie-item {
  padding: 32px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  position: relative;
  transition: box-shadow .25s, transform .25s;
  background: var(--white);
}
.garantie-item:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.gi-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
}
.gi-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(249,115,22,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.garantie-item h4 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.garantie-item p { font-size: .88rem; color: var(--gray-600); }

/* ----- ZONE ----- */
.zone-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.zone-img-side img {
  border-radius: var(--r);
  height: 480px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--sh-lg);
}

.zone-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin: 14px 0 16px;
}
.zone-content > p { font-size: .95rem; color: var(--gray-600); margin-bottom: 28px; }
.zone-content strong { color: var(--gray-800); }

.zone-flags {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.zone-flag {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.zone-flag:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(249,115,22,.1); }
.flag-emoji { font-size: 1.6rem; flex-shrink: 0; }
.zone-flag strong { display: block; font-size: .9rem; color: var(--blue); font-weight: 700; }
.zone-flag span { font-size: .78rem; color: var(--gray-400); }

/* ----- TEMOIGNAGES ----- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 32px;
  transition: box-shadow .25s;
}
.testi-card:hover { box-shadow: var(--sh-lg); }
.testi-card.featured-testi {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 70%);
}

.testi-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 16px; font-size: .9rem; }

.testi-card > p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  color: var(--white); flex-shrink: 0;
}
.ta-avatar.orange { background: var(--orange); }
.ta-avatar.blue   { background: var(--blue); }

.testi-author strong { display: block; font-size: .9rem; color: var(--blue); }
.testi-author span { font-size: .78rem; color: var(--gray-400); }

/* ----- CONTACT ----- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: start;
}

.devis-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 44px;
  box-shadow: var(--sh);
}

.form-section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--blue);
  margin-bottom: 16px; margin-top: 8px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--gray-100);
}
.form-section-label i { color: var(--orange); }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row-2 .fg { margin-bottom: 0; }

label { font-size: .82rem; font-weight: 600; color: var(--gray-600); }

input, select, textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,31,78,.07);
}
textarea { resize: vertical; }

/* Service selector radio */
.service-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.srv-opt { cursor: pointer; }
.srv-opt input[type="radio"] { display: none; }
.srv-opt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  text-align: center;
  transition: all .2s;
}
.srv-opt-inner i { font-size: 1.3rem; color: var(--gray-400); margin-bottom: 2px; }
.srv-opt-inner strong { font-size: .85rem; color: var(--gray-800); }
.srv-opt-inner small { font-size: .72rem; color: var(--gray-400); }

.srv-opt input:checked + .srv-opt-inner {
  border-color: var(--orange);
  background: var(--orange-light);
}
.srv-opt input:checked + .srv-opt-inner i { color: var(--orange); }
.srv-opt input:checked + .srv-opt-inner strong { color: var(--orange); }

.btn-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 12px;
  font-size: .78rem; color: var(--gray-400);
}
.form-note i { color: var(--gray-400); }

/* Contact Side */
.contact-side { padding-top: 4px; }
.contact-side h3 { font-size: 1.2rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.contact-side > p { font-size: .88rem; color: var(--gray-400); margin-bottom: 20px; }

.direct-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all .2s;
}
.direct-card:hover { box-shadow: var(--sh); transform: translateX(4px); }
.direct-card.call:hover   { border-color: var(--blue); }
.direct-card.whatsapp:hover { border-color: var(--green); }

.dc-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.call .dc-icon     { background: rgba(13,31,78,.07);   color: var(--blue); }
.whatsapp .dc-icon { background: rgba(37,211,102,.1);  color: var(--green); }

.dc-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--gray-800); }
.dc-text span { font-size: .8rem; color: var(--gray-400); }
.dc-arrow { margin-left: auto; color: var(--gray-200); transition: color .2s; }
.direct-card:hover .dc-arrow { color: var(--gray-400); }

.contact-meta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.cm-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--gray-400);
}
.cm-item i { color: var(--orange); width: 16px; flex-shrink: 0; }

.urgence-mini {
  margin-top: 24px;
  background: rgba(249,115,22,.07);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.urgence-mini > i { font-size: 1.4rem; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.urgence-mini strong { display: block; color: var(--blue); font-size: .9rem; margin-bottom: 4px; }
.urgence-mini p { font-size: .82rem; color: var(--gray-600); }

/* ----- FOOTER ----- */
.footer { background: var(--gray-800); color: var(--white); padding: 72px 0 0; }

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

.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand > p { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 24px; max-width: 280px; line-height: 1.7; }
.footer-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.footer-col h4 {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col li a:hover { color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; color: rgba(255,255,255,.55);
}
.footer-contact-list i { color: var(--orange); width: 14px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ----- WA FLOTTANT ----- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: rgba(37,211,102,.3);
  animation: wa-ring 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.6);opacity:0} }

.wa-bubble {
  position: absolute;
  right: 74px;
  background: var(--gray-800);
  color: var(--white);
  font-size: .78rem; font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-bubble { opacity: 1; }

/* ----- BÉNÉFICES ----- */
.benefices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ben-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: background .25s, transform .25s;
}
.ben-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}

.ben-card.highlight-ben {
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.3);
  grid-column: span 1;
}

.ben-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 18px;
}
.orange-icon { background: rgba(249,115,22,.25) !important; }

.ben-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ben-card p  { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.ben-card strong { color: rgba(255,255,255,.9); }

/* ----- COMMENT ÇA MARCHE ----- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 56px;
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.step-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }

.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}

.step-icon {
  width: 64px; height: 64px;
  background: rgba(13,31,78,.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--blue);
  margin: 0 auto 18px;
}

.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.step-card p  { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }
.step-card strong { color: var(--gray-800); }

.step-arrow {
  font-size: 1.8rem;
  color: var(--gray-200);
  padding: 0 20px;
  flex-shrink: 0;
}

.steps-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ----- TESTI CTA BAR ----- */
.testi-cta-bar {
  margin-top: 48px;
  background: var(--blue);
  border-radius: var(--r);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tcb-text strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.tcb-text span   { font-size: .88rem; color: rgba(255,255,255,.6); }
.tcb-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----- REVEAL ANIMATION ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----- RESPONSIVE TABLETTE (≤1024px) ----- */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .garanties-grid  { grid-template-columns: repeat(2, 1fr); }
  .benefices-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid      { grid-template-columns: 1fr; gap: 36px; }
  .step-arrow      { display: none; }
  .zone-wrap       { grid-template-columns: 1fr; gap: 40px; }
  .zone-img-side   { display: none; }
  .adr-flex        { grid-template-columns: 1fr; gap: 40px; }
  .testi-cta-bar   { flex-direction: column; text-align: center; }
  .testi-grid      { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}

/* ----- RESPONSIVE MOBILE (≤768px) ----- */
@media (max-width: 768px) {
  /* Header */
  .nav             { display: none; }
  .header-actions  { display: none; }
  .burger          { display: block; }
  .header-inner    { height: 64px; }

  /* Sections */
  .section         { padding: 52px 0; }
  .section-head    { margin-bottom: 32px; }
  .section-head h2 { font-size: 1.65rem; }
  .section-head p  { font-size: .9rem; }

  /* Hero */
  .hero            { min-height: 100svh; }
  .hero-body       { padding-top: 88px; padding-bottom: 40px; }
  .hero h1         { font-size: 1.8rem; line-height: 1.15; margin-bottom: 14px; }
  .hero-desc       { font-size: .9rem; margin-bottom: 22px; }
  .hero-btns       { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-btns .btn  { width: 100%; justify-content: center; padding: 15px 20px; font-size: .93rem; }
  /* Proof items : grille 2×2 au lieu de colonne */
  .hero-proof      { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .proof-sep       { display: none; }
  .proof-item      { font-size: .8rem; background: rgba(255,255,255,.08); border-radius: 8px; padding: 8px 10px; }
  .urgent-badge    { font-size: .7rem; padding: 5px 12px; margin-bottom: 14px; }

  /* Flotte bar : 3 colonnes égales, icône + texte centré */
  .fleet-bar       { padding: 14px 0; }
  .fleet-inner     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .fleet-label     { display: none; }
  .fleet-sep       { display: none; }
  .fleet-badge     { display: none; }
  .fleet-item      {
    flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; padding: 10px 6px; text-align: center; border-radius: 10px;
  }
  .fleet-item i    { font-size: 1.4rem; }
  .fleet-item span { font-size: .72rem; line-height: 1.3; }
  .fleet-item small { font-size: .63rem; }

  /* Urgence bar */
  .urgence-bar     { padding: 16px 0; }
  .urgence-inner   { flex-direction: column; gap: 12px; text-align: center; }
  .urgence-left    { flex-direction: column; gap: 4px; align-items: center; }
  .urgence-left strong { font-size: .9rem; }
  .urgence-left span   { font-size: .8rem; opacity: .9; }
  .urgence-icon    { font-size: 1.2rem; }
  .urgence-right   { display: flex; gap: 8px; width: 100%; }
  .urgence-right .btn { flex: 1; justify-content: center; font-size: .82rem; padding: 10px 12px; }

  /* Services */
  .services-grid   { max-width: 100%; gap: 14px; }
  .srv-card        { padding: 22px 16px; }
  .srv-badge-top   { font-size: .65rem; }
  .srv-icon-wrap   { width: 46px; height: 46px; font-size: 1.2rem; margin-bottom: 12px; }
  .srv-card h3     { font-size: 1.05rem; }
  .srv-tagline     { font-size: .75rem; }
  .srv-desc        { font-size: .84rem; }
  .srv-features li { font-size: .82rem; }

  /* Bénéfices : 2 colonnes sur mobile */
  .benefices-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ben-card        { padding: 18px 14px; }
  .ben-card.highlight-ben { grid-column: span 2; }
  .ben-icon        { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 12px; }
  .ben-card h4     { font-size: .88rem; }
  .ben-card p      { font-size: .8rem; }

  /* Steps */
  .steps-grid      { gap: 20px; }
  .step-card       { padding: 30px 16px; }
  .step-icon       { width: 50px; height: 50px; font-size: 1.2rem; }
  .step-card h4    { font-size: .92rem; }
  .step-card p     { font-size: .84rem; }
  .steps-cta       { flex-direction: column; gap: 10px; }
  .steps-cta .btn  { width: 100%; justify-content: center; }

  /* ADR */
  .adr-card        { margin-bottom: 8px; }
  .adr-card-header { padding: 12px 16px; font-size: .88rem; }
  .adr-card-body   { padding: 16px; gap: 10px; }
  .adr-row         { flex-direction: column; gap: 2px; align-items: flex-start; }
  .adr-label       { font-size: .75rem; }
  .adr-val         { font-size: .82rem; }
  .adr-text h2     { font-size: 1.65rem; }
  .adr-text > p    { font-size: .88rem; }
  .adr-benefit     { gap: 10px; }
  .ab-icon         { width: 36px; height: 36px; font-size: .9rem; flex-shrink: 0; }
  .adr-benefit strong { font-size: .86rem; }
  .adr-benefit p   { font-size: .79rem; }

  /* Zone */
  .zone-content h2 { font-size: 1.6rem; }
  .zone-flags      { gap: 8px; }
  .zone-flag       { padding: 10px 12px; gap: 10px; }
  .flag-emoji      { font-size: 1.3rem; }
  .zone-flag strong { font-size: .84rem; }
  .zone-flag span  { font-size: .73rem; }

  /* Garanties */
  .garanties-grid  { grid-template-columns: 1fr; gap: 12px; }
  .garantie-item   { padding: 22px 18px; }
  .gi-num          { font-size: 2rem; }
  .gi-icon         { width: 40px; height: 40px; font-size: 1rem; }
  .garantie-item h4 { font-size: .92rem; }
  .garantie-item p  { font-size: .84rem; }

  /* Témoignages */
  .testi-card      { padding: 22px 16px; }
  .testi-cta-bar   { padding: 22px 16px; gap: 14px; flex-direction: column; text-align: center; }
  .tcb-text strong { font-size: .95rem; }
  .tcb-btns        { display: flex; gap: 8px; width: 100%; }
  .tcb-btns .btn   { flex: 1; justify-content: center; font-size: .82rem; padding: 12px 10px; }

  /* Formulaire */
  .contact-wrap    { gap: 28px; }
  .devis-form      { padding: 22px 14px; }
  .form-section-label { font-size: .73rem; }
  .service-selector { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .srv-opt-inner   { padding: 12px 6px; }
  .srv-opt-inner i { font-size: 1.1rem; }
  .srv-opt-inner strong { font-size: .78rem; }
  .srv-opt-inner small  { font-size: .65rem; }
  .form-row-2      { grid-template-columns: 1fr; }
  input, select, textarea { padding: 12px 14px; font-size: .9rem; }
  .btn-submit      { padding: 16px; font-size: .9rem; }
  .contact-side h3 { font-size: 1rem; }
  .direct-card     { padding: 14px 16px; }
  .dc-icon         { width: 40px; height: 40px; font-size: 1.1rem; }
  .dc-text strong  { font-size: .87rem; }
  .dc-text span    { font-size: .74rem; }
  .urgence-mini    { padding: 14px; gap: 10px; }
  .urgence-mini strong { font-size: .84rem; }
  .urgence-mini p  { font-size: .78rem; }

  /* Footer */
  .footer          { padding: 44px 0 0; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
  .footer-brand    { grid-column: 1 / -1; }
  .footer-brand > p { font-size: .82rem; }
  .footer-btns     { gap: 8px; }
  .footer-btns .btn { flex: 1; justify-content: center; font-size: .82rem; padding: 11px 12px; }
  .footer-col h4   { font-size: .75rem; margin-bottom: 12px; }
  .footer-col li a, .footer-contact-list li { font-size: .82rem; }

  /* WA Float */
  .wa-float        { width: 54px; height: 54px; font-size: 1.8rem; bottom: 18px; right: 18px; }
  .wa-bubble       { display: none; }
}

/* ----- RESPONSIVE PETIT MOBILE (≤430px) ----- */
@media (max-width: 430px) {
  .container       { padding: 0 14px; }
  .section         { padding: 44px 0; }

  .hero-body       { padding-top: 78px; }
  .hero h1         { font-size: 1.55rem; }
  .hero-desc       { font-size: .85rem; }

  .logo-text       { font-size: .92rem; }
  .logo-icon       { width: 30px; height: 30px; font-size: .85rem; border-radius: 6px; }
  .header-inner    { gap: 10px; }

  .section-head h2 { font-size: 1.4rem; }
  .section-head p  { font-size: .86rem; }

  /* Flotte : icônes plus petites */
  .fleet-item i    { font-size: 1.2rem; }
  .fleet-item span { font-size: .68rem; }
  .fleet-item small { font-size: .59rem; }

  /* Bénéfices : 1 colonne sur très petit écran */
  .benefices-grid  { grid-template-columns: 1fr; }
  .ben-card.highlight-ben { grid-column: span 1; }

  .srv-card        { padding: 18px 12px; }
  .step-card       { padding: 26px 12px; }
  .garantie-item   { padding: 18px 12px; }

  .urgence-bar     { padding: 12px 0; }

  .service-selector { grid-template-columns: 1fr; }
  .devis-form      { padding: 16px 12px; }
  input, select, textarea { font-size: .85rem; padding: 11px 12px; }

  .wa-float        { width: 50px; height: 50px; font-size: 1.6rem; bottom: 14px; right: 14px; }
}
