/* ============ Tokens ============ */
:root {
  --bg: #F4F8FC;
  --surface: #FFFFFF;
  --text: #123B57;
  --text-soft: #5B7387;
  --accent: #0B63C5;
  --accent-dark: #0A4E9B;
  --accent-soft: #E3EFFB;
  --line: #D6E4F2;
  --shadow-tint: 11, 99, 197;
  /* Accents de marque, repris du logo et des flyers Clim-Start */
  --brand-hot: #E1382B;
  --brand-cyan: #29ABE2;
  --brand-green: #6BBE45;
  --brand-orange: #F7941E;
  --brand-gold: #E0A030;
  --success: #16A34A;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ============ Reset ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3 { text-wrap: balance; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  padding: 16px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(244, 248, 252, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.bar-actions { display: flex; align-items: center; gap: 18px; }
.header-tel {
  display: none; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--text);
  transition: color .2s ease;
}
.header-tel svg { width: 16px; height: 16px; color: var(--accent); }
.header-tel:hover { color: var(--accent); }
@media (min-width: 620px) { .header-tel { display: inline-flex; } }
/* Sprite SVG de l'emblème : présent dans le DOM mais invisible et hors flux */
.logo-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
  text-decoration: none; color: var(--text);
}
.logo-mark { width: 36px; height: 36px; flex: none; display: block; }
.logo-text span { color: var(--accent); }
@media (min-width: 620px) { .logo-mark { width: 42px; height: 42px; } }

/* ============ Buttons & links ============ */
.btn {
  --gx: 50%; --gy: 50%;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-primary {
  color: #fff; background: var(--accent);
  box-shadow: 0 10px 24px -8px rgba(var(--shadow-tint), 0.55);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px circle at var(--gx) var(--gy), rgba(255,255,255,0.28), transparent 60%);
  opacity: 0; transition: opacity .2s ease;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(var(--shadow-tint), 0.65); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn svg { width: 16px; height: 16px; position: relative; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

.link-tel {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  text-decoration: none; border-bottom: 1.5px solid var(--line); padding-bottom: 2px;
  transition: border-color .2s ease;
}
.link-tel:hover { border-color: var(--accent); }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; padding: 90px 20px 60px; }
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  top: -180px; right: -160px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(var(--shadow-tint), 0.20) 0%, rgba(var(--shadow-tint), 0) 70%);
  animation: drift 14s ease-in-out infinite alternate;
}
.blob-2 {
  bottom: -200px; left: -160px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(225, 56, 43, 0.10) 0%, rgba(225, 56, 43, 0) 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 30px) scale(1.08); }
}
.hero-icons { position: absolute; inset: 0; pointer-events: none; }
.hero-icons svg { position: absolute; stroke: var(--accent); opacity: 0.12; }
.hero-icons svg:first-child { width: 80px; height: 80px; top: 30px; right: 90px; }
.hero-icons svg:last-child { width: 54px; height: 54px; bottom: 40px; right: 40px; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; width: 100%; }

