/* ============================================================
   URGENCEPRO — Design System v2
   Inspiré de etudesservices.fr
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
/* Désactive les auto-liens du navigateur (tél, adresses) */
a[x-apple-data-detectors], a[href^="tel"] { text-decoration: none !important; color: inherit; }
img { display: block; max-width: 100%; }

/* ── PALETTE ── */
:root {
  --purple:       #4B3F8E;
  --purple-dark:  #2D2460;
  --purple-mid:   #3d3480;
  --orange:       #FF6B35;
  --orange-dark:  #E55520;
  --white:        #ffffff;
  --gray-50:      #f8f9fc;
  --gray-100:     #eef0f7;
  --gray-200:     #d8dbe8;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-800:     #1f2937;
  --gray-900:     #111827;
  --green:        #16a34a;
  --gold:         #f59e0b;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow:       0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.14);
  --container:    1100px;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem);   font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 700; }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── SECTION SPACING ── */
.section { padding: 72px 0; }
.section--alt { background: var(--gray-50); }
.section--dark { background: var(--purple-dark); color: var(--white); }
.section--purple { background: var(--purple); color: var(--white); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
  display: inline-block;
  color: var(--orange); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; color: var(--gray-900); }
.section-header.light h2 { color: var(--white); }
.section-header .desc {
  color: var(--gray-600); font-size: .95rem; max-width: 580px; margin: 0 auto;
}
.section-header.light .desc { color: rgba(255,255,255,.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; font-family: inherit; cursor: pointer; border: none;
  font-weight: 700; border-radius: 6px; transition: all .18s ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 28px; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(255,107,53,.5); transform: translateY(-1px); }
.btn-primary.lg {
  padding: 18px 40px; font-size: 1.1rem;
  box-shadow: 0 6px 28px rgba(255,107,53,.4);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 13px 26px; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* Phone number never breaks */
.btn .phone-num { white-space: nowrap; }

/* ── ICON ── */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }

/* ── TOPNAV ── */
#topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--gray-900);
  flex-shrink: 0;
}
.nav-logo { height: 58px; width: auto; display: block; }
.nav-brand span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  display: block; padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500; color: var(--gray-600);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-50); }
.nav-phone {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 9px 20px; border-radius: 6px;
  font-weight: 700; font-size: .9rem; white-space: nowrap;
  transition: background .15s;
}
.nav-phone-link:hover { background: var(--orange-dark); }
.nav-availability {
  font-size: .72rem; color: var(--gray-400); white-space: nowrap;
}

/* ── HERO ── */
#hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,12,60,.92) 0%, rgba(35,26,80,.82) 50%, rgba(60,50,110,.55) 100%);
}
.hero-body {
  position: relative; z-index: 2;
  padding: 80px 0 90px; max-width: 680px;
}
.hero-available {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.hero-available-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-body h1 { color: var(--white); margin-bottom: 18px; max-width: 640px; }
.hero-body h1 span { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,.82); font-size: 1rem; max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 40px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500;
}
.hero-trust-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── TRUST STRIP ── */
#trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--gray-100);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 16px; text-align: center;
  border-right: 1px solid var(--gray-100);
  border-bottom: 3px solid transparent;
  transition: border-color .18s;
}
.trust-item:hover { border-bottom-color: var(--orange); }
.trust-item-icon-wrap {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-50); display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.trust-item-label { font-size: .8rem; font-weight: 700; color: var(--gray-800); line-height: 1.3; }
.trust-item-sub { font-size: .72rem; color: var(--gray-400); }

