/* ===================================================
   CLERMONT NUISIBLES — Feuille de styles principale
   =================================================== */

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

/* ========================
   1. VARIABLES & RESET
   ======================== */
:root {
  --primary:       #1B4332;
  --primary-dark:  #0d2b21;
  --primary-light: #2D6A4F;
  --accent:        #DC2626;
  --cta:           #E8471A;
  --cta-hover:     #c93a12;
  --green-tint:    #F0F7F4;
  --white:         #FFFFFF;
  --gray-50:       #F8FAFC;
  --gray-100:      #F1F5F9;
  --gray-200:      #E2E8F0;
  --gray-400:      #94A3B8;
  --gray-600:      #64748B;
  --gray-800:      #1E293B;
  --text:          #1A1A1A;
  --star:          #F59E0B;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --shadow-green: 0 4px 20px rgba(27,67,50,0.25);

  --trans:      all 0.3s ease;
  --trans-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ========================
   2. ICÔNES SVG
   ======================== */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm  { width: 1rem;    height: 1rem;    }
.icon-md  { width: 1.25rem; height: 1.25rem; }
.icon-lg  { width: 1.5rem;  height: 1.5rem;  }
.icon-xl  { width: 2rem;    height: 2rem;    }
.icon-2xl { width: 2.5rem;  height: 2.5rem;  }
.icon-3xl { width: 3rem;    height: 3rem;    }

/* Icônes colorées fixes */
.icon-white   { color: var(--white); }
.icon-primary { color: var(--primary); }
.icon-muted   { color: var(--gray-400); }
.icon-star    { color: var(--star); }

/* ========================
   3. TYPOGRAPHIE
   ======================== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--gray-600); line-height: 1.8; }

.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-primary { color: var(--primary); }

/* ========================
   3. LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section    { padding: var(--space-lg) 0; }
.section-lg { padding: var(--space-xl) 0; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title .badge {
  display: inline-block;
  background: var(--green-tint);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-title h2    { margin-bottom: 1rem; }
.section-title > p   { max-width: 580px; margin: 0 auto; font-size: 1.07rem; }

.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.bg-light     { background: var(--gray-50); }
.bg-green     { background: var(--primary); }
.bg-green-tint { background: var(--green-tint); }

/* ========================
   4. BOUTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  border: none;
  text-decoration: none;
  font-family: inherit;
}
.btn:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; }

.btn-primary      { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-cta          { background: var(--cta); color: var(--white); }
.btn-cta:hover    { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(232,71,26,0.35); }

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

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

.btn-ghost        { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover  { background: rgba(255,255,255,0.22); }

.btn-lg  { padding: 1.125rem 2.25rem; font-size: 1.1rem; }
.btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.875rem; }

/* Card icon wrapper (section "Pourquoi nous") */
.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  transition: var(--trans);
}
.card:hover .card-icon-wrap { background: var(--primary); color: var(--white); }
.card-icon-wrap svg { width: 28px; height: 28px; }

/* Float call icon */
.float-call-icon { display: flex; align-items: center; justify-content: center; }
.float-call-icon svg { width: 22px; height: 22px; animation: ring 3s infinite; }

/* Footer & contact inline icons */
.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ico svg { width: 16px; height: 16px; }

/* Info icon in contact card */
.info-icon { color: rgba(255,255,255,0.85); }
.info-icon svg { width: 20px; height: 20px; }

/* Trust bar & hero trust icons */
.trust-bar-item svg,
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Nav phone icon */
.nav-phone svg { width: 15px; height: 15px; }

/* Footer phone icon */
.footer-phone svg { width: 18px; height: 18px; }

/* ========================
   5. HEADER / NAV
   ======================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
  transition: var(--trans);
}
.header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img {
  width: 42px;
  height: 42px;
  display: block;
}
.logo-text         { font-size: 1.1rem; color: var(--text); line-height: 1.1; }
.logo-text strong  { display: block; font-size: 1.3rem; color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  color: var(--gray-800);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
  font-size: 0.93rem;
}
.nav-link:hover,
.nav-link.active { background: var(--green-tint); color: var(--primary); }

.nav-phone {
  padding: 0.7rem 1.4rem;
  background: var(--cta);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--trans);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,71,26,0.3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: var(--trans);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   6. HERO
   ======================== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { padding-right: 1.5rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero h1       { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 span  { color: #4ADE80; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Hero visual card */
