/* Thème "PAC Énergie" — classique, lisible, blanc, boutons verts (sans dégradés) */
:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --card:#ffffff;
  --text:#071510;
  --muted:#475569;
  --brand:#15803d;   /* green */
  --brand2:#15803d;
  --accent:#16a34a;
  --accent2:#16a34a;
  --cta:#fbbf24; /* yellow CTA */
  --cta_text:#111827;
  --danger:#b4233a;
  --ok:#16a34a;
  --border:#e5e7eb;
  --ring: rgba(22,163,74,.18);
  --shadow:none;
  --shadow2:none;
  --radius:6px;
}
*{box-sizing:border-box}
html,body{height:100%}
[hidden]{display:none !important;}
.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto;}

.topstrip{
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.topstrip-inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-start;
  padding:10px 0;
  color: rgba(15,23,42,.76);
  font-size:.92rem;
}
.topstrip-item{display:flex; align-items:center; gap:10px;}
.topstrip-ico{
  width:10px;height:10px;border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(22,163,74,.10);
  flex:0 0 auto;
}
.topstrip-ico-clock{
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(22,163,74,.10);
}
@media (max-width: 720px){
  .topstrip-inner{flex-wrap:wrap; gap:10px;}
}

.topbar{
  position:sticky; top:0; z-index:20;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0;}
.topbar-v2{gap:16px;}
.brand{display:flex; gap:0; align-items:center; text-decoration:none;}
.brand-v2{flex:0 0 auto;}
.logo{
  width:38px;height:38px;border-radius: var(--radius);
  background: var(--accent);
  box-shadow: none;
}
.logo-img{
  width:52px;height:52px;
  display:block;
  border-radius: var(--radius);
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-name{font-weight:900; letter-spacing:.2px;}
.nav-main{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex:1;
  min-width:0;
}
.nav-item{
  color: rgba(15,23,42,.86);
  text-decoration:none;
  font-weight:700;
  font-size:.98rem;
  padding:10px 8px;
  border-radius: var(--radius);
}
.nav-item:hover{background: rgba(22,163,74,.08); color: rgba(15,23,42,.96);}
.nav-dd{position:relative;}
.nav-dd-btn{
  border:0;
  background: transparent;
  font: inherit;
  color: rgba(15,23,42,.86);
  font-weight:700;
  font-size:.98rem;
  padding:10px 10px;
  border-radius: var(--radius);
  cursor:pointer;
}
.nav-dd-btn:hover{background: rgba(22,163,74,.08); color: rgba(15,23,42,.96);}
.nav-dd-panel{
  display:none;
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(420px, 90vw);
  padding: 12px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: none;
  z-index: 60;
}
.nav-dd::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:100%;
  height: 12px;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel,
.nav-dd.is-open .nav-dd-panel{display:block;}
.dd-link{
  display:block;
  padding:10px 10px;
  border-radius: var(--radius);
  text-decoration:none;
  border:1px solid var(--border);
  background: #ffffff;
  font-weight:700;
  color: rgba(15,23,42,.92);
  margin-bottom:8px;
}
.dd-link:hover{border-color: rgba(22,163,74,.30); box-shadow: 0 0 0 3px var(--ring);}
.nav-dd-panel--cards{
  width: min(520px, 92vw);
}
.dd-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
@media (max-width: 720px){
  .dd-cards{grid-template-columns: 1fr;}
}
.nav-dd-panel--list{width: min(420px, 90vw);}
.dd-card{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px 12px;
  border-radius: var(--radius);
  text-decoration:none;
  border:1px solid var(--border);
  background: #f9fafb;
  box-shadow: none;
}
.dd-card:hover{border-color: rgba(22,163,74,.30); box-shadow: 0 0 0 3px var(--ring);}
.dd-card-title{font-weight:900; color: rgba(7,21,16,.94);}
.dd-card-desc{color: var(--muted); font-size:.92rem; font-weight:650;}
.dd-more{
  display:block;
  padding:10px 10px;
  border-radius: var(--radius);
  text-decoration:none;
  font-weight:800;
  color: rgba(15,23,42,.90);
  border:1px solid rgba(22,163,74,.22);
  background: rgba(22,163,74,.06);
  text-align:center;
}
.header-actions{display:flex; align-items:center; justify-content:flex-end; gap:12px; flex:0 0 auto;}
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration:none;
  color: var(--cta_text);
  background: var(--cta);
  border: 1px solid rgba(245, 158, 11, .35);
  font-weight:800;
  box-shadow: none;
  white-space:nowrap;
}
.cta-btn:hover{filter: brightness(.95);}