/* ── PROBLEMS SECTION ── */
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.problem-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 14px 18px;
  font-size: .88rem; font-weight: 500; color: var(--gray-800);
  transition: border-color .15s, box-shadow .15s;
}
.problem-item:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); }
.problem-marker {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── ARGUMENTS CARDS ── */
.args-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.arg-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.arg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gray-200); }
.arg-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--gray-50); display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: 18px;
}
.arg-icon-wrap svg { width: 24px; height: 24px; }
.arg-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--gray-900); }
.arg-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ── INSURANCE SECTION ── */
.insurance-logos {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 24px;
}
.insurance-logo {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 9px 16px; background: var(--white);
  font-size: .8rem; font-weight: 700; color: var(--gray-700);
  transition: border-color .15s, box-shadow .15s;
}
.insurance-logo:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); }
.insurance-logo-check { color: var(--green); }
.insurance-note {
  text-align: center; font-size: .8rem; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.insurance-note a { color: var(--orange); font-weight: 600; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--gray-100);
}
.why-row:last-child { border-bottom: none; }
.why-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
}
.why-text h4 { margin-bottom: 5px; font-size: .95rem; color: var(--gray-900); }
.why-text p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }
.why-cta-card {
  background: var(--purple-dark); border-radius: var(--radius-lg);
  padding: 40px 36px; text-align: center; color: var(--white);
  position: sticky; top: 80px;
}
.why-cta-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-cta-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 28px; line-height: 1.6; }
.why-phone-display {
  display: block; font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 900; color: var(--orange);
  white-space: nowrap; margin-bottom: 20px; letter-spacing: .02em;
}
.why-cta-card .btn-primary { width: 100%; }
.why-guarantees {
  display: flex; flex-direction: column; gap: 8px; margin-top: 20px;
}
.why-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.65);
}
.why-guarantee svg { color: #4ade80; flex-shrink: 0; }

/* ── INTERVENTIONS / SERVICES ── */
.interventions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.intervention-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: .83rem; font-weight: 500; color: var(--gray-800);
  transition: border-color .15s, background .15s;
}
.intervention-item:hover { border-color: var(--purple); background: var(--gray-50); }
.intervention-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: #f0fdf4; display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.intervention-check svg { width: 10px; height: 10px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 20px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars svg { width: 14px; height: 14px; color: var(--gold); }
.review-text {
  font-size: .845rem; color: var(--gray-600); line-height: 1.65;
  margin-bottom: 14px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.review-name { font-size: .85rem; font-weight: 700; color: var(--gray-800); }
.review-meta { font-size: .72rem; color: var(--gray-400); margin-top: 2px; }
.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  padding: 24px 32px; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  margin-bottom: 36px; width: fit-content; margin-left: auto; margin-right: auto;
}
.reviews-score { text-align: center; }
.reviews-score-num { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--gray-900); }
.reviews-score-stars { display: flex; justify-content: center; gap: 3px; margin: 6px 0 4px; }
.reviews-score-stars svg { width: 18px; height: 18px; color: var(--gold); }
.reviews-score-label { font-size: .78rem; color: var(--gray-400); }
.google-logo { display: flex; align-items: center; gap: 8px; }
.google-logo svg { width: 80px; }
.reviews-divider { width: 1px; height: 60px; background: var(--gray-100); }

/* ── ZONES ── */
.cities-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.city-tag {
  padding: 8px 10px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: .78rem; font-weight: 500; text-align: center;
  color: var(--gray-700); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color .15s, color .15s;
}
.city-tag:hover { border-color: var(--purple); color: var(--purple); }
.city-tag.capital {
  background: var(--purple); color: var(--white); border-color: var(--purple);
  font-weight: 700;
}

/* ── FAQ ── */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-trigger {
  width: 100%; text-align: left; background: var(--white);
  padding: 18px 22px; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: .92rem; font-weight: 600; color: var(--gray-900); font-family: inherit;
  transition: background .15s;
}
.faq-trigger:hover { background: var(--gray-50); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .25s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--gray-600); transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--orange); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  background: var(--white);
}
.faq-body-inner {
  padding: 0 22px 18px; font-size: .875rem; color: var(--gray-600); line-height: 1.7;
}
.faq-item.open .faq-body { max-height: 300px; }

