/* ===================================================================
   SOLARIS SUD — Feuille de style principale
   Reconstruction HTML/CSS du site (ex-WordPress/Elementor)
   Couleurs de marque : #16394A (bleu pétrole) + blanc
   Polices : Montserrat (titres + corps), Roboto (accents)
   =================================================================== */

/* ---------- Variables ---------- */
:root {
  --navy:        #16394A;
  --navy-dark:   #0f2a38;
  --navy-light:  #1d4f68;
  --accent:      #f4a93b;   /* touche solaire pour les éléments mis en avant */
  --accent-ink:  #c17a12;   /* orange plus foncé, lisible pour le texte sur fond clair */
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-alt:      #f4f7f8;
  --text:        #1c2b33;
  --muted:       #5c6f78;
  --border:      #e2e8ea;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 14px 40px rgba(22, 57, 74, .10);
  --shadow-sm:   0 6px 18px rgba(22, 57, 74, .08);
  --maxw:        1180px;
  --gutter:      24px;
  --header-h:    84px;
  --font:        'Montserrat', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p  { color: var(--muted); }
strong { color: var(--text); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #dce6ea; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9cad2; }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(244, 169, 59, .16);
  padding: 7px 16px;
  border-radius: 999px;
}
.section--navy .eyebrow { color: #cfe2ea; background: rgba(255, 255, 255, .1); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--navy-dark); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244, 169, 59, .4); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }

/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
/* Le header est plus large que le contenu pour aérer le menu */
.site-header > .container { max-width: 1380px; }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 52px; width: auto; }
.nav__logo-text { font-weight: 800; color: var(--navy); font-size: 1.25rem; letter-spacing: .02em; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > li { position: relative; }
.nav__link {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active { color: var(--navy); background: var(--bg-alt); }

/* Sous-menu */
.has-sub > .nav__link::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .6;
}
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-sub:hover .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .92rem; font-weight: 600; }
.nav__sub a:hover { background: var(--bg-alt); color: var(--navy); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--navy); font-size: .98rem; white-space: nowrap; }
.nav__phone svg { width: 20px; height: 20px; fill: var(--navy); }

/* Burger */
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--bg-alt); }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 42, 56, .82), rgba(15, 42, 56, .72)), center/cover no-repeat;
  text-align: center;
}
.hero__inner { max-width: 880px; margin-inline: auto; padding-block: 90px; }
.hero h1 { color: #fff; margin-bottom: 8px; }
.hero__tag { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 500; color: #e7eff2; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Bandeau de réassurance sous le hero */
.trust-bar { background: var(--navy-dark); color: #cfdde4; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.trust-bar__item { display: flex; align-items: center; gap: 12px; justify-content: center; font-weight: 600; font-size: .95rem; }
.trust-bar__item svg { width: 26px; height: 26px; stroke: var(--accent); flex-shrink: 0; }

/* ===================================================================
   SERVICES (cartes)
   =================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__img { aspect-ratio: 16/11; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }
.service-card h3 { margin-bottom: 16px; }
.service-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; align-items: center; }
.service-card__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); font-size: .96rem; }
.service-card__list li::before {
  content: "";
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}
.service-card .btn { margin-top: auto; align-self: center; }

/* ===================================================================
   LES ÉTAPES
   =================================================================== */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { font-size: .95rem; }

/* ===================================================================
   NOTRE HISTOIRE
   =================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.about__badge {
  position: absolute; left: -22px; bottom: -22px;
  background: var(--navy); color: #fff;
  padding: 22px 26px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__badge strong { display: block; color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about__badge span { font-size: .9rem; color: #b9cad2; }
.about h2 { margin-bottom: 20px; }
.about p { margin-bottom: 18px; }
.about__values { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.about__values span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ===================================================================
   CERTIFICATIONS
   =================================================================== */
.certs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.cert-card:hover { transform: translateY(-5px); }
.cert-card img { height: 110px; width: auto; margin: 0 auto 22px; object-fit: contain; }
.cert-card h3 { margin-bottom: 12px; }
.cert-card p { font-size: .95rem; }

/* ===================================================================
   TÉMOIGNAGES (Avis Google)
   =================================================================== */
.reviews__head { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.reviews__score { display: flex; align-items: center; gap: 16px; }
.reviews__score .num { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--muted); font-size: .92rem; }
.google-badge svg { width: 22px; height: 22px; }
.stars { color: #fbbc05; letter-spacing: 2px; font-size: 1.1rem; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__top { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.review__who { flex: 1; }
.review__name { font-weight: 700; color: var(--text); font-size: .98rem; }
.review__date { font-size: .82rem; color: var(--muted); }
.review__top .gicon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.6 20.5H42V20H24v8h11.3C33.7 32.9 29.3 36 24 36c-6.6 0-12-5.4-12-12s5.4-12 12-12c3.1 0 5.9 1.2 8 3.1l5.7-5.7C34.6 6.1 29.6 4 24 4 12.9 4 4 12.9 4 24s8.9 20 20 20 20-8.9 20-20c0-1.3-.1-2.3-.4-3.5z'/%3E%3Cpath fill='%23FF3D00' d='m6.3 14.7 6.6 4.8C14.7 16 19 13 24 13c3.1 0 5.9 1.2 8 3.1l5.7-5.7C34.6 6.1 29.6 4 24 4 16.3 4 9.7 8.3 6.3 14.7z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.2 0 9.9-2 13.4-5.2l-6.2-5.2C29.2 35.1 26.7 36 24 36c-5.3 0-9.7-3.1-11.3-7.6l-6.5 5C9.5 39.6 16.2 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.6 20.5H42V20H24v8h11.3c-.8 2.2-2.2 4.1-4.1 5.6l6.2 5.2C41 35.7 44 30.3 44 24c0-1.3-.1-2.3-.4-3.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.review__text { font-size: .94rem; color: var(--muted); }
.review.is-hidden { display: none; }
.reviews__more { text-align: center; margin-top: 40px; }

/* Calendly */
.calendly-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 700px;
}
.calendly-embed iframe { display: block; width: 100%; min-height: 700px; border: 0; }

/* ===================================================================
   NOS PROJETS (galerie à onglets)
   =================================================================== */
.tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  font-weight: 700;
  font-size: .96rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  transition: background .2s, color .2s, border-color .2s;
}
.tab-btn:hover { border-color: var(--navy); }
.tab-btn.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--navy);
}
.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 56, .92));
  color: #fff;
  padding: 40px 18px 16px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ===================================================================
   CTA "Prêt à vous lancer ?"
   =================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 28px; }
