/* ============================================================
   RDV ASSISTANCE – Styles partagés
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:           #1C3D7A;
  --primary-dark:      #0d2559;
  --primary-light:     #2952A3;
  --primary-rgb:       28, 61, 122;
  --footer-bg:         #0d1e42;

  --btn-urgence:       #E63946;
  --btn-urgence-dark:  #B5222E;
  --pulse-rgb:         230, 57, 70;

  --orange:      #FF6B00;
  --orange-dark: #D95800;
  --white:       #FFFFFF;
  --light-bg:    #F5F7FA;
  --dark:        #1A1A2E;
  --grey:        #6C757D;
  --border:      #DEE2E6;
  --font:        'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; overflow-x: hidden; }

/* ── Animations ── */
@keyframes pulse-btn {
  0%   { box-shadow: 0 0 0 0   rgba(var(--pulse-rgb),.8); transform: scale(1); }
  50%  { box-shadow: 0 0 0 14px rgba(var(--pulse-rgb),0); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0   rgba(var(--pulse-rgb),0); transform: scale(1); }
}
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Urgence Strip (fixed, hauteur mesurée par JS) ── */
.urgence-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  background: var(--btn-urgence);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
}
.urgence-strip a { color: var(--white); text-decoration: underline; }
.urgence-strip .strip-short { display: none; }

/* ── Header ── */
.site-header {
  position: fixed;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(var(--primary-rgb), .97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
  transition: top .1s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo img { height: 130px; width: auto; display: block; }
.header-nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-link {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .9rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-phone {
  background: var(--btn-urgence);
  color: var(--white);
  font-size: 1rem;
  padding: 11px 20px;
  border-radius: 50px;
  animation: pulse-btn 1.6s ease-in-out infinite;
}
.btn-phone:hover { background: var(--btn-urgence-dark); }

.btn-xl     { font-size: 1.2rem; padding: 17px 36px; border-radius: 50px; }
.btn-blink  { animation: pulse-btn 1.4s ease-in-out infinite; }

.btn-primary       { background: var(--btn-urgence); color: var(--white); }
.btn-primary:hover { background: var(--btn-urgence-dark); }

.btn-secondary       { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.8); }
.btn-secondary:hover { background: rgba(255,255,255,.1); }

.btn-outline       { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white       { background: var(--white); color: var(--primary); font-weight: 800; }
.btn-white:hover { background: #e8eef8; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  /* padding-top calculé par JS selon hauteur des barres fixes */
  padding-top: 200px;
  padding-bottom: 60px;
}
/* Overlay opaque – textes bien lisibles */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.58) 45%,
    rgba(0,0,0,.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp .8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.9);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: float-badge 2.5s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero h1 span { color: #FFA040; }
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,.92);
  max-width: 600px;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.hero-cta   { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.stat        { text-align: center; min-width: 70px; }
.stat-number { display: block; font-size: 1.9rem; font-weight: 900; color: #FFA040; }
.stat-label  { font-size: .82rem; color: rgba(255,255,255,.8); }

/* ── Trust Bar ── */
.trust-bar { background: var(--primary); overflow: hidden; padding: 11px 0; }
.trust-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 0 36px;
  border-right: 2px solid rgba(255,255,255,.3);
}

/* ── Section helpers ── */
.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header p { color: var(--grey); font-size: 1rem; }

/* ── Services Scroll (auto-scroll via JS) ── */
.services-section { padding: 72px 20px; background: var(--light-bg); }
.services-scroll-wrap {
  overflow: hidden;
  /* les cartes débordent mais sont cachées – le JS anime translateX */
  position: relative;
  /* garde une piste visible */
  padding: 8px 0 16px;
  cursor: default;
  user-select: none;
}
.services-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: 260px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(var(--primary-rgb),.16);
}
.service-card-img { width:100%; height:150px; object-fit:cover; display:block; }
.service-card-img-placeholder {
  width:100%; height:150px;
  display:flex; align-items:center; justify-content:center;
  font-size:3.2rem;
}
.service-card-body { padding: 18px; }
.service-card-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 5px;
}
.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 7px; }
.service-card p  { font-size: .87rem; color: var(--grey); line-height: 1.5; }
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.service-card-cta::after { content: '→'; }