.hamburger{display:none;}
@media (max-width: 980px){
  .nav-main{display:none;}
  .hamburger{display:inline-flex;}
  .cta-btn{display:none;}
}
.hamburger{
  width:44px;height:44px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  box-shadow: none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}
.hamburger span{
  width:18px;
  height:2px;
  background: rgba(15, 23, 42, .78);
  border-radius:999px;
}

.mnav-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.25);
  z-index: 80;
}
.mnav{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(420px, 92vw);
  background: #ffffff;
  border-left:1px solid var(--border);
  box-shadow: none;
  z-index: 90;
  display:flex;
  flex-direction:column;
}
.menu-open, .menu-open body{overflow:hidden;}
.mnav-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 14px;
  border-bottom:1px solid var(--border);
}
.mnav-title{font-weight:900;}
.mnav-close{
  width:42px;height:42px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  color: rgba(7,21,16,.86);
  cursor:pointer;
  font-size:22px;
  line-height:1;
}
.mnav-body{padding:12px 14px; overflow:auto;}
.mnav-links{display:grid; grid-template-columns: 1fr; gap:8px; margin-bottom:10px;}
.mnav-sep{height:1px; background: var(--border); margin: 10px 0;}
.mnav-region{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: #f9fafb;
  margin-bottom:10px;
  overflow:hidden;
}
.mnav-region summary{
  list-style:none;
  cursor:pointer;
  padding:12px 12px;
  font-weight:900;
}
.mnav-region summary::-webkit-details-marker{display:none;}
.mnav-cities{
  padding: 0 12px 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
}
.mnav-city{
  display:block;
  padding:10px 10px;
  border-radius: var(--radius);
  text-decoration:none;
  border:1px solid var(--border);
  background: #ffffff;
}
.mnav-city:hover{border-color: rgba(22,163,74,.28); box-shadow: 0 0 0 3px var(--ring);}
.mnav-more{
  display:block;
  text-align:center;
  padding:10px 10px;
  border-radius: var(--radius);
  text-decoration:none;
  font-weight:900;
  color: rgba(7,21,16,.90);
  border:1px solid rgba(22,163,74,.22);
  background: rgba(22,163,74,.06);
}

.sticky-cta{
  position:fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--cta);
  border: 1px solid rgba(245, 158, 11, .35);
  color: var(--cta_text);
  text-decoration:none;
  font-weight:900;
  box-shadow: none;
}
@media (max-width: 720px){
  .sticky-cta{left: 18px; right: 18px; text-align:center;}
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  padding:9px 12px; border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
}
.btn-ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.btn-ico svg{width:18px; height:18px;}
.pill:hover{border-color: rgba(22,163,74,.28); box-shadow: 0 0 0 3px var(--ring);}
.pill strong{font-weight:800}
.pill-cta{
  border-color: transparent;
  background: var(--accent);
  color:#ffffff;
  box-shadow: none;
}
.pill-cta:hover{
  filter: brightness(.96);
}

/* Legacy header CTA (kept for compatibility) */
.pill-cta-devis{padding: 14px 30px; font-size: 1.06rem; white-space: nowrap;}

.topbar a{color:var(--text);}
.topbar .brand-name{color:var(--text);}

/* Dropdown panels are dark: keep link color aligned */
.topbar .nav-region-panel .nav-link{color: rgba(232,238,252,.90);}

.topbar .nav-region-panel .nav-more{color: var(--brand);}
.topbar .nav-region-panel .nav-region-title{color: var(--text);}