.eyebrow-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.eyebrow-row .rule { width: 32px; height: 2px; background: #0B63C5; flex: none; }
.eyebrow-row .eyebrow-txt { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #0A4E9B; }

h1 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 18px; max-width: 19ch;
  color: #123B57;
}
h1 .hl { color: #0B63C5; }
.hero .lead {
  font-size: 17px; line-height: 1.6; color: #5B7387; max-width: 46ch; margin: 0 0 24px;
}
.hero .lead strong { color: var(--text); font-weight: 700; }

/* Points clés : pastille rouge de marque + libellé, la partie forte en gras foncé */
.hero-points { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.hero-points li { display: flex; align-items: center; gap: 12px; font-size: 16px; line-height: 1.4; color: var(--text-soft); }
.hero-points strong { color: var(--text); font-weight: 700; }
.point-icon {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--brand-hot); color: #fff;
  box-shadow: 0 8px 16px -8px rgba(225, 56, 43, 0.65);
}
.point-icon svg { width: 17px; height: 17px; }

/* Pastilles de spécialité au-dessus du titre, format compact. Le hero est clair,
   donc le contraste est inversé par rapport au modèle sombre : fond blanc, filet et icône cyan. */
.hero-chips { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px 6px 9px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid rgba(41, 171, 226, 0.45);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px; color: var(--text);
  box-shadow: 0 6px 16px -12px rgba(var(--shadow-tint), 0.5);
}
.hero-chip svg { width: 14px; height: 14px; flex: none; color: var(--brand-cyan); }

.link-tel-hero { font-size: 15px; color: #123B57; }
.link-tel-hero strong { color: var(--accent); font-family: var(--font-mono); font-size: 16px; letter-spacing: -0.02em; }

.lead-badge {
  position: absolute; top: -14px; right: 22px; background: var(--brand-hot); color: #fff;
  font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 8px 16px -6px rgba(225, 56, 43, 0.5);
}

@media (min-width: 860px) {
  .hero { padding: 76px 20px 70px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
}

/* ============ Sections ============ */
.section { padding: 56px 0; }
.eyebrow-h2 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-soft); margin: 0 0 24px;
}
.section-kicker {
  margin: 0 0 12px; color: var(--accent-dark); font-family: var(--font-head);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.section-title {
  margin: 0; font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12; letter-spacing: -0.025em;
}
.section-heading { display: grid; gap: 18px; margin-bottom: 30px; }
.section-heading > p { margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.65; max-width: 48ch; }
/* CTA de section : bouton plein (halo qui suit le curseur, hérité de .btn-primary)
   + flèche relais : l'une sort à droite pendant que l'autre entre par la gauche. */
.btn-cta { margin-top: 26px; padding: 15px 24px 15px 28px; font-size: 15px; }
.btn-arrow { position: relative; flex: none; display: block; width: 18px; height: 18px; overflow: hidden; }
.btn-arrow svg {
  position: absolute; top: 0; left: 0; width: 18px; height: 18px;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.btn-arrow svg + svg { transform: translateX(-115%); }
.btn-cta:hover .btn-arrow svg,
.btn-cta:focus-visible .btn-arrow svg { transform: translateX(115%); }
.btn-cta:hover .btn-arrow svg + svg,
.btn-cta:focus-visible .btn-arrow svg + svg { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .btn-arrow svg + svg { display: none; }
  .btn-cta:hover .btn-arrow svg, .btn-cta:focus-visible .btn-arrow svg { transform: none; }
}
@media (min-width: 800px) {
  .section-heading { grid-template-columns: 1.2fr .8fr; align-items: end; gap: 52px; margin-bottom: 36px; }
}

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .grid-3 { grid-template-columns: 1fr; } }

/* ============ Projection ============ */
.projection {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.projection-grid { display: grid; gap: 34px; align-items: center; }
.projection-media {
  display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 24px;
  background: var(--accent-soft); box-shadow: 0 26px 56px -30px rgba(var(--shadow-tint), 0.5);
}
.projection-media img { width: 100%; height: 100%; object-fit: cover; }
.projection-copy > p:not(.section-kicker) {
  margin: 18px 0 22px; color: var(--text-soft); font-size: 15.5px; line-height: 1.65;
}
.projection-points { list-style: none; display: grid; gap: 10px; margin: 0 0 24px; padding: 0; }
.projection-points li { position: relative; padding-left: 27px; font-size: 14px; font-weight: 600; }
.projection-points li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--accent-soft);
  box-shadow: inset 0 0 0 5px var(--accent-soft);
}
.projection-points li::after {
  content: ""; position: absolute; left: 5px; top: 6px; width: 6px; height: 3px;
  border-left: 2px solid var(--accent-dark); border-bottom: 2px solid var(--accent-dark); transform: rotate(-45deg);
}
@media (min-width: 860px) {
  .projection { padding: 76px 0; }
  .projection-grid { grid-template-columns: 1.06fr .94fr; gap: 58px; }
}

/* ============ Marques partenaires ============ */
.partners { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.partners-title {
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-soft); text-align: center; margin: 0 0 16px;
}
.partners-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px;
}
.partners-list li { display: flex; align-items: center; }
/* Logos officiels. Hauteurs ajustées une à une : les trois marques n'ont pas le même ratio */
.partners-list img { width: auto; height: 30px; opacity: .85; transition: opacity .2s ease; }
.partners-list img.logo-mitsubishi { height: 36px; }
.partners-list img.logo-gree { height: 26px; }
.partners-list li:hover img { opacity: 1; }
@media (max-width: 480px) {
  .partners-list { gap: 14px 28px; }
  .partners-list img { height: 24px; }
  .partners-list img.logo-mitsubishi { height: 28px; }
  .partners-list img.logo-gree { height: 20px; }
}

/* ============ Cards ============ */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px;
  transform: translateY(8px);
  transition: transform .5s ease, box-shadow .25s ease, border-color .25s ease;
}
.card.in { transform: translateY(0); }
.card:hover { box-shadow: 0 16px 32px -14px rgba(var(--shadow-tint), 0.28); border-color: transparent; transform: translateY(-4px); }
.chip {
  width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  transition: transform .3s ease;
}
.card:hover .chip { transform: scale(1.1) rotate(-4deg); }
.chip svg { width: 18px; height: 18px; color: var(--accent-dark); }
.card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.card p { font-size: 13.5px; line-height: 1.5; color: var(--text-soft); margin: 0; }
.chip-accent { background: var(--accent); }
.chip-accent svg { color: #fff; }

/* Pastilles thématiques, reprises du code couleur des flyers Clim-Start */
.chip-blue   { background: var(--accent); }
.chip-cyan   { background: var(--brand-cyan); }
.chip-green  { background: var(--brand-green); }
.chip-orange { background: var(--brand-orange); }
.chip-red    { background: var(--brand-hot); }
.chip-blue svg, .chip-cyan svg, .chip-green svg, .chip-orange svg, .chip-red svg { color: #fff; }

.card-blue:hover   { box-shadow: 0 16px 32px -14px rgba(11, 99, 197, 0.35); }
.card-cyan:hover   { box-shadow: 0 16px 32px -14px rgba(41, 171, 226, 0.38); }
.card-green:hover  { box-shadow: 0 16px 32px -14px rgba(107, 190, 69, 0.38); }
.card-orange:hover { box-shadow: 0 16px 32px -14px rgba(247, 148, 30, 0.38); }
.card-red:hover    { box-shadow: 0 16px 32px -14px rgba(225, 56, 43, 0.35); }

.tag-confirm {
  color: #9A6B00; background: #FFF4DA; border: 1px dashed #E8C989;
  padding: 1px 6px; border-radius: 6px; font-size: 0.92em;
}

/* ============ Réalisations ============ */
.realisations { padding-top: 72px; }
.work-grid { display: grid; gap: 16px; }
.work-card {
  position: relative; min-height: 285px; margin: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; background: #D6E4F2;
  box-shadow: 0 22px 46px -30px rgba(18, 59, 87, 0.42);
}
.work-card picture { display: block; width: 100%; height: 100%; }
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.work-card:nth-child(2) img { object-position: center 76%; }
.work-card:hover img { transform: scale(1.025); }
.work-card::after {
  content: ""; position: absolute; inset: 34% 0 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(12, 42, 61, 0.82));
}
.work-card figcaption {
  position: absolute; z-index: 1; inset: auto 20px 20px; display: grid; gap: 8px;
  color: #fff; text-shadow: 0 1px 18px rgba(0,0,0,.25);
}
.work-card figcaption strong {
  font-family: var(--font-head); font-size: clamp(16px, 2vw, 20px); line-height: 1.25;
}
.work-label {
  width: fit-content; padding: 6px 10px; border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-pill); background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.work-proof {
  display: flex; align-items: center; gap: 8px; margin: 18px 0 0;
  color: var(--text-soft); font-size: 12.5px;
}
.work-proof svg { width: 18px; height: 18px; flex: none; color: var(--accent); }
@media (min-width: 760px) {
  .work-grid {
    height: 680px; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .work-card-main { grid-row: 1 / span 2; }
}
@media (max-width: 759px) {
  .work-card { aspect-ratio: 4 / 3; min-height: 0; }
  .work-card-main { aspect-ratio: 4 / 5; }
}

/* ============ Zone ============ */
.zone { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.zone-text { font-size: 15.5px; line-height: 1.6; color: var(--text-soft); max-width: 62ch; margin: 0 0 14px; }
.zone-communes { margin-top: 22px; }
.zone-communes-label {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft);
  margin: 0 0 12px;
}
.commune-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.commune-list li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.commune-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-cyan); flex: none;
}
.commune-list li:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 8px 18px -12px rgba(var(--shadow-tint), 0.55);
}
.zone-communes-note { margin: 14px 0 0; font-size: 13px; }
@media (prefers-reduced-motion: reduce) { .commune-list li:hover { transform: none; } }
.zone-inner { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
.zone-title {
  margin: -8px 0 18px; font-family: var(--font-head); font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15; letter-spacing: -0.02em;
}
.zone-media {
  display: block; aspect-ratio: 1.91 / 1; overflow: hidden; border-radius: 20px;
  background: var(--accent-soft); box-shadow: 0 22px 44px -28px rgba(var(--shadow-tint), 0.5);
}
.zone-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 760px) {
  .zone-inner { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
}

/* ============ Reviews ============ */
.stars { color: var(--brand-gold); letter-spacing: 2px; font-size: 15px; }
.reviews { background: var(--surface); overflow: hidden; }
.reviews-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.kicker-rule {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 0 14px; color: var(--accent); font-family: var(--font-head);
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.kicker-rule::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.reviews-head .section-title { margin-bottom: 14px; }
.reviews-intro { margin: 0 auto; color: var(--text-soft); font-size: 15.5px; line-height: 1.65; max-width: 52ch; }
.google-score {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: 26px;
}
.google-score .g-logo { width: 26px; height: 26px; flex: none; }
.google-score .score { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--text); }
.google-score .stars { font-size: 19px; }
.google-score .count { font-size: 14.5px; color: var(--text-soft); }

.reviews-marquee { position: relative; }
.reviews-marquee::before,
.reviews-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }
.reviews-track {
  display: flex; gap: 20px; width: max-content; padding: 6px 0 10px;
  animation: reviews-scroll 46s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none !important; }
  .reviews-marquee { overflow-x: auto; }
}