/* ── Content Section ── */
.content-section { padding: 72px 20px; background: var(--white); }
.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.content-body h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.25;
}
.content-body p  { color: #444; margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.content-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin: 24px 0 10px; }
.check-list { list-style: none; margin-bottom: 18px; }
.check-list li {
  padding: 7px 0 7px 30px;
  position: relative;
  color: #444;
  font-size: .97rem;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.05rem;
}

/* Sidebar */
.content-sidebar { position: sticky; top: 160px; }
.sidebar-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 18px;
}
.sidebar-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.sidebar-card p  { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.sidebar-phone   { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 18px; }
.sidebar-phone-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
}
.sidebar-phone-num:hover { color: #FFA040; }
.sidebar-phone-label { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

.sidebar-guarantees { background: var(--light-bg); border-radius: 12px; padding: 18px; }
.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.guarantee-item:last-child { border-bottom: none; }
.guarantee-icon { font-size: 1.3rem; flex-shrink: 0; }
.guarantee-text strong { display: block; font-size: .88rem; color: var(--primary); }
.guarantee-text span   { font-size: .8rem; color: var(--grey); }

/* ── Why Us ── */
.why-section {
  padding: 72px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.why-grid {
  max-width: 1200px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 28px 18px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .3s, transform .3s;
}
.why-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.why-icon    { font-size: 2.5rem; margin-bottom: 12px; }
.why-card h3 { font-size: .97rem; font-weight: 800; margin-bottom: 7px; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.55; }

/* ── CTA Banner ── */
.cta-banner { padding: 56px 20px; background: var(--orange); text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonials-section { padding: 72px 20px; background: var(--light-bg); }
.testimonials-grid {
  max-width: 1100px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 18px;
  font-size: 4.5rem;
  color: var(--primary);
  opacity: .1;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars             { color: #FFBB00; font-size: 1.05rem; margin-bottom: 10px; }
.testimonial-text  { color: #444; font-size: .93rem; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: .97rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--primary); font-size: .88rem; }
.author-city { font-size: .78rem; color: var(--grey); }

/* ── Contact ── */
.contact-section { padding: 72px 20px; background: var(--white); }
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 52px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-info p { color: var(--grey); font-size: 1rem; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: var(--light-bg);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.contact-detail:hover { background: rgba(var(--primary-rgb), .08); }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .83rem; color: var(--grey); font-weight: 600; }
.contact-detail-text span   { font-size: 1rem; font-weight: 700; color: var(--primary); }

.form-card {
  background: var(--light-bg);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.form-title    { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.form-subtitle { font-size: .88rem; color: var(--grey); margin-bottom: 24px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group    { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1);
}
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

.form-urgence {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(var(--pulse-rgb), .07);
  border: 2px solid rgba(var(--pulse-rgb), .28);
  border-radius: 8px;
  margin-bottom: 18px;
}
.form-urgence input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.form-urgence label { font-weight: 700; color: var(--btn-urgence); font-size: .88rem; cursor: pointer; }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--btn-urgence);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: pulse-btn 1.6s ease-in-out infinite;
  letter-spacing: .3px;
  transition: background .2s;
}
.btn-submit:hover { background: var(--btn-urgence-dark); animation: none; transform: translateY(-2px); }
.form-note { text-align: center; font-size: .78rem; color: var(--grey); margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 36px 16px; }
.form-success-icon { font-size: 3.2rem; margin-bottom: 14px; }
.form-success h3 { font-size: 1.35rem; font-weight: 900; color: var(--primary); margin-bottom: 9px; }
.form-success p  { color: var(--grey); }

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.75);
  padding: 56px 20px 28px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { height: 130px; margin-bottom: 18px; }
.footer-desc      { font-size: .86rem; line-height: 1.65; margin-bottom: 18px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.footer-phone:hover { color: #FFA040; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ── Service Nav ── */
.service-nav {
  background: var(--white);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  position: fixed;
  left: 0; right: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.service-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-pill {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--border);
  color: var(--grey);
  transition: all .2s;
  white-space: nowrap;
}
.service-pill:hover  { border-color: var(--primary); color: var(--primary); }
.service-pill.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ── Bouton appel flottant permanent ── */
@keyframes blink-call {
  0%,100% { background: var(--btn-urgence);      box-shadow: 0 6px 28px rgba(var(--pulse-rgb),.55); transform: scale(1); }
  50%     { background: var(--btn-urgence-dark);  box-shadow: 0 6px 40px rgba(var(--pulse-rgb),.85); transform: scale(1.06); }
}

.floating-cta {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-phone {
  background: var(--btn-urgence);
  color: var(--white);
  padding: 15px 24px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 28px rgba(var(--pulse-rgb),.55);
  animation: blink-call 1.3s ease-in-out infinite;
  letter-spacing: .2px;
}
.floating-devis {
  background: var(--orange);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .84rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255,107,0,.4);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── Tablette (≤ 960px) ── */
@media (max-width: 960px) {
  .content-grid  { grid-template-columns: 1fr; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-grid      { grid-template-columns: repeat(3, 1fr); }
}

/* ── Hamburger menu ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
}
.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Mobile large (≤ 768px) ── */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-close   { display: block; }
  .header-nav  {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 37, 89, 0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .header-nav.open { display: flex; }
  .header-nav .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    text-align: center;
    max-width: 280px;
  }
  .header-nav .nav-link:hover { background: rgba(255,255,255,.12); }
  .logo img    { height: 90px; }
  .btn-phone   { font-size: .88rem; padding: 10px 16px; }

  /* Hero : ancrage haut-centre pour éviter que le sujet soit coupé sur portrait */
  .hero        { padding-bottom: 50px; background-position: center 20%; min-height: 90vh; }
  .hero-stats  { gap: 16px; }
  .stat-number { font-size: 1.6rem; }

  /* Cards services accueil : image plus haute sur mobile (colonne unique) */
  .home-service-card-img { height: 260px; }

  .hero-cta    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-xl      { font-size: 1.05rem; padding: 14px 26px; width: 100%; justify-content: center; }

  .why-grid    { grid-template-columns: 1fr 1fr; }

  .form-card   { padding: 26px 20px; }
  .form-row    { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner-btns { flex-direction: column; align-items: center; }

  .service-pill { padding: 6px 14px; font-size: .82rem; }

  /* Le strip est sur 2 lignes possibles → géré par JS */
  .urgence-strip { font-size: .82rem; }
  .urgence-strip .strip-short  { display: inline; }
  .urgence-strip .strip-long   { display: none; }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .why-grid    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }

  .floating-cta   { bottom: 14px; right: 12px; }
  .floating-phone { font-size: .92rem; padding: 13px 18px; }
  .floating-devis { display: none; } /* trop encombrant sur petit écran */

  .testimonials-grid { grid-template-columns: 1fr; }

  .service-nav-inner { gap: 5px; }
  .service-pill { padding: 5px 11px; font-size: .78rem; }

  .hero-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat        { text-align: center; }

  /* Ancrage encore plus haut sur très petit écran */
  .hero { background-position: center 15%; min-height: 85vh; }

  /* Cards services : hauteur image ajustée pour petit mobile */
  .home-service-card-img { height: 220px; }

  .urgence-strip { font-size: .75rem; }
}