.nav-region-panel{
  display:none;
  position:absolute;
  top: 100%;
  margin-top: 10px;
  right: 0;
  left: auto;
  width: min(360px, 92vw);
  padding: 14px;
  border-radius: var(--radius);
  background: #ffffff;
  border:1px solid var(--border);
  box-shadow: none;
  z-index: 40;
}
.nav-region-item::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height: 12px;
}
.nav-region-item:hover .nav-region-panel,
.nav-region-item:focus-within .nav-region-panel{display:block;}
.nav-region-panel[data-align="left"]{left:0; right:auto;}
.nav-region-panel[data-align="right"]{right:0; left:auto;}
@media (max-width: 720px){
  .nav-region-panel{position:fixed; left: 20px; right: 20px; width:auto;}
}
.nav-region-title{font-weight:900; margin:2px 0 10px;}
.nav-cities{padding: 0 12px 12px; display:flex; flex-wrap:wrap; gap:8px;}
.nav-region-panel .nav-cities{
  padding: 0;
  display:grid;
  grid-template-columns: 1fr;
  gap:6px;
  max-height: min(56vh, 520px);
  overflow:auto;
}
@media (min-width: 820px){
  .nav-region-panel .nav-cities{grid-template-columns: 1fr 1fr;}
}
.nav-link{
  display:inline-flex;
  padding:8px 10px;
  border-radius: var(--radius);
  text-decoration:none;
  border:1px solid var(--border);
  background: #ffffff;
  font-size:.92rem;
}
.nav-region-panel .nav-link{
  display:block;
  border-radius: var(--radius);
  padding:10px 10px;
}
.nav-link[aria-current="page"]{border-color: rgba(21,128,61,.35); box-shadow: 0 0 0 3px rgba(21,128,61,.10);}
.nav-more{
  display:inline-flex;
  padding:8px 10px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:900;
  color: var(--brand);
}
.nav-region-panel .nav-more{
  justify-content:center;
  border:1px dashed rgba(21,128,61,.22);
  border-radius: 12px;
  background: rgba(21,128,61,.05);
}