.review-card {
  flex: 0 0 340px; margin: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px;
  box-shadow: 0 14px 30px -24px rgba(var(--shadow-tint), 0.5);
  display: flex; flex-direction: column; gap: 12px;
}
.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
}
.review-avatar.av-cyan  { background: var(--brand-cyan); }
.review-avatar.av-green { background: var(--brand-green); }
.review-avatar.av-red   { background: var(--brand-hot); }
.review-name { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--text); }
.review-date { display: block; font-size: 12.5px; color: var(--text-soft); margin-top: 2px; }
.review-card blockquote { margin: 0; }
.review-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-soft); }
.review-source {
  display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px;
  font-size: 12.5px; color: var(--text-soft);
}
.review-source svg { width: 15px; height: 15px; flex: none; }
.google-cta {
  margin-top: 34px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 22px;
  padding: 26px 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px;
  box-shadow: 0 18px 40px -32px rgba(18, 59, 87, 0.5);
}
.g-logo-lg { width: 48px; height: 48px; flex: none; }
.google-cta-copy { flex: 1 1 260px; }
.google-cta-copy h3 {
  margin: 0 0 6px; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px); color: var(--text);
}
.google-cta-copy p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--text-soft); max-width: 38ch; }
.google-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-grad {
  background: linear-gradient(135deg, #0A4E9B 0%, #1B79D6 100%);
}
.btn-outline {
  background: var(--surface); color: var(--accent-dark);
  border: 1.5px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
}
.btn-outline:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ============ FAQ / Accordion ============ */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item h3 { margin: 0; }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 4px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.acc-trigger::after {
  content: "+"; font-size: 20px; font-weight: 400; color: var(--accent); flex: none;
  transition: transform .25s ease;
}
.acc-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc-panel {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.acc-panel p { margin: 0 4px 18px; font-size: 14.5px; line-height: 1.6; color: var(--text-soft); max-width: 65ch; }

/* ============ Contact / Devis ============ */
.devis { background: var(--accent-soft); }
.contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 28px; } }