.hero-visual {}
.hero-card {
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
}
.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.service-item:last-of-type { border-bottom: none; }
.service-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.service-item-icon svg { width: 20px; height: 20px; }
.service-item-text { flex: 1; }
.service-item-name  { font-weight: 600; font-size: 0.9rem; }
.service-item-price { font-size: 0.78rem; opacity: 0.68; }
.service-item-dès   { color: #4ADE80; font-weight: 700; font-size: 0.88rem; white-space: nowrap; }

.hero-urgency {
  margin-top: 1rem;
  background: rgba(232,71,26,0.22);
  border: 1px solid rgba(232,71,26,0.45);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

/* ========================
   7. TRUST BAR
   ======================== */
.trust-bar { background: var(--primary); color: var(--white); padding: 1.15rem 0; }
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========================
   8. CARTES GÉNÉRIQUES
   ======================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }

/* ========================
   9. CARTES SERVICES
   ======================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card-icon {
  width: 62px;
  height: 62px;
  background: var(--green-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--trans);
  color: var(--primary);
}
.service-card-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-card-icon { background: var(--primary); color: var(--white); transform: scale(1.05); }
.service-card h3 { margin-bottom: 0.65rem; font-size: 1.15rem; }
.service-card p  { font-size: 0.93rem; line-height: 1.7; margin-bottom: 1rem; }
.price-from { font-size: 0.88rem; color: var(--primary); font-weight: 600; }

/* Sections services détaillées */
.service-detail {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-img {
  background: var(--green-tint);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-detail-emoji {
  position: relative;
  z-index: 1;
  color: var(--primary);
  opacity: 0.55;
}
.service-detail-emoji svg { width: 96px; height: 96px; }
.service-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-tint) 0%, rgba(27,67,50,0.06) 100%);
}
.service-detail-content h3 { margin-bottom: 1rem; }
.service-detail-content p  { margin-bottom: 1rem; }
.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.service-cta-actions .btn { flex: 1; min-width: 145px; justify-content: center; }
.service-detail-signs { margin: 1.25rem 0; }
.service-detail-signs h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); margin-bottom: 0.75rem; }
.service-detail-signs ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-detail-signs ul li {
  background: var(--green-tint);
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  list-style: none;
}
.service-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ========================
   10. TARIFS
   ======================== */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  transition: var(--trans);
  position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card.featured::before {
  content: 'Le plus demandé';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.price-card-icon  { font-size: 2.4rem; margin-bottom: 0.75rem; }
.price-card h3    { margin-bottom: 0.5rem; }
.price-card-desc  { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1rem; }

.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 0.75rem 0;
}
.price-suffix { font-size: 1rem; color: var(--gray-600); font-weight: 400; }

.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.price-card ul li:last-child  { border-bottom: none; }
.price-card ul li::before     { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--trans-fast);
  color: var(--text);
  font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .icon { font-size: 1.2rem; transition: var(--trans-fast); flex-shrink: 0; }
.faq-question[aria-expanded="true"] { color: var(--primary); background: var(--green-tint); }
.faq-question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 600px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-size: 0.95rem; }

/* ========================
   11. AVIS / REVIEWS
   ======================== */
.rating-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.rating-bar-label { width: 40px; font-size: 0.85rem; color: var(--gray-600); }
.rating-bar-track { flex: 1; height: 10px; background: var(--gray-200); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar-fill  { height: 100%; background: var(--star); border-radius: var(--radius-full); }
.rating-bar-count { width: 30px; font-size: 0.85rem; color: var(--gray-400); text-align: right; }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.review-stars { color: var(--star); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text  { font-style: italic; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.75; font-size: 0.95rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.93rem; }
.review-date { font-size: 0.78rem; color: var(--gray-400); }

.review-score-box {
  text-align: center;
  padding: 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.review-score-box .score { font-size: 4.5rem; font-weight: 800; line-height: 1; }
.review-score-box .stars { font-size: 1.8rem; letter-spacing: 4px; margin: 0.5rem 0; color: var(--star); }

/* ========================
   12. STATS
   ======================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item    { padding: 1.25rem; }
.stat-number  { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.stat-label   { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-top: 0.4rem; }

/* ========================
   13. FORMULAIRE CONTACT
   ======================== */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  align-items: start;
}
.form-group   { margin-bottom: 1.2rem; }
.form-label   { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.45rem; }
.form-label .req { color: var(--accent); margin-left: 0.15rem; }
.form-control {
  width: 100%;
  padding: 0.825rem 1.2rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--trans-fast);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,67,50,0.09); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2364748B' d='M10 12L4 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-rgpd {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0;
}
.form-rgpd input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--primary);
}
.form-rgpd label { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; cursor: pointer; }
.form-rgpd label a { color: var(--primary); text-decoration: underline; }