.faq{
  width:min(880px, 100%);
  margin: 0 auto;
}
.faq-list{display:flex; flex-direction:column; gap:14px;}
.faq-item{
  border:1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(18,31,53,.06);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-ico{
  width:22px;height:22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: var(--brand);
  border:1px solid rgba(21,128,61,.22);
  background: rgba(21,128,61,.06);
  flex:0 0 auto;
}
.faq-q{font-weight:800;}
.faq-chev{
  margin-left:auto;
  width:10px;height:10px;
  border-right:2px solid rgba(16,33,55,.55);
  border-bottom:2px solid rgba(16,33,55,.55);
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.faq-item[open] .faq-chev{transform: rotate(-135deg);}
.faq-item .answer{
  padding: 0 16px 16px;
  color: var(--muted);
  line-height:1.6;
}

.partners-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){.partners-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 640px){.partners-grid{grid-template-columns: 1fr;}}
.partner-card{
  border:1px solid var(--border);
  border-radius: 16px;
  background:#fff;
  padding:14px 14px;
  box-shadow: 0 10px 22px rgba(18,31,53,.06);
}
.partner-name{font-weight:900;}
.partner-cat{color: var(--muted); font-size:.92rem; margin-top:2px;}
.partner-meta{color: rgba(16,33,55,.72); font-size:.92rem; margin-top:8px;}
.partner-link{display:inline-block; margin-top:10px; font-weight:900; color: var(--brand); text-decoration:none;}
.partner-link:hover{text-decoration:underline;}

.devis-card{
  border-left: 4px solid rgba(22,163,74,.75);
}
.devis-card h2{
  margin:0 0 6px;
  font-size: 1.15rem;
  letter-spacing: -0.2px;
}
.devis-card .mini{
  margin:0 0 12px;
}

.ms{margin-top:14px;}
.ms-top{margin-bottom:10px;}
.ms-stepline{display:flex; gap:10px; flex-wrap:wrap; font-size:.9rem; color: var(--muted);}
.ms-step{padding:6px 10px; border-radius: var(--radius); border:1px solid var(--border); background:#fff;}
.ms-step.is-active{color: var(--text); border-color: rgba(245,158,11,.55); box-shadow: 0 0 0 3px rgba(245,158,11,.18);}
.ms-step.is-done{color: rgba(16,33,55,.75);}
.ms-progress{height:8px; background: rgba(17,24,39,.06); border-radius: 2px; overflow:hidden; margin-top:10px;}
.ms-bar{height:100%; width:33%; background: var(--accent);}
.ms-step-panel{margin-top:12px;}
.ms-title{font-size:1.05rem; font-weight:900; margin:6px 0 4px;}
.ms-help{color: var(--muted); font-size:.92rem;}
.ms-actions{display:flex; gap:10px; margin-top:12px;}
.ms-actions .pill{flex:1; justify-content:center;}

.choice-grid{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:12px;}
@media (min-width: 980px){
  .choice-grid{grid-template-columns: 1fr 1fr;}
}
.choice{
  width:100%;
  text-align:left;
  border:1px solid var(--border);
  background:#ffffff;
  border-radius: var(--radius);
  padding:12px 12px;
  cursor:pointer;
  display:flex;
  gap:12px;
  align-items:flex-start;
  box-shadow: none;
  transition: border-color .12s ease, background .12s ease, box-shadow .12s ease, transform .12s ease;
}
.choice:hover{
  transform: translateY(-1px);
  border-color: rgba(22,163,74,.38);
  background: rgba(240,253,244,.55);
  box-shadow: none;
}
.choice:focus-visible{
  outline:none;
  border-color: rgba(245,158,11,.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,.18);
}
.choice.is-selected{
  border-color: rgba(22,163,74,.45);
  background: #f0fdf4;
  box-shadow: 0 0 0 4px rgba(22,163,74,.14);
}
.choice-ico{
  width:46px; height:46px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #f9fafb;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color: rgba(15,23,42,.86);
  box-shadow: none;
}
.choice-ico svg{width:22px; height:22px;}
.choice-body{display:block; min-width:0;}
.choice-title{font-weight:900; display:block;}
.choice-sub{display:block; color: var(--muted); font-size:.92rem; margin-top:2px;}
.choice.is-selected .choice-ico{
  border-color: rgba(22,163,74,.28);
  box-shadow: 0 0 0 3px var(--ring);
}

/* (Step 2) uses the same .choice card style as step 1 for consistency */

.hero{padding:34px 0 10px;}

/* Hero split (inspiration "abri piscine"): background image + texte à gauche + formulaire à droite */
.hero.hero-v2{
  position:relative;
  padding: 44px 0 26px;
  color: var(--text);
  overflow:hidden;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.hero.hero-v2 .container{position:relative; z-index:2;}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  opacity:.14;
  filter: saturate(1.05) contrast(1.02) blur(0.2px);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: transparent;
}
.hero-split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-split{grid-template-columns: 1fr; gap:18px;}
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: var(--radius);
  background: rgba(21,128,61,.08);
  border: 1px solid rgba(21,128,61,.18);
  font-weight:800;
  color: rgba(7,21,16,.90);
  margin-bottom:14px;
}
.hero-copy h1{
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}
.hero-copy h1::after{
  content:"";
  display:block;
  width: 74px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 14px;
}
.hero-sub{
  margin:0 0 16px;
  font-size: 1.06rem;
  color: rgba(7,21,16,.74);
}
.hero-points{
  list-style:none;
  padding:0;
  margin: 0 0 16px;
  display:grid;
  gap:10px;
}
.hero-point{display:flex; gap:10px; align-items:flex-start; color: rgba(7,21,16,.82); font-weight:700;}
.hero-check{
  width:18px;height:18px;border-radius:6px;
  background: rgba(21,128,61,.10);
  border:1px solid rgba(21,128,61,.20);
  box-shadow: 0 0 0 4px rgba(21,128,61,.08);
  flex:0 0 auto;
  margin-top:2px;
  position:relative;
}
.hero-check::after{
  content:"";
  position:absolute;
  left:5px; top:3px;
  width:5px; height:9px;
  border-right:2px solid rgba(7,21,16,.90);
  border-bottom:2px solid rgba(7,21,16,.90);
  transform: rotate(40deg);
}
.hero-badges .badges{margin-top:10px;}
.hero-v2 .badge{
  background: #ffffff;
  border-color: var(--border);
  color: rgba(7,21,16,.90);
}
.hero-note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(22,163,74,.18);
  background: rgba(22,163,74,.06);
  color: rgba(7,21,16,.82);
}
.hero-form{
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--text);
}