.cta-band__links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background .2s, transform .2s;
}
.cta-pill:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }
.cta-pill svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--navy-dark); color: #aebfc7; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { height: 88px; margin-bottom: 18px; }
.footer__brand p { color: #9fb2bb; font-size: .92rem; max-width: 280px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: #aebfc7; font-size: .93rem; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: .93rem; color: #aebfc7; }
.footer__contact svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.footer__social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; fill: #fff; }
.footer__bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center; font-size: .87rem; color: #8ba0a9;
}

/* ===================================================================
   PAGES SERVICES — En-tête de page, tarifs, avantages, FAQ
   =================================================================== */
.page-hero {
  background: linear-gradient(180deg, rgba(15, 42, 56, .85), rgba(15, 42, 56, .78)), var(--navy) center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px);
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb { color: #b9cad2; font-size: .9rem; margin-top: 16px; }
.page-hero .breadcrumb a:hover { color: #fff; }

/* Cartes de tarifs */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.is-featured { border: 2px solid var(--navy); position: relative; }
.price-card.is-featured::before {
  content: "Le plus choisi";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy-dark);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card__kw { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.price-card__sub { font-size: .92rem; color: var(--muted); margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.price-card__feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price-card__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text); font-weight: 500; }
.price-card__feats li::before {
  content: "";
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
}
/* Points forts mis en avant dans la liste de prix : « + » vert et texte en gras */
.price-card__feats li.feat-plus { color: #1f9d55; font-weight: 700; }
.price-card__feats li.feat-plus::before {
  content: "+";
  background: none;
  -webkit-mask: none; mask: none;
  color: #1f9d55;
  font-size: 1.3rem; font-weight: 800; line-height: .85;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0;
}
/* Encart "Toutes nos clims incluent" (page climatisation v2) */
.clim-inclus {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(30px, 4vw, 48px);
  max-width: 920px; margin: 0 auto;
}
.clim-inclus h3 { text-align: center; font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 26px; }
.clim-inclus ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 44px; padding: 0; margin: 0; }
.clim-inclus li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.05rem; color: var(--text); font-weight: 500; }
.clim-inclus li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--navy); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/14px no-repeat;
}
.clim-inclus li.feat-plus { color: #1f9d55; font-weight: 700; }
.clim-inclus li.feat-plus::before {
  content: "+"; background: none; -webkit-mask: none; mask: none; border-radius: 0;
  color: #1f9d55; font-size: 1.45rem; font-weight: 800; line-height: .8;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 560px) { .clim-inclus ul { grid-template-columns: 1fr; } }

.price-card__price { margin-top: auto; margin-bottom: 22px; }
.price-card__price small { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price-card__price strong { font-size: 2.1rem; font-weight: 800; color: var(--navy); }
.price-card .btn { width: 100%; }

/* Avantages */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit__ico {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(244, 169, 59, .16);
  display: grid; place-items: center;
}
.benefit__ico svg { width: 26px; height: 26px; stroke: var(--accent-ink); fill: none; }
.benefit h3 { font-size: 1.12rem; margin-bottom: 0; }

/* Avantages détaillés (texte long — page entretien) */
.benefit-long { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-long article {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.benefit-long h3 { font-size: 1.25rem; margin-bottom: 14px; }
.benefit-long p { font-size: .94rem; margin-bottom: 16px; }
.benefit-long .btn { margin-top: 4px; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-weight: 700; color: var(--navy); font-size: 1.02rem;
}
.faq__q::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--navy-light); transition: transform .25s;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; font-size: .95rem; }

/* Page entretien — réservation */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.booking__box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 34px; box-shadow: var(--shadow); text-align: center;
}
.booking__box h3 { margin-bottom: 12px; }
.booking__box p { margin-bottom: 24px; }
.entretien-price { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin-inline: auto; }
.entretien-price .price-card__big { font-size: 2.6rem; font-weight: 800; color: var(--navy); }

/* Rangées "avantage" alternées (média + texte) */
.feature-rows { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 84px); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row__text h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 16px; }
.feature-row__text p { margin-bottom: 16px; font-size: .96rem; }
.feature-row__text .btn { margin-top: 4px; }

/* Deux images Avant / Après côte à côte */
.ba-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-duo figure { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-duo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.ba-duo figcaption {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(15, 42, 56, .8); color: #fff;
}

/* Vidéo carrée 1:1 */
.media-video {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy-dark);
}
.media-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-video__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 13px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(15, 42, 56, .78); color: #fff;
}
/* Gros bouton play au centre */
.media-video__play {
  position: absolute; inset: 0; margin: auto;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .35);
  transition: transform .2s ease, background .2s ease, opacity .25s ease, visibility .25s;
  z-index: 3;
}
.media-video__play svg { width: 40px; height: 40px; fill: var(--navy-dark); margin-left: 5px; }
.media-video__play:hover { transform: scale(1.08); background: #f7b74f; }
.media-video.is-playing .media-video__play { opacity: 0; visibility: hidden; pointer-events: none; }

/* Checklist "En résumé" */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; max-width: 860px; margin: 0 auto; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; font-weight: 600; color: var(--text); font-size: 1.05rem; }
.checklist li::before {
  content: ""; width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
  background: var(--navy); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/15px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/15px no-repeat;
}
.section--navy .checklist li { color: #e2ebef; }
.section--navy .checklist li::before { background: var(--accent); }

/* CTA inline (bandeau de renvoi entre pages) — centré */
.cta-inline {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px; background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow);
  max-width: 760px; margin-inline: auto;
}
.cta-inline__text h3 { color: #fff; font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-bottom: 12px; }
.cta-inline__text p { color: #b9cad2; margin: 0; }

/* ===================================================================
   MENTIONS LÉGALES
   =================================================================== */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 14px; font-size: .98rem; color: var(--text); }
.legal p .muted { color: var(--muted); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .reviews__grid, .gallery, .benefit-long, .certs__grid, .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav__cta .btn { display: none; }            /* on masque le bouton "Contactez-nous", on garde le téléphone */
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px;
    transform: translateY(-120%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__link { padding: 14px 16px; font-size: 1rem; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; }
  .has-sub > .nav__link::after { float: right; }
}

@media (max-width: 760px) {
  .services__grid, .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__badge { left: 16px; bottom: -18px; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .booking { grid-template-columns: 1fr; }
  .entretien-price { grid-template-columns: 1fr; max-width: 420px; }
  .reviews__head { justify-content: center; text-align: center; }
  .feature-row { grid-template-columns: 1fr; gap: 26px; }
  .feature-row:nth-child(even) .feature-row__media { order: -1; }
  .checklist { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 560px) {
  .reviews__grid, .gallery, .certs__grid, .benefits__grid, .benefit-long, .steps__grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .nav__logo-text { display: none; }          /* on ne garde que le logo sur petit écran */
  .nav__logo img { height: 46px; }
  .nav__phone { font-size: .92rem; gap: 7px; }
}