.contact-card {
  background: linear-gradient(160deg, #123B57 0%, #0D2A3D 100%);
  color: #EAF2F9; border-radius: 22px; padding: 32px 30px;
  box-shadow: 0 26px 50px -30px rgba(18, 59, 87, 0.65);
}
.contact-card h2 {
  margin: 0 0 12px; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px); color: #fff;
}
.contact-intro { margin: 0 0 26px; font-size: 14.5px; line-height: 1.6; color: #A9C4D6; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-icon {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  background: rgba(41, 171, 226, 0.16); color: var(--brand-cyan);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 19px; height: 19px; }
.contact-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #8FB0C6; margin-bottom: 3px;
}
.contact-value {
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #fff;
  text-decoration: none;
}
a.contact-value:hover { color: var(--brand-cyan); }
.contact-row .tag-confirm {
  display: inline-block; font-weight: 600; font-size: 13px;
  color: #3A2600; background: #FFE6A8; border-color: #D8B45E;
}

/* Le .wizard porte désormais sa propre carte : le conteneur ne doit plus en dessiner une
   seconde, il s'efface et laisse le formulaire devenir directement l'enfant de la grille. */
.form-card { display: contents; }
.req { color: var(--brand-hot); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; }
.field .optional { font-weight: 400; color: var(--text-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  min-height: 44px;
}
.field textarea { min-height: 100px; resize: vertical; }
/* Placé après .field : même spécificité, donc c'est l'ordre qui décide. */
.consent { flex-direction: row; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; height: 18px; min-height: 0; flex: none; margin-top: 2px; accent-color: var(--accent); }
.consent label { font-size: 13px; font-weight: 400; line-height: 1.5; color: var(--text-soft); }
.was-validated .field input:invalid,
.was-validated .field select:invalid { border-color: #DC2626; }
.form-success {
  margin-top: 12px; color: var(--success); font-weight: 600; font-size: 14px;
}

/* ============ Formulaire en 3 étapes (hero + section devis) ============ */
.wizard {
  position: relative; background: var(--surface); border-radius: 22px;
  padding: 28px 24px; border: 1px solid var(--line);
  box-shadow: 0 30px 60px -28px rgba(var(--shadow-tint), 0.42);
}
@media (min-width: 560px) { .wizard { padding: 32px 30px; } }
.wizard-eyebrow {
  margin: 0 0 20px; text-align: center;
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-hot);
}

/* --- Fil des étapes --- */
.wizard-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  list-style: none; margin: 0 0 26px; padding: 0;
}
.wizard-step { position: relative; display: grid; justify-items: center; gap: 8px; }
/* trait de liaison, tiré vers l'étape suivante */
.wizard-step:not(:last-child)::after {
  content: ""; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px;
  background: var(--line); z-index: 0;
}
.wizard-step.is-done:not(:last-child)::after { background: var(--accent); }
.wizard-bullet {
  position: relative; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 2px solid var(--line); color: var(--text-soft);
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  transition: background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.wizard-step-label { font-size: 12.5px; color: var(--text-soft); font-weight: 600; }
.wizard-step.is-current .wizard-bullet {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 0 0 5px rgba(var(--shadow-tint), 0.14);
}
.wizard-step.is-current .wizard-step-label { color: var(--text); }
.wizard-step.is-done .wizard-bullet { background: var(--accent); border-color: var(--accent); color: #fff; }
.wizard-step.is-done .wizard-bullet::after {
  content: ""; position: absolute; inset: 0;
  background: var(--accent); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L19 7'/%3E%3C/svg%3E") center / 18px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L19 7'/%3E%3C/svg%3E") center / 18px no-repeat;
  background: #fff;
}

/* --- Panneaux --- */
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: wizard-in .35s cubic-bezier(.2,.8,.2,1) both; }
@keyframes wizard-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.wizard-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin: 0 0 6px; color: var(--text); }
.wizard-sub { font-size: 14px; color: var(--text-soft); margin: 0 0 18px; line-height: 1.55; }

