html,
body{
  max-width:100%;
  overflow-x:hidden;
}
body.timed-call-open{
  overflow:hidden;
}
body{
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility;
}
img,
video,
svg{
  max-width:100%;
  height:auto;
}
a,
button{
  touch-action:manipulation;
}
section[id]{
  scroll-margin-top:108px;
}
.home-urgent-strip{
  position:fixed;
  left:0;
  right:0;
  top:96px;
  z-index:950;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#b11414;
  color:#fff;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  padding:8px 12px;
  overflow:hidden;
  isolation:isolate;
  animation:urgentPulse 1.7s ease-in-out infinite;
}
.home-urgent-strip:before{
  content:"";
  position:absolute;
  top:0;
  left:-130%;
  width:120%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.3),transparent);
  z-index:0;
  animation:urgentShine 2.1s ease-in-out infinite;
}
.home-urgent-strip .urgent-default,
.home-urgent-strip .urgent-hover{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform:translateY(-50%);
  text-align:center;
  white-space:nowrap;
  z-index:1;
}
.home-urgent-strip .urgent-default{
  animation:urgentTextA 2.8s ease-in-out infinite;
}
.home-urgent-strip .urgent-hover{
  animation:urgentTextB 2.8s ease-in-out infinite;
}

.timed-call-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease,visibility .28s ease;
  z-index:5500;
}
.timed-call-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.timed-call-modal{
  width:min(560px,100%);
  background:#fff;
  color:#111;
  border-radius:18px;
  border:1px solid #ececec;
  box-shadow:0 30px 70px rgba(0,0,0,.36);
  padding:26px 22px 22px;
  position:relative;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center !important;
  transform:translateY(16px) scale(.98);
  transition:transform .3s cubic-bezier(.22,.61,.36,1),box-shadow .25s ease;
}
.timed-call-overlay.is-open .timed-call-modal{
  transform:translateY(0) scale(1);
  box-shadow:0 34px 80px rgba(0,0,0,.4);
}
.timed-call-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border:0;
  border-radius:8px;
  background:#f3f3f3;
  color:#111;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .22s ease,background .22s ease,box-shadow .22s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.timed-call-close:hover{
  background:#ffe8ba;
  transform:rotate(90deg) scale(1.06);
  box-shadow:0 8px 18px rgba(255,174,0,.32);
}
.timed-call-close:active{
  transform:rotate(90deg) scale(.95);
}
.timed-call-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:999px;
  background:transparent;
  margin-bottom:12px;
  text-align:center;
}
.timed-call-logo{
  width:min(360px,92%);
  max-width:100%;
  height:auto;
  display:block;
}
.timed-call-modal h3{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  text-align:center !important;
}
.timed-call-modal p{
  margin:0 auto 18px;
  max-width:460px;
  color:#444;
  line-height:1.5;
  font-size:17px;
  text-align:center !important;
}
.timed-call-modal *{
  text-align:center;
}
.timed-call-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:min(380px,100%);
  min-height:58px;
  border-radius:12px;
  text-decoration:none;
  background:linear-gradient(135deg,#ffbe2e 0%,#ffae00 50%,#ff9800 100%);
  background-size:200% 200%;
  color:#111;
  font-size:24px;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 10px 24px rgba(255,174,0,.32),0 0 0 0 rgba(255,174,0,.35);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease,background-position .35s ease;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  animation:callCtaPulse 1.8s ease-in-out infinite,callCtaGradient 3.2s linear infinite;
}
.timed-call-action:before{
  content:"";
  position:absolute;
  top:0;
  left:-130%;
  width:120%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.34),transparent);
  animation:callCtaShine 2.2s ease-in-out infinite;
  z-index:0;
}
.timed-call-action > *{
  position:relative;
  z-index:1;
}
.timed-call-action:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(255,174,0,.46),0 0 0 10px rgba(255,174,0,0);
  filter:saturate(1.09);
  background-position:100% 50%;
}
@media (max-width:760px){
  .timed-call-modal{
    padding:20px 14px 14px;
    border-radius:14px;
  }
  .timed-call-modal h3{
    font-size:29px;
  }
  .timed-call-modal p{
    font-size:15px;
  }
  .timed-call-action{
    font-size:21px;
    min-height:54px;
  }
}
@media (prefers-reduced-motion: reduce){
  .timed-call-action,
  .timed-call-action:before{
    animation:none !important;
    transition:none !important;
  }
}