.hero.hero-v3{
  padding: 38px 0 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.h3-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:start;
  margin-top: 10px;
}
@media (max-width: 980px){.h3-grid{grid-template-columns:1fr;}}
.h3-title{
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.04;
  margin: 0 0 12px;
  letter-spacing: -0.7px;
}
.h3-sub{margin:0 0 14px; font-size:1.06rem; color: rgba(7,21,16,.74);}
.h3-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin: 10px 0 12px;}
.h3-media .hero-banner img{height: 320px;}
@media (max-width: 980px){.h3-media .hero-banner img{height: 220px;}}

.devis-slab{padding: 18px 0 10px; background: #ffffff;}
.devis-copy{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  padding: 18px 18px;
}
.devis-title{
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: 1.25rem;
}
.devis-points{display:grid; gap:10px; margin-top: 12px;}
.devis-point{display:flex; gap:10px; align-items:flex-start; color: rgba(7,21,16,.78); font-weight:700;}
.devis-dot{
  width:12px;height:12px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(22,163,74,.10);
  flex:0 0 auto;
  margin-top:4px;
}
.devis-mini{margin-top: 12px; color: var(--muted); font-size:.95rem;}
.devis-wrap{margin-top: 12px;}

.devis-full{
  width:100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.devis-full::before{
  content:"";
  display:block;
  height:10px;
  background: var(--accent);
}
.devis-head{
  padding: 14px 18px 0;
  background: #f0fdf4;
  border-bottom: 1px solid rgba(22,163,74,.18);
}
.devis-bandeau{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(22,163,74,.18);
  margin-bottom: 12px;
}
.devis-bandeau-title{
  font-weight: 950;
  letter-spacing: -0.2px;
}
.devis-bandeau-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
}
.db-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border: 1px solid rgba(22,163,74,.20);
  background: #f0fdf4;
  color: rgba(7,21,16,.88);
  font-weight: 850;
  font-size: .85rem;
}
.devis-head h2{
  margin: 0 0 6px;
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}
.devis-head .mini{margin: 0 0 12px;}
.devis-body{
  padding: 0 18px 18px;
}
.devis-form .ms{
  margin-top: 0;
}
.ms-top{
  padding: 12px 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0;
}
.ms-stepline{color: rgba(7,21,16,.70);}
.ms-step{background:#ffffff;}
.ms-step-panel{
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  padding: 14px 14px;
}
.ms-actions{
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

.devis-full .ms-back{
  background:#ffffff;
  border-color: rgba(17,24,39,.18);
  color: rgba(17,24,39,.88);
  font-weight: 900;
}
.devis-full .ms-back:hover{
  border-color: rgba(17,24,39,.30);
  box-shadow: 0 0 0 4px rgba(17,24,39,.10);
}
.devis-full .ms-next{
  background: var(--cta);
  border-color: rgba(245,158,11,.65);
  color: rgba(17,24,39,.92);
  font-weight: 950;
}
.devis-full .ms-next:hover{
  filter:none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(245,158,11,.22);
}
.devis-full .ms-next:focus-visible,
.devis-full .ms-back:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(245,158,11,.28);
}

.devis-full .btn{
  background: var(--cta);
  border: 1px solid rgba(245,158,11,.65);
  color: rgba(17,24,39,.92);
}
.devis-full .btn:hover{filter:none; transform: translateY(-1px); box-shadow: 0 0 0 4px rgba(245,158,11,.22);}

.hero-side{display:flex; flex-direction:column; gap:14px;}
.hero-banner{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  overflow:hidden;
}
.hero-banner img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
  background: #f9fafb;
}
.hero-form #devis{max-width:none; margin:0;}
.hero-form .card{border:0; box-shadow:none; background:transparent;}
.hero-form .card-pad{padding:18px;}
.hero-form a{color: var(--brand);}
.hero-form a:hover{text-decoration:underline;}