/* ── FINAL CTA ── */
#final-cta {
  background: var(--purple-dark); padding: 88px 0; text-align: center; color: var(--white);
}
#final-cta h2 { color: var(--white); margin-bottom: 14px; }
#final-cta p { color: rgba(255,255,255,.72); font-size: .97rem; max-width: 520px; margin: 0 auto 36px; }
.final-cta-phone {
  display: block; font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: var(--orange); white-space: nowrap;
  margin-bottom: 30px; letter-spacing: .02em;
}
.final-cta-phone:hover { color: #ffa07a; }
.final-cta-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px;
}
.final-cta-badge {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.65); font-size: .8rem;
}
.final-cta-badge svg { color: #4ade80; }

/* ── FOOTER ── */
footer { background: var(--gray-900); color: rgba(255,255,255,.55); padding: 56px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: .82rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .82rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-phone-cta a {
  display: flex; align-items: center; gap: 8px;
  color: var(--orange) !important; font-weight: 700; font-size: .95rem;
}
.footer-hours { font-size: .78rem; margin-top: 6px; color: rgba(255,255,255,.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; flex-wrap: wrap; gap: 10px;
}

/* ── STICKY PHONE (FLOATING RIGHT — DESKTOP) ── */
#sticky-float {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; align-items: flex-end;
}
.sticky-float-tab {
  background: var(--orange); color: var(--white);
  padding: 12px 16px 12px 14px; border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 20px rgba(255,107,53,.4);
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  writing-mode: initial;
}
.sticky-float-tab svg { width: 20px; height: 20px; }
.sticky-float-tab .tab-label {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; writing-mode: vertical-rl; transform: rotate(180deg);
}
.sticky-float-tab .tab-phone {
  display: none; white-space: nowrap; font-weight: 800; font-size: .85rem;
}

/* ── STICKY PHONE (BOTTOM — MOBILE) ── */
#sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--orange);
  box-shadow: 0 -4px 20px rgba(255,107,53,.45);
  overflow: hidden;
}
#sticky-mobile::before {
  content: '';
  position: absolute; top: 0; left: -150%; width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: mobileShimmer 4.5s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes mobileShimmer {
  0% { left: -150%; }
  45%, 100% { left: 200%; }
}
#sticky-mobile a {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--white); padding: 15px 20px; font-weight: 800; font-size: 1.05rem;
  white-space: nowrap; position: relative; z-index: 2;
}
.mobile-sticky-sub { font-size: .7rem; font-weight: 500; opacity: .85; }

/* Pulsing availability dot */
.mobile-avail-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: mobileAvailPulse 2s ease-in-out infinite;
}
@keyframes mobileAvailPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(74,222,128,0); transform: scale(1.15); }
}

/* ── BREADCRUMB — masqué volontairement ── */
.breadcrumb { display: none; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--gray-100); }

/* ── SCROLL REVEAL ── */
.sr-ready .sr { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.sr-ready .sr.in { opacity: 1; transform: none; }

/* ── PRICING SECTION (climatisation) ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pricing-card-header {
  display: flex; align-items: center; gap: 14px;
  background: var(--purple-dark); color: var(--white); padding: 18px 22px;
}
.pricing-card-header h3 { font-size: 1rem; font-weight: 700; }
.pricing-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pricing-card-icon svg { width: 20px; height: 20px; color: var(--white); }
.pricing-list { list-style: none; padding: 0; }
.pricing-item {
  padding: 15px 22px; border-bottom: 1px solid var(--gray-100);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item-label { font-size: .875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.pricing-item-price {
  font-size: 1.05rem; font-weight: 800;
  color: var(--svc-color, var(--purple)); margin-bottom: 3px;
}
.pricing-item-note { font-size: .76rem; color: var(--gray-400); }
.pricing-note {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px 20px;
  font-size: .83rem; color: var(--gray-600); line-height: 1.65;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-note svg { flex-shrink: 0; margin-top: 2px; color: var(--purple); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .args-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .interventions-grid { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(5, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  /* Espacement général */
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* Navigation */
  .nav-links { display: none; }
  .nav-availability { display: none; }

  /* Sticky */
  #sticky-float { display: none; }
  #sticky-mobile { display: block; }
  body { padding-bottom: 68px; }

  /* Section headers — centré sur mobile */
  .section-header { text-align: center; }
  .section-header .label { display: block; text-align: center; }
  .section-header h2 { text-align: center; }
  .section-header .desc { text-align: center; }

  /* Hero — centré sur mobile */
  #hero { align-items: flex-start; padding-top: 72px; }
  /* Sélecteur plus spécifique pour battre .container { padding: 0 16px } du 480px */
  #hero .hero-body { padding: 56px 18px 64px; text-align: center; }
  .hero-body h1 { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-available { font-size: .65rem; }

  /* Grilles */
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-inner .trust-item:nth-child(4),
  .trust-strip-inner .trust-item:nth-child(5) { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .args-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-cta-card { position: static; }
  .why-list .why-row { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
  .interventions-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Typographie */
  .hero-sub { font-size: .92rem; }
  .reviews-summary { flex-direction: column; gap: 16px; }
  .reviews-divider { width: 60px; height: 1px; }

  /* Final CTA */
  #final-cta { padding: 60px 0; }
  .final-cta-badges { gap: 14px; }

  /* Footer */
  footer { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-phone-cta { justify-content: center; }
  .footer-phone-cta a { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner .trust-item:nth-child(3) { display: none; }
  h1 { font-size: 1.6rem; }
  .btn.lg { padding: 15px 24px; font-size: 1rem; }
}