/* --- Cartes de choix --- */
.choice-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.choice-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 460px) { .choice-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.choice {
  position: relative; display: grid; justify-items: center; gap: 10px;
  padding: 20px 12px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: #F7FAFE; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.choice:hover { border-color: var(--accent); background: var(--surface); transform: translateY(-2px); box-shadow: 0 12px 24px -16px rgba(var(--shadow-tint), 0.6); }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-icon { display: grid; place-items: center; width: 26px; height: 26px; color: var(--accent); }
.choice-icon svg { width: 26px; height: 26px; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.choice:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }

/* --- Étape 3 --- */
.wizard-fields { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .wizard-fields { grid-template-columns: 1fr 1fr; } }
.wizard-fields .field-full { grid-column: 1 / -1; }
.wizard-fields textarea { min-height: 78px; }
.opt { font-weight: 400; color: var(--text-soft); font-size: 0.92em; }
.wizard .consent { margin-top: 14px; }
.wizard-actions { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.wizard-submit { flex: 1; justify-content: center; }
.wizard-back {
  font: inherit; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  background: none; border: 0; color: var(--text-soft); cursor: pointer;
  padding: 10px 2px; margin-top: 16px; text-decoration: underline; text-underline-offset: 4px;
}
.wizard-actions .wizard-back { margin-top: 0; flex: none; }
.wizard-back:hover { color: var(--accent); }
.wizard-success { margin: 16px 0 0; color: var(--success); font-weight: 600; font-size: 14px; text-align: center; }
.wizard-error { margin: 16px 0 0; color: var(--brand-hot); font-weight: 600; font-size: 14px; text-align: center; }
.wizard-error a { color: inherit; }
.wizard.is-sending .wizard-submit { opacity: .6; pointer-events: none; }

/* --- Pied de carte --- */
.wizard-rgpd { margin: 20px 0 0; font-size: 12px; line-height: 1.5; color: var(--text-soft); text-align: center; }
.wizard-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  list-style: none; margin: 14px 0 0; padding: 0;
}
.wizard-trust li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.wizard-trust svg { width: 15px; height: 15px; flex: none; color: var(--brand-green); }
.wizard-call {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  text-align: center; font-size: 13.5px; color: var(--text-soft);
}
.wizard-call a { font-family: var(--font-head); font-weight: 800; color: var(--accent-dark); text-decoration: none; }
.wizard-call a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .wizard-panel.is-active { animation: none; }
  .choice:hover { transform: none; }
}

/* ============ Footer ============ */
.site-footer { background: var(--text); color: #EAF2F9; padding: 48px 0 20px; }
.footer-inner { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-inner .logo { color: #fff; font-size: 20px; }
.footer-inner .logo-text span { color: var(--brand-cyan); }
.logo-footer .logo-mark { width: 48px; height: 48px; }
.footer-tagline { color: #9FB9CC; font-size: 13.5px; margin-top: 8px; }
.footer-col h3 { font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: #9FB9CC; margin: 0 0 10px; }
.footer-col p, .footer-col a { font-size: 14px; color: #EAF2F9; }
/* Le badge « à confirmer » garde son fond crème : il lui faut son texte sombre */
.footer-col p.tag-confirm, .footer-legal .tag-confirm { color: #3A2600; background: #FFE6A8; border-color: #D8B45E; }
.footer-legal a { color: #C9DAE8; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: #fff; }
.footer-col a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12.5px; color: #7793A8; }