.form-success {
  display: none;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.75rem; font-size: 1.3rem; }
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.info-value { font-weight: 600; }
.info-value a { color: var(--white); }

/* ========================
   14. ZONES
   ======================== */
.zones-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.zone-tag {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--trans-fast);
}
.zone-tag:hover { background: var(--primary); color: var(--white); }
.zone-tag.main  { background: var(--primary); color: var(--white); font-size: 0.95rem; padding: 0.6rem 1.4rem; }

/* ========================
   15. SECTION CTA
   ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 1.07rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================
   16. FOOTER
   ======================== */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-text        { color: var(--white); }
.footer-brand .logo-text strong { color: #4ADE80; }
.footer-tagline { margin: 1rem 0; font-size: 0.88rem; line-height: 1.75; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cta);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans-fast);
  margin-top: 0.5rem;
}
.footer-phone:hover { background: var(--cta-hover); }

.footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.88rem; transition: var(--trans-fast); }
.footer-links a:hover { color: var(--white); padding-left: 0.2rem; }

.footer-contact-item { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.88rem; margin-bottom: 0.7rem; }
.footer-contact-item .ico { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.83rem; transition: var(--trans-fast); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.83rem; color: rgba(255,255,255,0.38); }
.cfg-siret { white-space: nowrap; }

/* ========================
   INFO DL (a-propos)
   ======================== */
.info-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .75rem 1.5rem;
  align-items: baseline;
  font-size: .95rem;
}
.info-dl dd { min-width: 0; overflow-wrap: break-word; word-break: break-word; }

/* ========================
   17. BANDEAU COOKIES
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-800);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
  border-top: 3px solid var(--primary);
  display: none;
}
.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.82); flex: 1; }
.cookie-text a { color: #4ADE80; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ========================
   18. BOUTON FLOTTANT
   ======================== */
.float-call { position: fixed; bottom: 2rem; right: 2rem; z-index: 9990; display: none; }
.float-call-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cta);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 4px 25px rgba(232,71,26,0.45);
  animation: pulse-cta 2.5s infinite;
}
.float-call-btn:hover { background: var(--cta-hover); transform: scale(1.05); box-shadow: 0 6px 35px rgba(232,71,26,0.55); }
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 25px rgba(232,71,26,0.45); }
  50%       { box-shadow: 0 4px 38px rgba(232,71,26,0.65); }
}
.float-call-icon { animation: ring 3s infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  8%        { transform: rotate(-14deg); }
  16%       { transform: rotate(14deg); }
  24%       { transform: rotate(-8deg); }
  32%       { transform: rotate(8deg); }
  40%       { transform: rotate(0deg); }
}

/* ========================
   19. PAGE HERO
   ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.65rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.07rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 0.88rem; color: rgba(255,255,255,0.58);
}
.breadcrumb a    { color: rgba(255,255,255,0.68); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ========================
   20. PAGES LÉGALES
   ======================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
}
.legal-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.4rem;
  color: var(--primary);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-tint);
}
.legal-content h3 { margin: 1.75rem 0 0.5rem; font-size: 1.1rem; }
.legal-content p  { margin-bottom: 1rem; color: var(--gray-600); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--gray-600); margin-bottom: 0.35rem; padding-left: 0.25rem; }
.legal-content a  { color: var(--primary); text-decoration: underline; }

/* ========================
   21. RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 2rem 0 2.5rem; }
  .hero-content { padding-right: 0; }
  .hero-visual { display: none; }

  .nav { padding: 0.5rem 1rem; }

  .nav-links {
    position: fixed;
    top: 58px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-130%);
    transition: var(--trans);
    z-index: 999;
    border-bottom: 2px solid var(--primary);
    gap: 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar-items { gap: 1.5rem; }
  .hero-trust { gap: 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .float-call { display: block; bottom: 1.25rem; right: 1.25rem; }
  .price-card.featured { transform: scale(1); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-copy { width: 100%; text-align: center; }
  .footer-siret { display: block; }
  .info-dl { grid-template-columns: 1fr; gap: .35rem 0; }
  .info-dl dt { margin-top: .5rem; }
  .footer-bottom-links { justify-content: center; }
  .cookie-banner.show { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-cta-actions { flex-direction: column; }
  .service-cta-actions .btn { flex: none; width: 100%; }
}

@media (max-width: 480px) {
  :root { --space-lg: 2.75rem; --space-xl: 4rem; }
  .btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .float-call-btn .btn-text { display: none; }
  .float-call-btn { width: 58px; height: 58px; padding: 0; justify-content: center; border-radius: 50%; }
  .float-call-icon svg { width: 26px; height: 26px; }
}