@keyframes urgentPulse{
  0%,100%{box-shadow:0 8px 20px rgba(0,0,0,.18),0 0 0 0 rgba(177,20,20,.45)}
  50%{box-shadow:0 10px 24px rgba(0,0,0,.26),0 0 0 8px rgba(177,20,20,0)}
}
@keyframes urgentShine{
  0%{left:-130%}
  55%{left:130%}
  100%{left:130%}
}
@keyframes urgentTextA{
  0%,45%{opacity:1;transform:translateY(-50%)}
  50%,100%{opacity:0;transform:translateY(-42%)}
}
@keyframes urgentTextB{
  0%,45%{opacity:0;transform:translateY(-58%)}
  50%,95%{opacity:1;transform:translateY(-50%)}
  100%{opacity:0;transform:translateY(-58%)}
}
@keyframes callCtaPulse{
  0%,100%{box-shadow:0 10px 24px rgba(255,174,0,.32),0 0 0 0 rgba(255,174,0,.35)}
  50%{box-shadow:0 14px 30px rgba(255,174,0,.42),0 0 0 8px rgba(255,174,0,0)}
}
@keyframes callCtaShine{
  0%{left:-130%}
  58%{left:130%}
  100%{left:130%}
}
@keyframes callCtaGradient{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
body.has-home-urgent-strip header + .hero,
body.has-home-urgent-strip .hero{
  margin-top:148px !important;
  min-height:calc(100dvh - 148px) !important;
}
.global-process,
.global-reviews,
.global-faq,
.global-footer{
  content-visibility:auto;
  contain-intrinsic-size:1px 900px;
}

main,
main section,
main article,
main .card,
.global-footer .site-footer-main section,
.global-footer .footer-text,
.global-footer .footer-contact p{
  text-align:inherit;
}
main .card ul,
main .card ol{
  list-style-position:inside;
  margin-left:0;
  padding-left:0;
}
main .card li{
  margin-bottom:8px;
}

/* Injected process blocks on pages that do not already have them */
.global-process.process-top,
.global-process.process-section{position:relative;z-index:1;clear:both}
.global-process.process-top{background:#f3f3f3;padding:20px 18px}
.global-process .process-top-grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.global-process .process-mini{text-align:center}
.global-process .process-mini-icon{width:26px;height:26px;margin:0 auto 8px;color:#1d1d1d;opacity:.85}
.global-process .process-mini h3{margin:0 0 4px;font-size:15px;font-weight:700;text-transform:uppercase}
.global-process .process-mini p{margin:0;font-size:13px;line-height:1.35;color:#727272}
.global-process.process-section{background:#f7f7f7;padding:44px 18px 52px}
.global-process .process-wrap{max-width:1240px;margin:0 auto}
.global-process .process-head{text-align:center;max-width:820px;margin:0 auto 24px}
.global-process .process-head h2{margin:0 0 10px;font-size:40px;line-height:1.15;font-weight:900;text-transform:uppercase}
.global-process .process-head p{margin:0;font-size:15px;line-height:1.55;color:#707070}
.global-process .process-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.global-process .step-card{position:relative;background:#fff;border:1px solid #e7e7e7;padding:20px 18px 20px;min-height:300px;box-shadow:0 2px 8px rgba(0,0,0,.03)}
.global-process .step-badge{position:absolute;top:0;left:0;background:#ffae00;color:#fff;font-size:18px;font-weight:900;line-height:1;padding:8px 12px}
.global-process .step-card h3{margin:44px 0 10px;font-size:24px;font-weight:900;text-transform:uppercase;text-align:center}
.global-process .step-card p{margin:0 0 10px;font-size:14px;line-height:1.5;text-align:center;color:#686868}
.global-process .step-list{list-style:none;margin:0;padding:0;display:grid;gap:6px}
.global-process .step-list li{position:relative;padding-left:16px;font-size:12px;line-height:1.4;font-weight:500;color:#4b4b4b}
.global-process .step-list li:before{content:"\2713";position:absolute;left:0;top:0;color:#ffae00;font-weight:800}

/* Injected footer (same visual family as homepage) */
.global-footer{background:#070707;color:#fff;padding:52px 20px 0;margin-top:42px}
.global-footer .site-footer-main{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:1.2fr .9fr .9fr .9fr;gap:26px;align-items:start}
.global-footer h3{margin:0 0 14px;font-size:14px;line-height:1.2;text-transform:uppercase;letter-spacing:.03em;font-weight:800}
.global-footer .footer-logo{display:inline-flex;align-items:center;text-decoration:none;color:#fff;margin-bottom:16px}
.global-footer .footer-logo img{height:220px;width:auto;display:block}
.global-footer .footer-text{margin:0;max-width:430px;font-size:12px;line-height:1.55;color:#d0d0d0}
.global-footer .footer-list,.global-footer .footer-services{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.global-footer .footer-list a,.global-footer .footer-services a{color:#f3f3f3;text-decoration:none;font-size:12px;font-weight:600;opacity:.92;transition:opacity .18s ease,color .18s ease}
.global-footer .footer-list a:hover,.global-footer .footer-services a:hover{opacity:1;color:#ffb534}
.global-footer .footer-contact p{margin:0 0 12px;color:#d6d6d6;font-size:12px;line-height:1.5}
.global-footer .footer-cta{display:flex;flex-direction:column;gap:10px;max-width:290px}
.global-footer .footer-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 14px;border-radius:7px;font-size:13px;font-weight:900;text-decoration:none;letter-spacing:.01em;transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;opacity:1!important;text-shadow:none!important;-webkit-text-fill-color:currentColor}
.global-footer .footer-btn:hover{transform:translateY(-2px);filter:brightness(1.08);z-index:5}
.global-footer .footer-btn-devis{background:#fff!important;color:#ffb300!important;border:1px solid #dcdcdc}
.global-footer .footer-btn-call{background:#ffb300!important;color:#fff!important;border:1px solid #ffb300}
.global-footer .site-footer-bottom{margin-top:42px;background:#ffae00;color:#fff;padding:10px 14px;text-align:center;font-size:15px;font-weight:700;letter-spacing:.01em}
.global-footer .site-footer-bottom b{font-weight:900}
.global-footer .footer-socials{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:14px}
.global-footer .footer-social-link{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border:1px solid #2d2d2d;border-radius:999px;background:#111;color:#fff!important;text-decoration:none;font-size:11px;font-weight:700;line-height:1;transition:all .2s ease}
.global-footer .footer-social-link:hover{background:#ffae00;color:#111!important;border-color:#ffae00}
.global-footer .site-footer-main section{display:flex;flex-direction:column;align-items:flex-start}
.global-footer .site-footer-main>section:first-child{align-items:center;text-align:center}
.global-footer .site-footer-main section{align-items:center}
.global-footer h3{margin-bottom:16px;letter-spacing:.04em}
.global-footer .footer-list,.global-footer .footer-services{gap:10px;text-align:center}
.global-footer .footer-list a,.global-footer .footer-services a{font-weight:700}
.global-footer .footer-contact{text-align:center}

.site-footer,
.global-footer{
  text-align:inherit !important;
}
.site-footer .site-footer-main,
.global-footer .site-footer-main{
  align-items:start !important;
}
.site-footer .site-footer-main section,
.global-footer .site-footer-main section{
  align-items:flex-start !important;
  text-align:inherit !important;
}
.site-footer .footer-text,
.site-footer .footer-contact p,
.global-footer .footer-text,
.global-footer .footer-contact p{
  text-align:inherit !important;
  margin-left:0 !important;
  margin-right:0 !important;
}
.site-footer .footer-list,
.site-footer .footer-services,
.global-footer .footer-list,
.global-footer .footer-services{
  width:100%;
  justify-items:start;
}

/* Footer left column: logo + text + socials aligned left on every page */
.site-footer .site-footer-main>section:first-child,
.global-footer .site-footer-main>section:first-child{
  align-items:flex-start !important;
  text-align:left !important;
}
.site-footer .footer-logo,
.global-footer .footer-logo{
  justify-content:flex-start !important;
  align-self:flex-start !important;
  margin-left:0 !important;
}
.site-footer .footer-text,
.global-footer .footer-text{
  text-align:left !important;
}
.site-footer .footer-socials,
.global-footer .footer-socials{
  justify-content:flex-start !important;
  width:100%;
}

/* Final footer consistency lock across all pages */
.site-footer .footer-logo img,
.global-footer .footer-logo img{
  width:260px !important;
  max-width:100% !important;
  height:auto !important;
}
.site-footer .site-footer-main>section:first-child .footer-text,
.global-footer .site-footer-main>section:first-child .footer-text{
  text-align:left !important;
  max-width:430px !important;
}
.site-footer .site-footer-main>section:first-child .footer-socials,
.global-footer .site-footer-main>section:first-child .footer-socials{
  max-width:430px !important;
  justify-content:flex-start !important;
  align-self:flex-start !important;
}

@media (max-width: 760px){
  .site-footer .footer-logo img,
  .global-footer .footer-logo img{
    width:210px !important;
    height:auto !important;
  }
}

@media (min-width: 981px){
  .process-top-grid,
  .global-process .process-top-grid{
    align-items:stretch;
  }

  .process-top .process-mini,
  .global-process .process-mini{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    height:100%;
    min-height:132px;
    padding:6px 10px;
  }

  .process-top .process-mini h3,
  .global-process .process-mini h3{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    width:100%;
  }

  .process-top .process-mini p,
  .global-process .process-mini p{
    width:100%;
    text-align:center;
    margin-top:2px;
  }

  p,
  .card p,
  .global-faq .faq-answer,
  .global-faq .faq-intro,
  .global-reviews .review-text,
  .global-reviews .reviews-intro,
  .global-process .process-head p,
  .global-process .step-card p,
  .global-footer .footer-text,
  .global-footer .footer-contact p,
  .global-footer .footer-list a,
  .global-footer .footer-services a,
  .local-seo-block p{
    text-align:left !important;
  }

  /* Keep short/high-impact elements centered */
  .hero h1,
  .hero .badge,
  .hero .hero-wrap,
  .hero .hero-wrap p,
  .hero-local h1,
  .hero .hero-subtitle,
  .global-process .process-head h2,
  .global-reviews h2,
  .global-faq h2,
  .global-sticky-cta .sticky-link,
  .home-urgent-strip{
    text-align:center !important;
  }

  /* Lists and FAQ readability */
  .card ul,
  .card ol,
  .global-faq .faq-question{
    text-align:left !important;
  }

}

/* Injected sticky call button */
body{padding-bottom:calc(120px + env(safe-area-inset-bottom, 0px))}
.global-sticky-cta{position:fixed;left:50%;bottom:10px;transform:translateX(-50%);z-index:4000;display:flex;align-items:center;justify-content:center;width:min(700px,calc(100% - 18px));pointer-events:none}
.global-sticky-cta .sticky-link{pointer-events:auto;position:relative;display:inline-flex;align-items:center;justify-content:center;gap:10px;text-decoration:none;font-weight:900;letter-spacing:.02em;border-radius:11px;min-height:52px;padding:13px 18px;box-shadow:0 6px 16px rgba(0,0,0,.18);background:#ffae00;color:#fff;border:1px solid #ffae00;transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;font-size:16px}
.global-sticky-cta .sticky-link:hover{transform:translateY(-2px);filter:brightness(1.06);box-shadow:0 12px 24px rgba(255,174,0,.35)}
.global-sticky-cta .sticky-link svg{width:15px;height:15px}
.global-sticky-cta .sticky-default{display:inline}
.global-sticky-cta .sticky-hover-number{display:none}
.global-sticky-cta .sticky-link:hover .sticky-default{display:none}
.global-sticky-cta .sticky-link:hover .sticky-hover-number{display:inline}
body.mobile-nav-open .global-sticky-cta,
body.mobile-nav-open .site-sticky-cta{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translate(-50%,12px) !important;
}

@media(max-width:1200px){
  .global-process .process-top-grid,.global-process .process-steps{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:1100px){.global-footer .site-footer-main{grid-template-columns:1fr 1fr;gap:24px}}
@media(max-width:760px){
  .global-process.process-top,.global-process.process-section{padding-left:14px;padding-right:14px}
  .global-process .process-top-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .global-process .process-steps{grid-template-columns:1fr}
  .global-process .process-mini{
    min-height:150px;
    padding:10px 8px;
  }
  .global-process .process-head h2{font-size:28px}
  .global-process .process-head p{font-size:14px}
  .global-footer{padding:36px 14px 0}
  .global-footer .site-footer-main{grid-template-columns:1fr;gap:20px}
  .global-footer .footer-logo img{height:140px}
  .global-footer .site-footer-bottom{font-size:13px;padding:10px 8px}
  body{padding-bottom:calc(138px + env(safe-area-inset-bottom, 0px))}
  .global-sticky-cta{width:calc(100% - 10px);bottom:calc(7px + env(safe-area-inset-bottom, 0px))}
}
@media(max-width:560px){
  .global-sticky-cta .sticky-link{font-size:11px;letter-spacing:.01em}
}

/* Injected reviews block */
.global-reviews{
  padding:34px 20px 18px;
  max-width:1280px;
  margin:0 auto;
  text-align:center;
}
.global-reviews h2{margin:0;font-size:46px;line-height:1.08;font-weight:900;text-transform:uppercase}
.global-reviews .reviews-intro{margin:12px auto 10px;max-width:860px;font-size:18px;line-height:1.55;color:#626262}
.global-reviews .reviews-top{display:flex;justify-content:center;align-items:center;gap:10px;margin-bottom:24px;flex-wrap:wrap}
.global-reviews .reviews-top a{text-decoration:none;font-size:14px;font-weight:800;color:#d38f00}
.global-reviews .reviews-top a:hover{color:#111}
.global-reviews .reviews-slider{position:relative;--per-view:3;--gap:18px;padding:0 44px;overflow:visible}
.global-reviews .reviews-viewport{overflow:hidden;width:100%}
.global-reviews .reviews-track{display:flex;gap:var(--gap);transition:transform .55s cubic-bezier(.22,.61,.36,1)}
.global-reviews .review-card{flex:0 0 calc((100% - (var(--gap) * (var(--per-view) - 1))) / var(--per-view));background:#fff;border:1px solid #ececec;border-radius:16px;padding:20px 18px 16px;text-align:left;box-shadow:0 10px 24px rgba(0,0,0,.06)}
.global-reviews .review-head{display:flex;justify-content:space-between;gap:10px;margin-bottom:10px}
.global-reviews .review-person{display:flex;align-items:center;gap:11px}
.global-reviews .review-avatar{width:42px;height:42px;border-radius:50%;background:#ffae00;color:#111;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:16px}
.global-reviews .review-avatar img{width:100%;height:100%;display:block;border-radius:50%;object-fit:cover}
.global-reviews .review-name{font-size:22px;font-weight:800;line-height:1.12}
.global-reviews .review-date{font-size:14px;color:#7a7a7a;margin-top:2px}
.global-reviews .google-mark{font-weight:900;font-size:28px;line-height:1;color:#4285F4}
.global-reviews .review-stars{color:#ffb300;font-size:19px;letter-spacing:2px;font-weight:900;margin-bottom:10px}
.global-reviews .review-text{margin:0;font-size:17px;line-height:1.62;color:#303030;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.global-reviews .review-card.expanded .review-text{display:block;-webkit-line-clamp:initial}
.global-reviews .review-toggle{margin-top:9px;padding:0;border:0;background:none;color:#6c6c6c;font-size:15px;font-weight:700;cursor:pointer}
.global-reviews .review-toggle:hover{color:#111}
.global-reviews .reviews-nav{position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;border-radius:999px;border:1px solid #d9d9d9;background:#fff;display:flex;align-items:center;justify-content:center;font-size:24px;line-height:1;cursor:pointer;color:#4a4a4a;transition:all .25s ease;z-index:2}
.global-reviews .reviews-nav:hover{background:#ffae00;border-color:#ffae00;color:#111;box-shadow:0 10px 20px rgba(255,174,0,.35)}
.global-reviews .reviews-nav:disabled{opacity:.45;cursor:not-allowed;box-shadow:none}
.global-reviews .reviews-nav.prev{left:2px}
.global-reviews .reviews-nav.next{right:2px}
.global-reviews .reviews-dots{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:16px}
.global-reviews .reviews-dot{width:9px;height:9px;border-radius:50%;background:#dfdfdf;border:0;padding:0;cursor:pointer;transition:all .25s ease}
.global-reviews .reviews-dot.active{background:#ffae00;transform:scale(1.2)}
.global-reviews .review-empty{padding:14px;font-size:15px;color:#6b6b6b;text-align:center;width:100%}

/* Injected FAQ block */
.global-faq{padding:60px;max-width:1100px;margin:0 auto 40px}
.global-faq h2{font-size:36px;margin:0 0 10px;text-align:center}
.global-faq .faq-intro{color:#444;font-size:18px;line-height:1.6;margin:0 0 30px;text-align:center}
.global-faq .faq-item{border:1px solid #e5e5e5;border-radius:14px;margin-bottom:14px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,0.05);overflow:hidden;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.global-faq .faq-item:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.08);border-color:#ffcf67}
.global-faq .faq-question{cursor:pointer;padding:18px 24px;font-weight:700;font-size:22px;display:flex;align-items:center;justify-content:space-between;gap:16px;background:#fff;list-style:none}
.global-faq .faq-question::-webkit-details-marker{display:none}
.global-faq .faq-icon{width:32px;height:32px;border-radius:50%;background:#ffae00;display:flex;align-items:center;justify-content:center;color:#111;font-size:24px;font-weight:700;line-height:1;transition:transform .35s ease,background .35s ease,color .35s ease;flex-shrink:0}
.global-faq .faq-answer{max-height:0;overflow:hidden;opacity:0;transition:max-height .65s ease,opacity .45s ease,padding .65s ease;padding:0 24px;font-size:17px;line-height:1.85;color:#2f2f2f;background:linear-gradient(180deg,#fff 0%,#fffdf7 100%);text-align:center}
.global-faq .faq-item.active,
.global-faq .faq-item[open]{border-color:#ffae00}
.global-faq .faq-item.active .faq-answer,
.global-faq .faq-item[open] .faq-answer{max-height:900px;opacity:1;padding:6px 24px 24px}
.global-faq .faq-item.active .faq-icon,
.global-faq .faq-item[open] .faq-icon{transform:rotate(45deg);background:#111;color:#ffae00}

.local-seo-block{
  max-width:1140px;
  margin:0 auto 24px;
  padding:20px 20px 8px;
}
.local-seo-block article{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:14px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}
.local-seo-block h2{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.18;
  font-weight:900;
}
.local-seo-block p{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.55;
  color:#333;
}
.local-seo-block .nearby{
  color:#6a6a6a;
}
.local-seo-links{
  max-width:1140px;
  margin:0 auto 40px;
  padding:0 20px;
}
.local-seo-links h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:900;
}
.local-seo-links ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:6px;
}
.local-seo-links a{
  color:#1d1d1d;
  font-weight:700;
  text-decoration:none;
}
.local-seo-links a:hover{
  color:#c98600;
}

@media(max-width:760px){
  .global-reviews{padding:28px 14px 12px}
  .global-reviews h2{font-size:30px}
  .global-reviews .reviews-intro{font-size:15px}
  .global-reviews .reviews-slider{padding:0 32px}
  .global-reviews .review-name{font-size:18px}
  .global-reviews .review-text{font-size:15px}
  .global-reviews .reviews-nav.prev{left:-2px}
  .global-reviews .reviews-nav.next{right:-2px}
  .global-faq{padding:42px 20px}
  .global-faq h2{font-size:30px}
  .global-faq .faq-intro{font-size:16px}
  .global-faq .faq-question{font-size:18px;padding:16px}
  .global-faq .faq-answer{font-size:16px;padding:0 16px}
  .global-faq .faq-item.active .faq-answer,
  .global-faq .faq-item[open] .faq-answer{padding:4px 16px 18px}
  .local-seo-block{
    padding:14px 12px 4px;
  }
  .local-seo-block h2{
    font-size:22px;
  }
  .local-seo-block p{
    font-size:16px;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .local-seo-links{
    padding:0 12px;
    margin-bottom:24px;
  }
  .local-seo-links h3{
    font-size:18px;
  }
}

@media(max-width:980px){
  .home-urgent-strip{
    top:92px;
    min-height:50px;
    font-size:15px;
    letter-spacing:.02em;
  }
  body.has-home-urgent-strip header + .hero,
  body.has-home-urgent-strip .hero{
    margin-top:142px !important;
    min-height:calc(100dvh - 142px) !important;
  }
  header + .hero,
  .hero{
    margin-top:92px !important;
    min-height:calc(100dvh - 92px) !important;
    background-attachment:scroll !important;
    background-position:center center !important;
  }
  .hero-wrap{
    padding:92px 16px 56px !important;
  }
  .hero h1{
    font-size:clamp(32px,8vw,48px) !important;
    line-height:1.08 !important;
  }
  .hero .hero-subtitle,
  .hero p{
    font-size:clamp(16px,4.3vw,20px) !important;
    line-height:1.45 !important;
  }
  .hero .hero-subtitle{
    margin-top:72px !important;
    margin-bottom:10px !important;
    display:block !important;
    -webkit-line-clamp:unset !important;
    -webkit-box-orient:initial !important;
    overflow:visible !important;
  }
  .hero p,
  .card p,
  main p,
  .process-head p,
  .reviews-intro{
    font-size:16px !important;
    line-height:1.55 !important;
    margin:0 0 14px !important;
  }
  .hero p,
  .process-head p,
  .reviews-intro{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .hero .hero-subtitle{
    margin-top:64px !important;
    margin-bottom:10px !important;
    display:block !important;
    -webkit-line-clamp:unset !important;
    -webkit-box-orient:initial !important;
    overflow:visible !important;
  }
  .cards{
    padding:26px 14px !important;
    gap:12px !important;
  }
  .cards .card{
    min-height:170px !important;
  }
  .cards .card span{
    font-size:19px !important;
    line-height:1.2 !important;
    bottom:14px !important;
  }
  .reviews .review-card,
  .global-reviews .review-card{
    min-height:240px;
  }
}

@media(max-width:560px){
  .home-urgent-strip{
    top:84px;
    min-height:48px;
    font-size:14px;
    padding:7px 8px;
  }
  body.has-home-urgent-strip header + .hero,
  body.has-home-urgent-strip .hero{
    margin-top:132px !important;
    min-height:calc(100dvh - 132px) !important;
  }
  section[id]{
    scroll-margin-top:96px;
  }
  header + .hero,
  .hero{
    margin-top:84px !important;
    min-height:calc(100dvh - 84px) !important;
  }
  .hero-wrap{
    padding:82px 12px 44px !important;
  }
  .hero .hero-subtitle{
    margin-top:56px !important;
    margin-bottom:8px !important;
  }
  .cards{
    padding:22px 10px !important;
    gap:10px !important;
  }
  .cards .card span{
    font-size:17px !important;
  }
  .global-sticky-cta .sticky-link{
    min-height:50px;
    font-size:16px;
  }
}

@media (max-width: 768px) {
  p,
  .service-description,
  .faq-text,
  .zone-intervention,
  .description,
  .card p,
  .global-faq .faq-answer,
  .global-faq .faq-intro,
  .global-reviews .review-text,
  .global-reviews .reviews-intro,
  .global-process .process-head p,
  .global-process .step-card p,
  .global-footer .footer-text,
  .global-footer .footer-contact p,
  .local-seo-block p {
    text-align: left !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
  }

  /* Keep service hero text centered on mobile */
  .hero .hero-wrap,
  .hero .hero-wrap p,
  .hero .badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
  }

  .container,
  .section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Keep short/high-impact elements centered on mobile */
  h1,
  .hero h1,
  .hero-local h1,
  .home-urgent-strip,
  .global-sticky-cta .sticky-link,
  .btn,
  .cta-btn {
    text-align: center !important;
  }

  .cta-row,
  .global-sticky-cta {
    justify-content: center !important;
    align-items: center !important;
  }

}

/* Keep these specific conversion/section texts centered as requested */
.services-head h2,
.services-head p,
.process-top .process-mini h3,
.process-top .process-mini p,
.global-process .process-mini h3,
.global-process .process-mini p,
.process-section .process-head h2,
.process-section .process-head p,
.global-process .process-head h2,
.global-process .process-head p,
.reviews h2,
.reviews .reviews-intro,
.global-reviews h2,
.global-reviews .reviews-intro,
.faq .faq-intro,
.global-faq .faq-intro{
  text-align:center !important;
}

/* FAQ questions must stay left-aligned on desktop and mobile */
.faq .faq-question,
.global-faq .faq-question{
  text-align:left !important;
  justify-content:space-between !important;
}

/* Service cards: lock to pre-bug stable style */
.cards#services .card{
  position:relative !important;
  overflow:hidden !important;
  border-radius:14px !important;
  box-shadow:0 8px 18px rgba(0,0,0,.12) !important;
  transition:transform .28s ease,box-shadow .28s ease !important;
}
.cards#services .card::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(180deg,rgba(0,0,0,.05) 10%,rgba(0,0,0,.7) 92%) !important;
  z-index:1 !important;
  transition:background .28s ease !important;
  pointer-events:none !important;
}
.cards#services .card::after{
  content:"Voir le service" !important;
  position:absolute !important;
  left:12px !important;
  right:12px !important;
  bottom:12px !important;
  z-index:3 !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  padding:8px 10px !important;
  border-radius:10px !important;
  background:#ffae00 !important;
  color:#111 !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.02em !important;
  text-transform:uppercase !important;
  opacity:0 !important;
  transform:translateY(8px) !important;
  transition:opacity .24s ease,transform .24s ease,filter .24s ease !important;
  pointer-events:none !important;
}
.cards#services .card img{
  width:100% !important;
  height:100% !important;
  min-height:220px !important;
  object-fit:cover !important;
  filter:brightness(65%) !important;
  transition:transform .4s ease,filter .4s ease !important;
}
.cards#services .card span{
  position:absolute !important;
  left:14px !important;
  bottom:14px !important;
  color:#fff !important;
  font-size:44px !important;
  font-weight:900 !important;
  z-index:2 !important;
  line-height:1.05 !important;
}
.cards#services .card:hover{
  transform:translateY(-6px) !important;
  box-shadow:0 18px 32px rgba(0,0,0,.24) !important;
}
.cards#services .card:hover::before{
  background:linear-gradient(180deg,rgba(0,0,0,.02) 8%,rgba(0,0,0,.6) 90%) !important;
}
.cards#services .card:hover img{
  filter:brightness(100%) !important;
  transform:scale(1.05) !important;
}
.cards#services .card:hover::after{
  opacity:1 !important;
  transform:translateY(0) !important;
  filter:brightness(1.04) !important;
}
.cards#services .card:hover span{
  bottom:58px !important;
}

.main .grid .card-link{
  border-radius:16px !important;
  border:1px solid #e7e7e7 !important;
  background:
    linear-gradient(180deg,#fff 0%,#fffcf5 100%) !important;
  box-shadow:0 8px 22px rgba(0,0,0,.06) !important;
  transition:transform .25s cubic-bezier(.22,.61,.36,1),box-shadow .25s cubic-bezier(.22,.61,.36,1),border-color .2s ease !important;
  position:relative !important;
  overflow:hidden !important;
}
.main .grid .card-link::before{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  left:-120% !important;
  width:120% !important;
  height:100% !important;
  background:linear-gradient(115deg,transparent,rgba(255,174,0,.16),transparent) !important;
  transition:left .55s ease !important;
}
.main .grid .card-link:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 16px 34px rgba(0,0,0,.11) !important;
  border-color:rgba(255,174,0,.45) !important;
}
.main .grid .card-link:hover::before{
  left:120% !important;
}
.main .grid .card-link .tag{
  background:#fff6df !important;
  border:1px solid #ffe4a7 !important;
  color:#b97900 !important;
}
.main .grid .card-link .card-cta{
  background:linear-gradient(135deg,#ffbe2e 0%,#ffae00 100%) !important;
  color:#111 !important;
  font-weight:900 !important;
  box-shadow:0 8px 16px rgba(255,174,0,.26) !important;
}
.main .grid .card-link:hover .card-cta{
  transform:translateY(-1px) !important;
  box-shadow:0 12px 20px rgba(255,174,0,.34) !important;
}

@media(max-width:980px){
  .cards#services{gap:12px !important}
  .cards#services .card img{min-height:190px !important}
  .cards#services .card span{
    font-size:18px !important;
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
  }
  .cards#services .card::after{font-size:10px !important;left:10px !important;right:10px !important;bottom:10px !important;padding:6px 9px !important}
}
@media(max-width:560px){
  .cards#services .card img{min-height:178px !important}
  .cards#services .card span{font-size:17px !important}
  .cards#services .card::after{content:"Voir" !important;letter-spacing:.02em !important}
}

/* Service detail pages (rat/guepe/frelon/etc.) */
main > div > .card,
main > section.card,
main .side .card{
  border-radius:18px !important;
  border:1px solid #ece3cf !important;
  background:linear-gradient(180deg,#ffffff 0%,#fffaf0 100%) !important;
  box-shadow:0 10px 30px rgba(0,0,0,.09) !important;
  position:relative !important;
  overflow:hidden !important;
  transition:transform .25s ease,box-shadow .25s ease,border-color .2s ease !important;
}
main > div > .card::before,
main > section.card::before,
main .side .card::before{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  top:0 !important;
  height:4px !important;
  background:linear-gradient(90deg,#ffae00 0%,#ffd377 50%,#ffae00 100%) !important;
}
main > div > .card:hover,
main > section.card:hover,
main .side .card:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 16px 34px rgba(0,0,0,.13) !important;
  border-color:#ffcf73 !important;
}

/* Restore yellow illuminated hover in "Autres services" lists */
.service-links a{
  position:relative !important;
  border-radius:10px !important;
  padding:10px 12px !important;
  transition:color .2s ease,background .2s ease,box-shadow .22s ease,transform .2s ease !important;
}
.service-links a:hover{
  color:#b87a00 !important;
  background:rgba(255,174,0,.14) !important;
  box-shadow:0 0 0 1px rgba(255,174,0,.36),0 10px 20px rgba(255,174,0,.2) !important;
  transform:translateX(3px) !important;
}
.service-links a.active{
  color:#b87a00 !important;
  background:rgba(255,174,0,.18) !important;
  box-shadow:0 0 0 1px rgba(255,174,0,.42) !important;
}

@media(max-width:980px){
  .cards#services .card span{font-size:20px !important;}
  .cards#services .card:hover{transform:translateY(-3px) scale(1.005) !important;}
}