.hero-v2 .crumbs{color: var(--muted);}
.hero-v2 .crumbs a{color: var(--muted);}
.hero-v2 .crumbs a:hover{color: rgba(7,21,16,.92);}
.hero-media{
  margin-top:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  height: 240px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.hero-media:after{
  content:"";
  position:absolute; inset:-40% -20%;
  background: transparent;
  transform: rotate(10deg);
  pointer-events:none;
}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 0;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  border:1px solid var(--border);
  box-shadow: none;
}
.badge-ico{
  width:20px;height:20px;border-radius:8px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(21,128,61,.10);
  border:1px solid rgba(21,128,61,.18);
  color: rgba(7,21,16,.92);
  font-weight:950;
  flex:0 0 auto;
}

.certs{margin-top:14px;}
.certs-row{display:flex; flex-wrap:wrap; gap:10px;}
.cert-chip{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:10px 12px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
}
.cert-chip-k{font-weight:950; letter-spacing:.01em;}
.cert-chip-v{color: var(--muted); font-size:.88rem; font-weight:650;}
.certs-note{margin-top:10px; color: var(--muted); font-size:.92rem;}

.card{
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
#devis{max-width: 1120px; margin: 0 auto;}
.card-pad{padding:18px;}
.card h2{margin:0 0 10px; font-size:1.1rem;}
.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
@media (max-width: 720px){.grid-2{grid-template-columns:1fr;}}
.contact-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
@media (max-width: 980px){.contact-grid{grid-template-columns: 1fr;}}
.contact-k{color: var(--muted); font-size:.88rem; font-weight:700;}
.contact-v{margin-top:6px; font-weight:800;}
.cta-inline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: var(--radius);
  text-decoration:none;
  color:#fff;
  background: var(--accent);
  border: 1px solid rgba(22,163,74,.22);
  box-shadow: none;
}
.cta-inline:hover{transform: translateY(-1px);}
.input{
  display:flex; flex-direction:column; gap:6px;
}
.input label{font-size:.92rem; color: var(--muted);}
.input input,.input select,.input textarea{
  width:100%;
  padding:12px 12px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  outline:none;
}
.input input:focus,.input select:focus,.input textarea:focus{
  border-color: rgba(21,128,61,.35);
  box-shadow: 0 0 0 3px var(--ring);
}
.help{font-size:.85rem; color: var(--muted);}
.checkbox{display:flex; gap:10px; align-items:flex-start; margin-top:10px;}
.checkbox input{margin-top:4px;}
.btn{
  width:100%;
  display:inline-flex; justify-content:center; align-items:center; gap:10px;
  text-decoration:none;
  border:0;
  padding:13px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  border: 1px solid rgba(22,163,74,.22);
  color:#ffffff;
  font-weight:900;
  cursor:pointer;
  box-shadow: none;
}
.btn:hover{filter: brightness(.96); text-decoration:none;}
.btn:disabled{opacity:.6; cursor:not-allowed;}
.form-status{margin-top:10px; font-size:.92rem; color: var(--muted);}
.form-status[data-type="error"]{color: var(--danger);}
.form-status[data-type="ok"]{color: var(--ok);}
.section{padding:22px 0;}
.section h2{margin:0 0 12px; font-size:1.55rem; letter-spacing:-0.2px;}
.section h3{margin:16px 0 8px; font-size:1.1rem;}
.section p{color: var(--muted); margin: 0 0 10px;}
.section ul{margin: 0 0 10px; color: var(--muted); padding-left: 20px;}
.kpi{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
@media (max-width: 860px){.kpi{grid-template-columns:1fr;}}
.kpi .item{padding:16px;}
.kpi .num{font-size:1.35rem; font-weight:900;}
.kpi .txt{color: var(--muted); margin-top:6px;}
.list{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
@media (max-width: 980px){.list{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 640px){.list{grid-template-columns: 1fr;}}
.list a{
  display:flex; flex-direction:column; gap:4px;
  padding:16px; text-decoration:none;
}
.list a:hover{transform: translateY(-2px); box-shadow: 0 16px 30px rgba(18,31,53,.10);}
.list .title{font-weight:900;}
.list .meta{color: var(--muted); font-size:.95rem;}

.links-cols{
  column-count: var(--cols, 4);
  column-gap: 18px;
}

.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 980px){.steps{grid-template-columns: 1fr;}}
.step-card{
  position:relative;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  padding: 16px 16px 14px;
  overflow:hidden;
}
.step-card::before{
  content: attr(data-step);
  position:absolute;
  right: 14px;
  top: 12px;
  font-family: inherit;
  font-weight: 900;
  font-size: 1.05rem;
  color: rgba(7,21,16,.32);
}
.step-title{font-weight:950; font-size:1.05rem; padding-right:38px;}
.step-txt{margin-top:8px; color: var(--muted); font-size:.96rem; line-height:1.55;}
.steps-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; align-items:center;}

.bento{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top: 12px;
}
@media (max-width: 980px){.bento{grid-template-columns: 1fr;}}
.bento-tile{
  text-decoration:none;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background:#ffffff;
  box-shadow: none;
  padding: 16px 16px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  position:relative;
  overflow:hidden;
}
.bento-k{font-weight:900; letter-spacing:-0.2px; position:relative; z-index:1;}
.bento-v{color: var(--muted); font-weight:650; position:relative; z-index:1;}
.bento-more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color: rgba(7,21,16,.90);
  position:relative;
  z-index:1;
}
.bento-tile:hover{transform:none; box-shadow:none; border-color: rgba(22,163,74,.28);}
@media (max-width: 980px){.links-cols{column-count: 2;}}
@media (max-width: 640px){.links-cols{column-count: 1;}}
.col-link,.col-text{
  display:block;
  padding:7px 4px;
  break-inside:avoid;
  text-decoration:none;
  color: var(--muted);
}
.col-link:hover{color: var(--text); text-decoration:underline;}
.col-text{opacity:.85;}
.footer.footer-v2{
  margin-top: 26px;
  padding: 44px 0 26px;
  background: #ffffff;
  color: rgba(7,21,16,.86);
  border-top: 1px solid var(--border);
}
.footer.footer-v2 a{color: rgba(7,21,16,.86);}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){.footer-top{grid-template-columns: 1fr;}}
.footer-brand{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
}
.footer-brand-title{
  font-weight: 800;
  letter-spacing: -0.2px;
  font-size: 1.05rem;
}
.footer-brand-sub{margin-top:8px; color: var(--muted); line-height:1.55;}
.footer-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
.footer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration:none;
  font-weight: 800;
  background: var(--accent);
  border: 1px solid rgba(22,163,74,.22);
  color:#fff;
  box-shadow: none;
}
.footer-btn:hover{filter: brightness(.96);}
.footer-btn-ghost{
  background: rgba(21,128,61,.06);
  border: 1px solid rgba(21,128,61,.16);
  box-shadow: none;
  color: rgba(7,21,16,.90);
}
.footer-col{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: none;
}
.footer-title{font-weight:950; margin:0 0 10px; color: rgba(7,21,16,.92);}
.footer-links{display:flex; flex-wrap:wrap; gap:10px;}
.footer-link{
  text-decoration:none;
  padding:9px 12px;
  border-radius: var(--radius);
  border:1px solid rgba(21,128,61,.14);
  background: rgba(21,128,61,.06);
  color: rgba(7,21,16,.86);
  font-size:.92rem;
}
.footer-link:hover{transform: translateY(-1px); background: rgba(21,128,61,.08);}
.footer-contact{display:grid; gap:10px;}
.footer-contact-item{display:flex; flex-direction:column; gap:4px;}
.footer-contact-k{color: var(--muted); font-size:.88rem; font-weight:750;}
.footer-bottom{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display:flex;
  gap:12px;
  justify-content:space-between;
  flex-wrap:wrap;
  color: var(--muted);
}
.footer-small{font-size:.88rem; color: var(--muted);}

.providers-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){.providers-grid{grid-template-columns: 1fr;}}
.provider-card{
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
  padding: 14px 14px 12px;
}
.provider-name{font-weight:900;}
.provider-meta{color: var(--muted); margin-top:4px; font-size:.95rem;}
.provider-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px;}
.provider-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius: 999px;
  text-decoration:none;
  border:1px solid rgba(21,128,61,.18);
  background:#fff;
  color: var(--text);
  font-weight:700;
}
.provider-action:hover{box-shadow: 0 0 0 3px var(--ring);}
.provider-action:hover{transform: translateY(-1px);}
.providers-map-wrap{margin-top:14px;}
.providers-map{
  width:100%;
  height: 320px;
  border-radius: 18px;
  border:1px solid var(--border);
  overflow:hidden;
  background: rgba(255,255,255,.85);
}

.table-wrap{
  overflow:auto;
  border:2px solid rgba(17,24,39,.18);
  border-radius: 14px;
  background:#fff;
}
.price-table,.table{width:100%; border-collapse:separate; border-spacing:0; min-width:720px;}
.price-table th,.price-table td,.table th,.table td{
  padding:14px 16px;
  border-bottom:1px solid rgba(17,24,39,.14);
  border-right:1px solid rgba(17,24,39,.12);
  text-align:left;
  vertical-align:top;
  font-size:1rem;
  line-height:1.45;
  white-space:normal;
}
.price-table tr > *:last-child,
.table tr > *:last-child{border-right:none;}
.price-table th,.table th{
  font-weight:950;
  color: rgba(7,21,16,.92);
  background: rgba(22,163,74,.10);
  border-bottom:2px solid rgba(22,163,74,.22);
}
.price-table td.muted{color:var(--muted);}
.price-table tr:last-child td,.table tr:last-child td{border-bottom:none;}
.table tr:nth-child(even) td{background: rgba(22,163,74,.035);}
.price-table tr:nth-child(even) td{background: rgba(17,24,39,.018);}
.table caption{
  caption-side:top;
  padding:12px 16px;
  font-weight:950;
  color:var(--text);
  text-align:center;
}

.price-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top: 10px;
}
@media (max-width: 980px){.price-cards{grid-template-columns: 1fr;}}
.pcard{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: none;
  padding: 14px 14px;
}
.pcard-title{font-weight:950; font-size:1.02rem;}
.pcard-meta{margin-top:6px; color: var(--muted); font-size:.92rem; font-weight:650;}
.pcard-price{
  margin-top:10px;
  display:inline-flex;
  padding:10px 12px;
  border-radius: var(--radius);
  background: rgba(22,163,74,.06);
  border:1px solid rgba(22,163,74,.18);
  font-weight:1000;
}
.pcard-note{margin-top:10px; color: var(--muted); font-size:.93rem;}

.section-crumbs-bottom{padding-top:0;}
.crumbs{margin:12px 0 0; color: var(--muted); font-size:.95rem;}
.crumbs a{color: var(--muted); text-decoration:none;}
.crumbs a:hover{text-decoration:underline;}
.note{color: var(--muted); font-size:.96rem;}
.mini{font-size:.9rem; color: var(--muted);}
.callout{
  padding:14px 16px;
  border-radius: 16px;
  background: rgba(21,128,61,.06);
  border:1px solid rgba(21,128,61,.14);
}

.conv-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.conv-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: none;
  padding:16px 16px;
}
.conv-top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.conv-ico{
  width:54px;
  height:54px;
  border-radius: var(--radius);
  border: 1px solid rgba(21,128,61,.18);
  background: rgba(22,163,74,.08);
  color: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.conv-ico svg{width:28px; height:28px;}
.conv-meta{min-width:0;}
.conv-k{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.86rem;
  font-weight:900;
  letter-spacing:.02em;
  color: rgba(7,21,16,.92);
  background: rgba(22,163,74,.10);
  border:1px solid rgba(21,128,61,.18);
  padding:6px 10px;
  border-radius: var(--radius);
}
.conv-title{
  margin-top:8px;
  font-size:1.1rem;
  font-weight:1000;
  color: var(--text);
}
.conv-txt{
  margin-top:8px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}
@media (max-width: 980px){
  .conv-grid{grid-template-columns: 1fr; }
}

.vud-spinner-wrap{margin-top:14px;}
.vud-loading{color:var(--muted); font-size:.95rem; margin-bottom:10px;}
.vud-spinner{min-height:48px;}
