:root {
  --orange: #df5f12;
  --orange2: #f07a2b;
  --dark: #242424;
  --ink: #242424;
  --muted: #606060;
  --line: #eadfd5;
  --bg: #fbf8f4;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.07);
  --font-main: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 10px;
  z-index: 999;
}
.topbar {
  background: #242424;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 7px 14px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  max-width: var(--max);
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  display: block;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.menu {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 800;
}
.menu a:not(.btn):hover {
  color: var(--orange);
}
.mobile-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 900;
  border: 2px solid var(--dark);
  transition: 0.18s;
  white-space: normal;
  line-height: 1.18;
}
.btn.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.btn.secondary {
  background: #fff;
  color: #222;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.12);
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 50px 20px;
}
.section.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}
.section.tight {
  padding-top: 34px;
  padding-bottom: 42px;
}
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 950;
  margin: 0 0 10px;
  font-size: 13px;
}
.lead {
  font-size: 18px;
  color: #4f4f4f;
}
.muted {
  color: #666;
}
.section-title {
  max-width: 900px;
  margin: 0 0 30px;
}
.section-title h1,
.section-title h2,
.title-block h1,
.title-block h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.section-title.center,
.title-block.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.big-letter {
  display: none !important;
}
.hero {
  position: relative;
  overflow: hidden;
  background: #202020;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-toiture-premium.webp") center right/cover
    no-repeat;
  opacity: 0.58;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.58) 44%,
    rgba(0, 0, 0, 0.2) 76%,
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: auto;
  min-height: 320px;
  padding: 42px 20px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 670px;
}
.hero p {
  font-size: clamp(16px, 1.35vw, 19px);
  max-width: 700px;
  margin: 0 0 24px;
  color: #fff;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.prestations-current-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.prestation-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: 0.18s;
}
.prestation-tile img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  background: #f9f6f2;
  border-bottom: 1px solid var(--line);
}
.prestation-tile span {
  font-size: 20px;
  font-weight: 900;
  margin: 15px 16px 4px;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.prestation-tile p {
  margin: 0 16px 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.42;
}
.prestation-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}
.map-card,
.reviews-wide,
.service-card,
.cta,
.notice,
.download-group,
.legal-card,
.booking,
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.map-card-wide {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.map-card h2,
.reviews-wide h2,
.service-card h2,
.download-group h2,
.cta h2 {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.map-card p,
.reviews-wide p {
  font-size: 17px;
}
.map-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}
.map-note {
  background: #fbf8f4;
  border: 1px solid #eadfd5;
  border-radius: 18px;
  padding: 16px;
  color: #4f4f4f;
}
.map-note.small {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
}
.google-map-embed {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eadfd5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #f7f3ef;
}
.google-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.18) sepia(0.1) saturate(0.85) hue-rotate(345deg);
}
.reviews-wide {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 26px;
  align-items: center;
}
.reviews-wide .google-widget-box {
  min-height: 260px;
  width: 100%;
  display: block;
}
.external-consent-placeholder,
.instagram-consent-placeholder {
  background: #fbf8f4;
  border: 1px solid #eadfd5;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}
.external-widget-frame {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.elfsight-widget-loaded {
  width: 100%;
  min-height: 240px;
}
.stars,
.review-fallback,
.google-widget-ready {
  display: none !important;
}
.social-feature {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 38px 42px;
  background:
    linear-gradient(110deg, rgba(31, 31, 31, 0.88), rgba(31, 31, 31, 0.72)),
    url("../img/social-bg-premium.webp") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.social-feature h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
  max-width: 780px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.social-feature p:not(.eyebrow) {
  max-width: 680px;
  color: #f2f2f2;
  margin-top: 0;
  font-size: 17px;
}
.social-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.social-card-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: #202020;
  border-radius: 999px;
  padding: 12px 17px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.social-card-row a:before {
  content: "•";
  color: var(--orange);
  font-size: 22px;
  line-height: 0;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36)), #4a4a4a;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero .wrap {
  max-width: var(--max);
  margin: auto;
  padding: 48px 20px;
}
.breadcrumbs {
  opacity: 0.9;
  margin: 0 0 10px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.page-hero p {
  max-width: 760px;
  font-size: 18px;
}
.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.checklist {
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}
.checklist li {
  padding: 9px 0 9px 34px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-weight: 900;
  line-height: 23px;
}
.side-image,
.service-visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7f7f7;
}
.side-image img,
.service-visual-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f7f3ee;
}
.service-visual-card figcaption {
  padding: 13px 16px;
  background: #fff;
  color: #555;
  font-size: 14px;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tag {
  display: inline-block;
  color: #fff;
  background: var(--dark);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
}
.download-groups {
  display: grid;
  gap: 28px;
}
.download-group {
  background: linear-gradient(180deg, #fff, #fbf8f4);
}
.download-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 20px;
}
.legal-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.download-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.download-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #f7f3ee;
  border-bottom: 1px solid var(--line);
}
.download-card div {
  padding: 17px;
}
.download-card h3 {
  font-size: 19px;
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 900;
}
.download-card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 14px;
}
.download-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.service-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  border-radius: 22px;
  padding: 18px;
  z-index: 100;
  display: none;
  max-width: 760px;
  margin: auto;
  font-size: 14px;
}
.cookie-banner.show {
  display: block;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-panel {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f6f3ef;
}
.cookie-panel.open {
  display: block;
}
.cookie-banner .legal {
  color: #555;
  margin: 12px 0 0;
}
.cookie-banner .legal a {
  color: inherit;
  text-decoration: underline;
}
.site-footer {
  background: #252525;
  color: #fff;
  margin-top: 36px;
}
.site-footer .wrap {
  max-width: var(--max);
  margin: auto;
  padding: 34px 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}
.site-footer a {
  text-decoration: underline;
}
.legal {
  font-size: 13px;
  color: #ddd;
}
.cta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}
@media (max-width: 1050px) {
  .menu {
    gap: 10px;
    font-size: 14px;
  }
  .prestations-current-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-feature {
    grid-template-columns: 1fr;
  }
  .social-feature .btn {
    justify-self: start;
  }
  .review-widget-shell,
  .reviews-wide,
  .map-card-wide {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .service-layout,
  .booking-grid,
  .download-list,
  .site-footer .wrap,
  .split,
  .grid.cards,
  .location-review-band {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .cta {
    display: block;
  }
  .cta .btn {
    margin-top: 14px;
  }
  .hero .wrap {
    min-height: 300px;
    padding: 38px 18px;
  }
  .hero::before {
    opacity: 0.38;
    background-position: center;
  }
  .download-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-download-grid {
    grid-template-columns: 1fr;
  }
  .google-map-embed {
    height: 280px;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .prestations-current-grid,
  .download-grid-clean {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 38px 16px;
  }
  .nav {
    padding: 9px 16px;
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    font-size: 17px;
  }
  .download-item {
    display: block;
  }
  .download-item .btn {
    margin-top: 14px;
    width: 100%;
  }
  .hero .wrap {
    min-height: 290px;
    padding: 32px 18px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .page-hero .wrap {
    padding: 38px 16px;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .service-card,
  .cta,
  .notice,
  .download-group,
  .legal-card,
  .map-card,
  .reviews-wide {
    padding: 21px;
  }
  .social-feature {
    padding: 24px;
  }
  .social-feature h2 {
    font-size: 29px;
  }
  .social-card-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .prestation-tile span {
    font-size: 19px;
  }
  .google-map-embed {
    height: 245px;
  }
}

/* --- Contrôle final de mise en page --- */
.service-visual-card img {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block;
  background: #f7f3ee;
}
.service-visual-card {
  background: #f7f3ee;
}
.download-card,
.service-card,
.map-card,
.reviews-wide,
.cta,
.notice,
.legal-card,
.booking {
  min-width: 0;
}
.download-card h3,
.service-card h2,
.service-card h1,
.page-hero h1,
.hero h1,
.section h2 {
  overflow-wrap: break-word;
  hyphens: auto;
}
.btn {
  white-space: normal;
  text-align: center;
}
.reviews-wide .google-widget-box {
  min-height: 280px;
}
.external-consent-placeholder {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 760px) {
  .service-visual-card img {
    max-height: none;
  }
  .reviews-wide .google-widget-box {
    min-height: 230px;
  }
  .external-consent-placeholder {
    min-height: 150px;
  }
}

/* Correctif demandé : masquer les liens de marquage Elfsight quand ils sont injectés dans le DOM de la page. */
.google-widget-box a[href*="elfsight"],
.google-widget-box [class*="Branding"],
.google-widget-box [class*="branding"],
.google-widget-box [class*="watermark"],
.google-widget-box [class*="Watermark"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* --- Page téléchargements harmonisée avec la trame prestations --- */
.downloads-page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45)),
    url("../img/hero-toiture-premium.webp") center/cover no-repeat;
}
.downloads-section {
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
}
.download-page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.download-intro-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 7px solid var(--orange);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}
.download-intro-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -0.035em;
  max-width: 850px;
}
.download-intro-card p:not(.eyebrow) {
  margin: 0;
  color: #555;
  font-size: 17px;
  max-width: 850px;
}
.download-category {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}
.download-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.download-category-head h2 {
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.download-category-head p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #5c5c5c;
  font-size: 16px;
}
.download-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.download-prestation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.download-premium-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.download-premium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.13);
  border-color: #dfcab9;
}
.download-card-media {
  display: block;
  background: #f7f3ef;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.download-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  background: #f7f3ef;
}
.legal-doc-card .download-card-media img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.download-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.download-tag {
  align-self: flex-start;
  margin: 0 0 2px;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.1em;
}
.download-card-body h3 {
  font-size: 20px;
  line-height: 1.13;
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.015em;
}
.download-card-body p:not(.download-tag) {
  color: #565656;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 8px;
}
.download-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  border-color: #222;
  background: #fff;
  color: #222;
  padding: 11px 14px;
  font-size: 14px;
}
.download-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.legal-doc-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 230px;
}
.legal-doc-card .download-card-media {
  border-bottom: 0;
  border-right: 1px solid var(--line);
}
.legal-doc-card .download-card-media img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.legal-doc-card .download-card-body {
  padding: 24px;
}
.legal-doc-card .download-card-body h3 {
  font-size: 24px;
}
.legal-doc-card .download-card-body p:not(.download-tag) {
  font-size: 15px;
}
@media (max-width: 1050px) {
  .download-prestation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-intro-card {
    grid-template-columns: 1fr;
  }
  .download-category-head {
    display: block;
  }
}
@media (max-width: 760px) {
  .download-category,
  .download-intro-card {
    padding: 22px;
    border-radius: 24px;
  }
  .download-legal-grid,
  .download-prestation-grid {
    grid-template-columns: 1fr;
  }
  .legal-doc-card {
    display: flex;
    min-height: 0;
  }
  .legal-doc-card .download-card-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .legal-doc-card .download-card-media img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .legal-doc-card .download-card-body {
    padding: 18px;
  }
  .download-intro-card .btn {
    width: 100%;
  }
}

/* Page éco-responsable - trame harmonisée */
.eco-hero {
  background:
    linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.88),
      rgba(20, 20, 20, 0.6) 48%,
      rgba(20, 20, 20, 0.22)
    ),
    url("../img/hero-toiture-premium.webp") center/cover no-repeat;
}
.eco-page-wrap {
  max-width: var(--max);
  margin: auto;
  padding: 54px 20px;
}
.eco-main-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 30px;
  overflow: hidden;
}
.eco-visual-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #fbf8f4;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-soft);
}
.eco-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.eco-visual-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: rgba(34, 34, 34, 0.92);
  color: #fff;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 14px 18px;
  max-width: 360px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}
.eco-visual-label strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}
.eco-visual-label span {
  display: block;
  color: #eee;
  font-size: 13px;
  margin-top: 4px;
}
.eco-content h2 {
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.eco-content .lead {
  margin-bottom: 20px;
}
.eco-commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.eco-commit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  min-height: 190px;
}
.eco-commit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 24px;
  margin-bottom: 14px;
}
.eco-commit h3 {
  font-size: 22px;
  line-height: 1.14;
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.015em;
}
.eco-commit p {
  margin: 0;
  color: #5a5a5a;
}
.eco-doc-band {
  background: linear-gradient(135deg, #2a2a2a, #3a332e);
  color: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.eco-doc-band:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 38px solid rgba(232, 89, 12, 0.18);
}
.eco-doc-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.eco-doc-band p {
  margin: 0;
  color: #eee;
  max-width: 760px;
}
.eco-doc-band .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #222;
  border-color: #fff;
}
@media (max-width: 900px) {
  .eco-main-card,
  .eco-commit-grid,
  .eco-doc-band {
    grid-template-columns: 1fr;
  }
  .eco-doc-band .btn {
    justify-self: start;
  }
  .eco-main-card {
    padding: 22px;
  }
  .eco-visual-label {
    position: static;
    border-radius: 0;
    max-width: none;
    box-shadow: none;
  }
  .eco-visual-frame {
    border-radius: 22px;
  }
}
@media (max-width: 560px) {
  .eco-page-wrap {
    padding: 38px 16px;
  }
  .eco-commit {
    padding: 20px;
  }
  .eco-doc-band {
    padding: 24px;
    border-radius: 24px;
  }
  .eco-doc-band .btn {
    width: 100%;
  }
}

/* Correctif page éco-responsable - trame Schroll / filières déchets */
.schroll-eco {
  padding-top: 62px;
}
.eco-schroll-card {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-left: 8px solid var(--orange);
}
.eco-schroll-visual {
  background: #fbfaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.eco-schroll-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.eco-schroll-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 920px;
  object-fit: contain;
  object-position: center;
  background: #fbfaf8;
  border-radius: 24px;
}
.eco-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.eco-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.eco-process article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  min-height: 210px;
  position: relative;
  overflow: hidden;
}
.eco-process article:after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 18px solid rgba(230, 90, 10, 0.1);
}
.eco-process span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  color: #fff;
  font-weight: 950;
  margin-bottom: 14px;
  border: 3px solid rgba(230, 90, 10, 0.35);
}
.eco-process h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #202020;
}
.eco-process p {
  margin: 0;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.55;
}
.eco-schroll-card .checklist li {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  .eco-process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .eco-schroll-card {
    grid-template-columns: 1fr;
  }
  .eco-schroll-visual {
    padding: 12px;
  }
  .eco-schroll-visual img {
    height: auto;
    max-height: none;
  }
  .eco-actions .btn {
    width: auto;
  }
}
@media (max-width: 620px) {
  .eco-process {
    grid-template-columns: 1fr;
  }
  .eco-actions .btn {
    width: 100%;
  }
}
/* Correctif page éco-responsable : visuel cycle chantier réaliste */
.eco-cycle-visual {
  background: #f5efe7;
  border: 1px solid #e8dccc;
  box-shadow: 0 24px 70px rgba(35, 28, 22, 0.14);
}
.eco-cycle-visual picture {
  display: block;
  width: 100%;
}
.eco-cycle-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f5efe7;
}
@media (max-width: 900px) {
  .eco-cycle-visual img {
    aspect-ratio: auto;
  }
}

/* =========================================================
   Correctif global MB Passion — bannières nettes + overlay sombre
   Objectif : fonds haute qualité, aucune bande noire, aucun étirement,
   voile uniforme, rendu responsive propre sur desktop / tablette / mobile.
   ========================================================= */
.hero,
.page-hero,
.social-feature {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  width: 100% !important;
  background-color: #252525 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero {
  min-height: 320px;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 !important;
  z-index: 0 !important;
  opacity: 1 !important;
  background: url("../img/hero-toiture-premium.webp") center center/cover
    no-repeat !important;
  transform: none !important;
  filter: none !important;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 46%,
    rgba(0, 0, 0, 0.28) 78%,
    rgba(0, 0, 0, 0.12) 100%
  ) !important;
}
.hero .wrap {
  position: relative;
  z-index: 2 !important;
  width: 100%;
}

.page-hero {
  min-height: 250px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: url("../img/hero-toiture-premium.webp");
}
.page-hero:not([style]) {
  background-image: url("../img/hero-toiture-premium.webp") !important;
}
.downloads-page-hero,
.eco-hero {
  background-image: url("../img/hero-toiture-premium.webp") !important;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  filter: none !important;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 48%,
    rgba(0, 0, 0, 0.34) 100%
  );
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-feature {
  background-image: url("../img/social-bg-premium.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.social-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  filter: none !important;
  pointer-events: none;
}
.social-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(31, 31, 31, 0.88) 0%,
    rgba(31, 31, 31, 0.7) 55%,
    rgba(31, 31, 31, 0.52) 100%
  );
}
.social-feature > * {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.hero h1,
.social-feature h2 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}
.page-hero p,
.hero p,
.social-feature p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 225px;
    background-position: center center !important;
  }
  .page-hero .wrap {
    min-height: 225px;
    padding: 40px 18px !important;
  }
  .hero .wrap {
    min-height: 310px !important;
  }
  .social-feature {
    background-position: center center !important;
  }
}
@media (max-width: 560px) {
  .page-hero {
    min-height: 215px;
    background-position: center center !important;
  }
  .page-hero .wrap {
    min-height: 215px;
    padding: 34px 16px !important;
  }
  .hero .wrap {
    min-height: 300px !important;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84),
      rgba(0, 0, 0, 0.62)
    ) !important;
  }
  .page-hero::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.6)
    ) !important;
  }
  .social-feature::after {
    background: linear-gradient(
      110deg,
      rgba(31, 31, 31, 0.86),
      rgba(31, 31, 31, 0.72)
    ) !important;
  }
}

/* =========================================================
   Correctif final 03/07/2026 — bannière accueil HQ panoramique
   Image de fond remplacée par une version 3840 x 1620 px.
   Objectif : rendu plus net, plus large, sans flou CSS, sans bande noire,
   sans déformation et avec recadrage cover responsive.
   ========================================================= */
.hero::before {
  background-image: url("../img/hero-accueil-renovation-energetique-2560.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}
.hero {
  background-color: #202020 !important;
}
.hero::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.56) 43%,
    rgba(0, 0, 0, 0.26) 76%,
    rgba(0, 0, 0, 0.1) 100%
  ) !important;
}
@media (max-width: 900px) {
  .hero::before {
    background-position: center center !important;
  }
}
@media (max-width: 560px) {
  .hero::before {
    background-position: center center !important;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.62)
    ) !important;
  }
}

/* Page Aides rénovation énergétique - version améliorée MB Passion */
.aides-hero {
  background-position: center center !important;
}
.aides-hero .hero-actions {
  margin-top: 18px;
}
.btn.light,
.page-hero .btn.secondary {
  background: rgba(255, 255, 255, 0.96);
  color: #202020;
  border-color: #fff;
}
.aides-intro h2,
.aides-project h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.aides-split {
  gap: 36px;
  align-items: center;
}
.aides-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.aides-visual img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}
.aides-check-grid .card {
  border-left: 5px solid var(--orange);
}
.aides-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.aide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 210px;
}
.aide-card:after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 24px solid rgba(230, 90, 10, 0.1);
}
.aide-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
  margin-bottom: 14px;
}
.aide-card h3 {
  font-size: 22px;
  line-height: 1.12;
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.015em;
}
.aide-card p {
  margin: 0;
  color: #5b5b5b;
}
.aides-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.aides-step-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.aides-step-list strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #252525;
  color: #fff;
  margin-bottom: 12px;
}
.aides-step-list p {
  margin: 0;
  color: #555;
}
.strong-notice {
  margin-top: 24px;
  border-left: 6px solid var(--orange);
  background: #fff8f2;
  border-radius: 18px;
  padding: 18px 20px;
  color: #333;
  box-shadow: var(--shadow-soft);
}
.aides-final-cta {
  align-items: center;
}
.aides-final-cta .cta-buttons {
  justify-content: flex-end;
  margin-top: 0;
}
@media (max-width: 980px) {
  .aides-card-grid,
  .aides-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aides-final-cta .cta-buttons {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
@media (max-width: 620px) {
  .aides-card-grid,
  .aides-step-list {
    grid-template-columns: 1fr;
  }
  .aides-actions .btn,
  .aides-final-cta .btn {
    width: 100%;
  }
  .aides-hero .hero-actions .btn {
    width: 100%;
  }
}

/* Correctif final navigation OVH */
.menu .nav-cta {
  padding: 10px 15px;
  font-size: 14px;
  white-space: nowrap;
}
.menu a {
  white-space: nowrap;
}
@media (max-width: 1380px) {
  .nav {
    gap: 10px;
  }
  .brand {
    min-width: 180px;
  }
  .brand small {
    display: none;
  }
  .menu {
    gap: 9px;
    font-size: 13px;
  }
  .menu .nav-cta {
    padding: 9px 12px;
  }
}
@media (max-width: 1180px) {
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    max-height: calc(100vh - 76px);
    overflow: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .menu a,
  .menu .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .menu {
    max-height: calc(100vh - 76px);
    overflow: auto;
  }
  .menu a,
  .menu .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* Page aides rénovation : boutons officiels et URL propre */
.official-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.official-link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 148px;
}
.official-link-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--orange);
}
.official-link-card strong {
  font-size: 22px;
  color: #1f1f1f;
}
.official-link-card span {
  color: #575757;
  line-height: 1.35;
}
.official-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.official-links-section {
  background: linear-gradient(180deg, #fff, #faf6f1);
}
@media (max-width: 900px) {
  .official-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .official-link-grid {
    grid-template-columns: 1fr;
  }
  .official-link-card {
    min-height: auto;
  }
  .menu .btn.primary.nav-cta {
    width: 100%;
  }
}

/* Carte interactive MB Passion - fond clair, routes orange, responsive */
.mbp-map-frame {
  position: relative;
  min-height: 360px;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eadfd5;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  background: #f7f3ef;
}
.mbp-leaflet-map {
  height: 360px;
  min-height: 360px;
  width: 100%;
  z-index: 1;
  background: #f6f3ef;
}
.mbp-map-frame.large .mbp-leaflet-map {
  height: 390px;
  min-height: 390px;
}
.mbp-leaflet-map .leaflet-tile {
  filter: grayscale(1) brightness(1.08) contrast(1.05) sepia(0.38)
    saturate(2.55) hue-rotate(330deg) opacity(0.86);
}
.mbp-leaflet-map .leaflet-control-attribution {
  font-size: 10px;
  color: #777;
  background: rgba(255, 255, 255, 0.82);
}
.mbp-map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 410;
  background: rgba(18, 18, 18, 0.88);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 8px;
  align-items: center;
}
.mbp-map-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(224, 91, 0, 0.18);
}
.mbp-map-marker {
  background: transparent;
  border: 0;
}
.mbp-map-marker span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff9f3d, #e05b00);
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.04em;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(224, 91, 0, 0.35);
}
.leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}
.leaflet-popup-content {
  font-family: inherit;
  color: #282828;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .mbp-map-frame,
  .mbp-leaflet-map,
  .mbp-map-frame.large .mbp-leaflet-map {
    min-height: 300px;
    height: 300px;
  }
  .mbp-map-badge {
    left: 12px;
    right: 12px;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
  }
}
@media (max-width: 560px) {
  .mbp-map-frame,
  .mbp-leaflet-map,
  .mbp-map-frame.large .mbp-leaflet-map {
    min-height: 260px;
    height: 260px;
  }
  .map-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Page Offre VELUX - SEO & conversion */
.velux-offer-hero .wrap {
  min-height: 360px;
}
.velux-offer-hero h1 {
  max-width: 920px;
}
.velux-offer-hero p {
  max-width: 860px;
}
.velux-intro-grid {
  align-items: center;
}
.velux-action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.velux-visual-card img {
  aspect-ratio: 16/11;
  object-position: center;
}
.velux-offer-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #242424, #3b332c);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.velux-offer-highlight:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 34px solid rgba(230, 90, 10, 0.2);
}
.velux-offer-highlight h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
  margin: 12px 0 10px;
  font-weight: 950;
}
.velux-offer-highlight p {
  color: #f2f2f2;
  margin: 0;
  max-width: 840px;
}
.velux-mini-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.velux-mini-actions .btn.secondary {
  background: #fff;
  color: #222;
  border-color: #fff;
}
.velux-link-grid .official-link-card strong {
  font-size: 20px;
}
.velux-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.velux-solution {
  border-left: 5px solid var(--orange);
}
.velux-solution span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
  margin-bottom: 12px;
}
.velux-solution h3 {
  font-size: 22px;
  line-height: 1.12;
  margin: 0 0 10px;
  font-weight: 950;
}
.velux-solution p {
  margin: 0;
  color: #565656;
}
.velux-seo-band {
  background: #fbf8f4;
}
.velux-band-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 30px;
}
.velux-band-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 950;
}
.velux-band-card p:not(.eyebrow) {
  margin: 0;
  color: #555;
  max-width: 880px;
}
.eyebrow {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin: 0 0 10px;
}
.lead {
  font-size: 18px;
  color: #454545;
}
@media (max-width: 980px) {
  .velux-offer-highlight,
  .velux-band-card {
    grid-template-columns: 1fr;
    display: grid;
  }
  .velux-mini-actions {
    justify-content: flex-start;
  }
  .velux-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .velux-band-card .btn {
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .velux-solutions-grid {
    grid-template-columns: 1fr;
  }
  .velux-action-row .btn,
  .velux-mini-actions .btn,
  .velux-band-card .btn,
  .velux-offer-hero .hero-actions .btn {
    width: 100%;
  }
  .velux-offer-highlight,
  .velux-band-card {
    padding: 22px;
    border-radius: 24px;
  }
  .velux-offer-hero .wrap {
    min-height: 330px;
  }
}

/* =========================================================
   Page Aides rénovation énergétique - amélioration visuelle 03/07/2026
   Bannière chantier toiture HQ + boutons officiels + SEO local.
   ========================================================= */
.aides-hero-premium {
  position: relative;
  min-height: 420px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}
.aides-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 42%,
    rgba(0, 0, 0, 0.26) 72%,
    rgba(0, 0, 0, 0.12) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.aides-hero-premium .wrap {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aides-hero-premium .eyebrow {
  color: #ff8a2c;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.aides-hero-premium h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}
.aides-hero-premium p:not(.breadcrumbs):not(.eyebrow) {
  max-width: 760px;
  color: #fff;
  font-size: clamp(17px, 1.5vw, 21px);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.aides-premium-intro {
  padding-top: 64px;
}
.chantier-card img {
  object-position: center center;
  filter: none !important;
}
.aides-official-premium {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(180deg, #fbf8f4, #fff);
}
.aides-official-premium > .section-title,
.aides-official-premium > .premium-link-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.premium-link-grid .official-link-card {
  min-height: 168px;
  transition: 0.18s ease;
  background: linear-gradient(180deg, #fff, #fffaf6);
}
.premium-link-grid .official-link-card:nth-child(1)::before,
.premium-link-grid .official-link-card:nth-child(2)::before,
.premium-link-grid .official-link-card:nth-child(7)::before {
  height: 8px;
  background: linear-gradient(90deg, var(--orange), #ff9a3c);
}
.premium-link-grid .official-link-card strong {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.premium-link-grid .official-link-card span {
  font-size: 15px;
}
.premium-aide-grid .aide-card {
  min-height: 230px;
}
.aides-project-premium {
  padding-top: 62px;
  padding-bottom: 62px;
}
.aides-reflexes-premium {
  background: #fbf8f4;
  border-radius: 32px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.faq-grid .card {
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.faq-grid h3 {
  font-size: 21px;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.faq-grid p {
  margin: 0;
  color: #555;
}
.aides-faq-section {
  padding-top: 62px;
}
.aides-final-cta {
  background: linear-gradient(135deg, #252525, #3a2f29);
  color: #fff;
  border-color: #332820;
}
.aides-final-cta p {
  color: #f1f1f1;
}
.aides-final-cta .btn.secondary {
  background: #fff;
  color: #252525;
  border-color: #fff;
}
@media (max-width: 900px) {
  .aides-hero-premium {
    min-height: 390px;
    background-position: center center !important;
  }
  .aides-hero-premium::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84),
      rgba(0, 0, 0, 0.62)
    );
  }
  .aides-hero-premium .wrap {
    min-height: 390px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .aides-reflexes-premium {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 560px) {
  .aides-hero-premium {
    min-height: 430px;
    background-position: center center !important;
  }
  .aides-hero-premium .wrap {
    min-height: 430px;
  }
  .aides-hero-premium h1 {
    font-size: clamp(34px, 11vw, 46px);
  }
  .hero-actions .btn {
    width: 100%;
  }
  .aides-official-premium > .section-title,
  .aides-official-premium > .premium-link-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Correction page Aides rénovation énergétique - version allégée */
.aides-hero-premium {
  background-position: center center !important;
}
.aides-hero-premium::before {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.28) 72%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
}
.aides-hero-premium .hero-readable {
  position: relative;
  z-index: 1;
}
.aides-hero-premium .hero-readable h1,
.aides-hero-premium .hero-readable p {
  max-width: 760px;
}
.aides-hero-premium .hero-readable h1 {
  text-shadow:
    0 8px 30px rgba(0, 0, 0, 0.62),
    0 2px 6px rgba(0, 0, 0, 0.52);
}
.aides-hero-premium .hero-readable p:not(.breadcrumbs):not(.eyebrow) {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
  font-weight: 650;
}
.single-action {
  gap: 0;
}
.aides-dispositifs-clean {
  background: linear-gradient(180deg, #fff, #fbf8f4);
}
.compact-aide-grid .aide-card {
  min-height: 205px;
}
.inline-official-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 2px solid rgba(230, 90, 10, 0.35);
}
.inline-official-link:hover {
  border-bottom-color: var(--orange);
}
.aides-single-official {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.mini-notice {
  padding: 16px 18px;
  margin-top: 18px;
  border-left: 5px solid var(--orange);
  background: #fff7ef;
  border-radius: 14px;
  color: #3a312b;
}
.clean-final-cta .btn.secondary {
  background: #fff;
  color: #252525;
  border-color: #fff;
}
@media (max-width: 900px) {
  .aides-hero-premium::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.66)
    ) !important;
  }
  .aides-single-official .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .aides-hero-premium {
    background-position: center center !important;
  }
  .aides-hero-premium .hero-readable p:not(.breadcrumbs):not(.eyebrow) {
    font-size: 17px;
  }
  .aides-single-official {
    padding: 0 16px;
  }
  .compact-aide-grid .aide-card {
    min-height: auto;
  }
}

/* --- Mise en avant Qualibat RGE / certificat téléchargeable --- */
.rge-highlight-section {
  padding-top: 34px;
  padding-bottom: 34px;
}
.rge-highlight-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid #d8eaf7;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.rge-highlight-card:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(0, 146, 202, 0.1);
}
.rge-logo-box {
  background: #fff;
  border: 1px solid #cfe4f4;
  border-radius: 26px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}
.rge-logo-box img {
  width: 130px;
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}
.rge-logo-box strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.1;
  color: #0b83bd;
  font-weight: 950;
}
.rge-logo-box small {
  display: block;
  color: #555;
  margin-top: 6px;
  font-weight: 800;
}
.rge-content {
  position: relative;
  z-index: 1;
}
.rge-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.rge-content p {
  color: #4d4d4d;
  margin: 0 0 14px;
}
.rge-pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.rge-pill-list li {
  background: #fff;
  border: 1px solid #dbeaf5;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 900;
  color: #284a5d;
}
.rge-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.rge-actions .btn.secondary {
  background: #fff;
  color: #202020;
  border-color: #202020;
}
.rge-note {
  font-size: 13px;
  color: #667;
  margin-top: 12px;
  display: block;
}
@media (max-width: 780px) {
  .rge-highlight-card {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 24px;
  }
  .rge-logo-box {
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: left;
  }
  .rge-logo-box img {
    width: 82px;
    margin: 0;
  }
  .rge-actions .btn {
    width: 100%;
  }
  .rge-pill-list li {
    width: 100%;
  }
}

.qualibat-download-card {
  border-color: #cfe4f4;
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.qualibat-download-card .download-tag {
  color: #0b83bd;
  font-weight: 950;
}

/* =========================================================
   Corrections finales 03/07/2026 — VELUX sans liens sortants,
   bannière aides lisible, badge Qualibat RGE en accueil.
   ========================================================= */
.aides-hero-premium .hero-readable {
  max-width: 860px;
  margin-left: 0;
  padding: 30px 34px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: none !important;
}
.aides-hero-premium .hero-readable .breadcrumbs {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
.aides-hero-premium .hero-readable h1,
.aides-hero-premium .hero-readable p,
.aides-hero-premium .hero-readable .btn {
  position: relative;
  z-index: 3;
  filter: none !important;
}
.aides-hero-premium .hero-readable h1 {
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72) !important;
}
.aides-hero-premium .hero-readable p:not(.breadcrumbs):not(.eyebrow) {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72) !important;
}
.aides-hero-premium .hero-readable .btn.primary {
  box-shadow: 0 14px 34px rgba(230, 90, 10, 0.34);
}
.home-rge-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px 10px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #202020;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.86);
}
.home-rge-badge img {
  width: 58px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.home-rge-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.home-rge-badge strong {
  font-weight: 950;
  color: #0b83bd;
  font-size: 16px;
}
.home-rge-badge small {
  font-weight: 800;
  color: #4f4f4f;
  font-size: 12px;
  max-width: 300px;
}
.home-rge-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}
.velux-offer-watch-section {
  background: linear-gradient(180deg, #fff, #fbf8f4);
}
.velux-contact-highlight .velux-mini-actions {
  min-width: 260px;
}
.velux-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.velux-watch-grid .card {
  border-left: 5px solid var(--orange);
}
.velux-watch-grid .card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 950;
  margin-bottom: 10px;
}
.velux-watch-grid .card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  line-height: 1.12;
  font-weight: 950;
}
.velux-watch-grid .card p {
  margin: 0;
  color: #565656;
}
@media (max-width: 900px) {
  .aides-hero-premium .hero-readable {
    padding: 24px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.7);
  }
  .velux-watch-grid {
    grid-template-columns: 1fr;
  }
  .home-rge-badge {
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .aides-hero-premium .hero-readable {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .home-rge-badge {
    margin-top: 18px;
  }
  .home-rge-badge img {
    width: 50px;
  }
  .home-rge-badge small {
    font-size: 11px;
  }
}

/* Page unique : mentions légales, confidentialité et CGV */
.legal-page-hero {
  background: linear-gradient(135deg, #171717, #3a2a20 70%, #9a4d14);
}
.legal-combined-wrap {
  max-width: 1040px;
}
.legal-summary {
  position: sticky;
  top: 86px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 24px;
  padding: 14px 18px;
  border: 1px solid rgba(199, 107, 31, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
.legal-summary strong {
  margin-right: 6px;
  color: #1b1b1b;
}
.legal-summary a {
  color: #8b470d;
  font-weight: 700;
  text-decoration: none;
}
.legal-summary a:hover {
  text-decoration: underline;
}
.legal-intro {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid #e3d5c8;
  border-left: 5px solid #c76b1f;
  border-radius: 12px;
  background: #fff8ef;
}
.legal-content-section {
  scroll-margin-top: 150px;
  padding: 22px 24px;
  margin: 0 0 16px;
  border: 1px solid #e6e0da;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}
.legal-content-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.3;
  color: #221b17;
}
.legal-content-section p {
  margin: 0 0 10px;
}
.legal-content-section ul {
  margin: 8px 0 12px 22px;
}
.legal-content-section li {
  margin-bottom: 6px;
}
.legal-content-section a {
  color: #8b470d;
  font-weight: 600;
}
.legal-content-section .note {
  margin: 14px 0;
  padding: 14px 16px;
  border-left: 4px solid #c76b1f;
  background: #fff8ef;
}
.legal-content-section .box {
  margin: 14px 0;
  padding: 16px;
  border: 1px solid #ded7d0;
  border-radius: 10px;
  background: #faf8f6;
}
@media (max-width: 760px) {
  .legal-summary {
    position: static;
    display: grid;
    gap: 8px;
    padding: 14px;
  }
  .legal-content-section {
    padding: 18px 16px;
  }
  .legal-page-hero .wrap {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

/* Téléchargements : actions documentaires regroupées */
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.download-actions .btn {
  flex: 1 1 190px;
  text-align: center;
  justify-content: center;
}
.qualibat-download-card .download-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 640px) {
  .download-actions {
    flex-direction: column;
  }
  .download-actions .btn {
    width: 100%;
    flex: auto;
  }
}
/* Harmonisation des documents utiles avec la trame des fiches prestations */
.download-legal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.info-doc-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.info-doc-card .download-card-media {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #f7f3ef;
  overflow: hidden;
}
.info-doc-card .download-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  background: #f7f3ef;
}
.info-doc-card .download-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.info-doc-card .download-card-body h3 {
  font-size: 21px;
  line-height: 1.15;
  margin: 0;
  font-weight: 950;
}
.info-doc-card .download-card-body p:not(.download-tag) {
  font-size: 14px;
  line-height: 1.5;
  color: #565656;
  margin: 0 0 10px;
}
.info-doc-card .download-actions,
.info-doc-card > .download-card-body > .btn {
  margin-top: auto;
}
.info-doc-card .download-actions {
  display: grid;
  gap: 10px;
}
.info-doc-card .download-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.qualibat-download-card {
  border-color: #cfe4f4;
  background: linear-gradient(180deg, #fff, #f7fbff);
}
@media (max-width: 980px) {
  .download-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .download-legal-grid {
    grid-template-columns: 1fr;
  }
  .info-doc-card .download-card-media img {
    aspect-ratio: 16/9;
  }
}

/* === MB CARE LEGAL UNIFIED START === */
/* Pages documentaires : trame commune MB Passion */
.legal-page-hero,
.care-page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}
.legal-page-hero {
  background-image:
    linear-gradient(90deg, rgba(12, 12, 12, 0.86), rgba(12, 12, 12, 0.45)),
    url("../img/hero-toiture-premium.webp");
}
.care-page-hero {
  background-image:
    linear-gradient(90deg, rgba(12, 12, 12, 0.84), rgba(12, 12, 12, 0.38)),
    url("../img/hero-accueil-renovation-energetique-2560.webp");
}
.legal-page-hero .wrap,
.care-page-hero .wrap {
  width: 100%;
  padding-top: 74px;
  padding-bottom: 60px;
}
.legal-page-hero h1,
.care-page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.03;
  margin: 0.35rem 0 1rem;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}
.legal-page-hero p,
.care-page-hero p {
  max-width: 830px;
  font-size: 1.12rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}
.care-kicker,
.legal-kicker {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.care-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.care-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.care-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.care-nav {
  position: sticky;
  top: 100px;
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.care-nav strong {
  display: block;
  color: var(--orange);
  margin-bottom: 12px;
}
.care-nav a {
  display: block;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}
.care-nav a:hover {
  color: #ff9a55;
}
.care-content {
  min-width: 0;
}
.care-intro,
.care-section,
.care-legal,
.care-log {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.care-section h2,
.care-intro h2,
.care-log h2 {
  margin-top: 0;
}
.care-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: center;
}
.care-visual {
  margin: 0;
}
.care-visual figure {
  margin: 0;
}
.care-visual img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  border: 1px solid #ddd5cf;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}
.care-visual figcaption {
  font-size: 0.88rem;
  color: #666;
  margin-top: 8px;
}
.care-visual svg {
  width: 100%;
  height: auto;
}
.care-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 20px;
}
.care-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f3eee9;
  font-weight: 700;
  font-size: 0.92rem;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.care-card {
  background: #f7f4f1;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 16px;
}
.care-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.care-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding: 0;
  list-style: none;
}
.care-checks li {
  position: relative;
  padding-left: 28px;
}
.care-checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.care-warning {
  background: #fff4e8;
  border: 1px solid #f1b780;
  border-left: 6px solid var(--orange);
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0;
}
.care-danger {
  background: #fff1f1;
  border: 1px solid #e4a1a1;
  border-left: 6px solid #b91c1c;
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0;
}
.care-calendar {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.care-calendar th,
.care-calendar td {
  border: 1px solid #ddd5cf;
  padding: 12px;
  vertical-align: top;
}
.care-calendar th {
  background: var(--dark);
  color: #fff;
}
.care-calendar td:first-child {
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}
.care-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.care-level {
  border-radius: 14px;
  padding: 18px;
}
.care-level:nth-child(1) {
  background: #edf7ef;
}
.care-level:nth-child(2) {
  background: #fff6e7;
}
.care-level:nth-child(3) {
  background: #fff0f0;
}
.care-log table {
  width: 100%;
  border-collapse: collapse;
}
.care-log th,
.care-log td {
  border: 1px solid #d7d0ca;
  padding: 10px;
}
.care-log th {
  background: var(--dark);
  color: #fff;
}
.care-source-list li {
  margin: 0.5rem 0;
}
.care-small {
  font-size: 0.92rem;
  color: #666;
}
.care-top {
  display: inline-block;
  margin-top: 12px;
}
.care-legal {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.care-legal a {
  color: #ff9a55;
}
.care-legal h2 {
  color: #fff;
}
.care-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: #f7f4f1;
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  margin-top: 20px;
}
.care-cta h3 {
  margin: 0 0 4px;
}
/* Harmonisation de la page légale avec les fiches */
.legal-intro,
.legal-content-section {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.legal-content-section {
  padding: 26px 28px;
  margin-bottom: 22px;
}
.legal-content-section h2 {
  color: var(--ink);
  border-bottom: 1px solid #eee3da;
  padding-bottom: 10px;
}
.legal-summary {
  border-radius: 18px;
}
@media (max-width: 900px) {
  .care-layout {
    grid-template-columns: 1fr;
  }
  .care-nav {
    position: relative;
    top: auto;
  }
  .care-section-head {
    grid-template-columns: 1fr;
  }
  .care-grid,
  .care-levels {
    grid-template-columns: 1fr;
  }
  .care-checks {
    grid-template-columns: 1fr;
  }
  .care-visual {
    max-width: 520px;
  }
  .care-cta {
    grid-template-columns: 1fr;
  }
  .care-calendar {
    font-size: 0.9rem;
    display: block;
    overflow: auto;
  }
  .legal-page-hero,
  .care-page-hero {
    min-height: 330px;
  }
}
@media (max-width: 560px) {
  .care-intro,
  .care-section,
  .care-legal,
  .care-log {
    padding: 20px 17px;
  }
  .care-visual img {
    height: 210px;
  }
  .legal-page-hero,
  .care-page-hero {
    min-height: 310px;
  }
  .legal-page-hero .wrap,
  .care-page-hero .wrap {
    padding-top: 46px;
    padding-bottom: 42px;
  }
}
@media print {
  @page {
    size: A4;
    margin: 14mm 13mm 16mm;
    @bottom-left {
      content: "Rénov' MB Passion - document d'information";
      font-size: 8pt;
      color: #777;
    }
    @bottom-right {
      content: "Page " counter(page) " / " counter(pages);
      font-size: 8pt;
      color: #777;
    }
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body {
    font-size: 9.7pt;
    line-height: 1.38;
    background: #fff !important;
  }
  .topbar,
  .site-header,
  .site-footer,
  .cookie-banner,
  .care-nav,
  .care-actions,
  .legal-summary,
  .skip {
    display: none !important;
  }
  .page-hero,
  .legal-page-hero,
  .care-page-hero {
    min-height: 0 !important;
    background: linear-gradient(135deg, #171717, #3a2a20) !important;
    color: #fff !important;
    margin: 0 0 8mm !important;
  }
  .page-hero .wrap,
  .legal-page-hero .wrap,
  .care-page-hero .wrap {
    padding: 16mm 13mm 12mm !important;
  }
  .page-hero h1,
  .legal-page-hero h1,
  .care-page-hero h1 {
    font-size: 25pt !important;
    text-shadow: none !important;
    margin-bottom: 5mm !important;
  }
  .page-hero p,
  .legal-page-hero p,
  .care-page-hero p {
    font-size: 11pt !important;
    text-shadow: none !important;
  }
  .section {
    padding: 0 !important;
  }
  .section > .wrap {
    max-width: none !important;
    padding: 0 !important;
  }
  .care-layout {
    display: block !important;
  }
  .care-content {
    width: 100%;
  }
  .care-intro,
  .care-section,
  .care-legal,
  .care-log,
  .legal-intro,
  .legal-content-section {
    box-shadow: none !important;
    border-radius: 8px !important;
    margin: 0 0 5mm !important;
    padding: 7mm !important;
    break-inside: auto;
  }
  .care-section-head {
    grid-template-columns: 1fr 62mm !important;
    gap: 7mm !important;
  }
  .care-visual img {
    height: 42mm !important;
    border-radius: 6px !important;
  }
  .care-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .care-levels {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .care-checks {
    grid-template-columns: 1fr 1fr !important;
  }
  .care-warning,
  .care-danger,
  .care-card,
  .care-level {
    break-inside: avoid;
  }
  .care-calendar,
  .care-log table {
    font-size: 8.5pt;
  }
  .care-calendar th,
  .care-calendar td,
  .care-log th,
  .care-log td {
    padding: 2.5mm;
  }
  .legal-content-section h2,
  .care-section h2,
  .care-intro h2,
  .care-log h2 {
    font-size: 14pt !important;
  }
  a {
    color: #8b470d !important;
    text-decoration: none !important;
  }
}
/* === MB CARE LEGAL UNIFIED END === */

/* =========================================================
   Correctif final — bannière Aides rénovation au premier plan
   Alignement identique à la bannière Offre VELUX.
   ========================================================= */
.aides-hero-premium {
  min-height: 250px !important;
  display: flex !important;
  align-items: center !important;
  background-position: center center !important;
}
.aides-hero-premium::after {
  z-index: 1 !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.62) 48%,
    rgba(0, 0, 0, 0.34) 100%
  ) !important;
}
.aides-hero-premium .hero-readable {
  position: relative !important;
  z-index: 3 !important;
  width: 100% !important;
  max-width: var(--max) !important;
  min-height: 250px !important;
  margin: 0 auto !important;
  padding: 48px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  filter: none !important;
  transform: none !important;
}
.aides-hero-premium .hero-readable h1,
.aides-hero-premium .hero-readable p,
.aides-hero-premium .hero-readable .hero-actions,
.aides-hero-premium .hero-readable .btn {
  position: relative !important;
  z-index: 4 !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}
.aides-hero-premium .hero-readable h1 {
  max-width: 900px !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72) !important;
}
.aides-hero-premium .hero-readable p:not(.breadcrumbs):not(.eyebrow) {
  max-width: 760px !important;
  color: #fff !important;
  font-weight: 500 !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.72) !important;
}
@media (max-width: 900px) {
  .aides-hero-premium,
  .aides-hero-premium .hero-readable {
    min-height: 225px !important;
  }
  .aides-hero-premium .hero-readable {
    padding: 40px 18px !important;
  }
}
@media (max-width: 560px) {
  .aides-hero-premium,
  .aides-hero-premium .hero-readable {
    min-height: 215px !important;
  }
  .aides-hero-premium .hero-readable {
    padding: 34px 16px !important;
  }
}

/* === Pied de page MB Passion — version épurée === */
.site-footer {
  background: #222;
  color: #fff;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-main {
  max-width: var(--max);
  margin: auto;
  padding: 42px 20px 34px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.site-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.site-footer .footer-title {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
}
.site-footer .footer-heading {
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8a3d;
  margin-bottom: 4px;
}
.site-footer p {
  margin: 0;
  color: #e3e3e3;
  line-height: 1.55;
}
.site-footer .footer-address {
  font-size: 0.92rem;
  color: #bdbdbd;
}
.site-footer a {
  color: #f2f2f2;
  text-decoration: none;
  line-height: 1.35;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ff9a55;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.footer-trust a {
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.04);
}
.site-footer .social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 2px;
}
.site-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: 0.9rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aaa;
  font-size: 0.82rem;
}
.site-footer .footer-bottom .wrap {
  max-width: var(--max);
  margin: auto;
  padding: 14px 20px;
  text-align: center;
}
@media (max-width: 980px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 26px;
  }
  .site-footer .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-trust {
    gap: 7px;
  }
}

/* Alignement visuel du badge Qualibat avec les textes du bloc entreprise */
.footer-trust a:first-child {
  transform: translateX(-10px);
  margin-right: -10px;
}
@media (max-width: 620px) {
  .footer-trust a:first-child {
    transform: translateX(-8px);
    margin-right: -8px;
  }
}

/* FINAL GOOGLE REVIEWS ALIGNMENT */
.reviews-section .reviews-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  text-align: center;
}
.reviews-section .reviews-intro {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.reviews-section .google-widget-box {
  position: relative;
  width: 100%;
  max-width: 1120px;
  min-height: 260px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.reviews-section .google-widget-box .elfsight-widget-loaded,
.reviews-section .google-widget-box iframe {
  display: block;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}
.reviews-section .google-widget-box a[href*="elfsight"],
.reviews-section .google-widget-box [class*="Branding"],
.reviews-section .google-widget-box [class*="branding"],
.reviews-section .google-widget-box [class*="Watermark"],
.reviews-section .google-widget-box [class*="watermark"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
@media (max-width: 760px) {
  .reviews-section .google-widget-box {
    min-height: 230px;
  }
}

/* Page Éco-responsable — mise en page verticale harmonisée */
.schroll-eco .eco-schroll-card {
  display: block;
  border-left: 0;
  padding: clamp(20px, 3vw, 34px);
  overflow: visible;
}
.schroll-eco .eco-schroll-visual {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 42px;
  padding: 14px;
  background: #f7f3ee;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.schroll-eco .eco-schroll-visual picture {
  display: block;
  width: 100%;
  height: auto;
}
.schroll-eco .eco-schroll-visual img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center;
  border-radius: 18px;
  background: transparent;
}
.schroll-eco .eco-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 8px 8px;
}
.schroll-eco .eco-content .eyebrow {
  text-align: center;
}
.schroll-eco .eco-content h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}
.schroll-eco .eco-content .lead {
  max-width: 920px;
  margin: 0 auto 28px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.72;
  text-align: left;
}
.schroll-eco .eco-content .checklist {
  max-width: 920px;
  margin: 0 auto;
}
.schroll-eco .eco-content .checklist li {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  padding: 14px 0 14px 44px;
  margin: 0;
}
.schroll-eco .eco-actions {
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 700px) {
  .schroll-eco .eco-schroll-card {
    padding: 16px;
  }
  .schroll-eco .eco-schroll-visual {
    padding: 8px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .schroll-eco .eco-schroll-visual img {
    border-radius: 14px;
  }
  .schroll-eco .eco-content {
    padding: 0;
  }
  .schroll-eco .eco-content h2 {
    text-align: left;
    font-size: clamp(30px, 9vw, 42px);
  }
  .schroll-eco .eco-content .eyebrow {
    text-align: left;
  }
  .schroll-eco .eco-content .lead {
    font-size: 17px;
    line-height: 1.65;
  }
}

/* Bannière Instagram autonome — ne dépend plus d’un widget externe */
.instagram-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 28px;
  align-items: stretch;
  background: linear-gradient(135deg, #181818 0%, #383838 58%, #6f6f6f 100%);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.instagram-promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 10px 14px 14px;
  color: #fff;
}
.instagram-promo-copy .eyebrow {
  color: #f0b45c;
}
.instagram-promo-copy h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 4px 0 16px;
  color: #fff;
}
.instagram-promo-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 22px;
}
.instagram-cta {
  align-self: flex-start;
}
.instagram-promo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(135px, 1fr));
  gap: 8px;
  min-height: 360px;
  border-radius: 21px;
  overflow: hidden;
  background: #111;
}
.instagram-promo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.instagram-promo-grid:hover img {
  transform: scale(1.025);
  filter: brightness(0.92);
}
.instagram-grid-label {
  position: absolute;
  inset: auto 18px 18px auto;
  background: rgba(255, 255, 255, 0.94);
  color: #161616;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
@media (max-width: 820px) {
  .instagram-promo {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .instagram-promo-grid {
    min-height: 310px;
  }
  .instagram-promo-copy {
    padding: 8px 4px;
  }
  .instagram-cta {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .instagram-promo-grid {
    min-height: 270px;
    grid-template-rows: repeat(2, 135px);
  }
  .instagram-promo {
    border-radius: 22px;
  }
  .instagram-promo-copy h2 {
    font-size: 30px;
  }
}

/* Bannière d'avis Google autonome - sans widget ni prestataire externe */
.reviews-static {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.reviews-static-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.reviews-static-intro h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
  font-weight: 950;
  letter-spacing: -0.035em;
}
.reviews-static-intro p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  color: #4d4d4d;
}
.google-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.google-stars span {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 4px;
  color: #f6a800;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.reviews-static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.reviews-static-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-point {
  background: #fbf8f4;
  border: 1px solid #eadfd5;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
}
.review-point::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ef7d00;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.review-point strong {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.review-point p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #555;
}
@media (max-width: 900px) {
  .reviews-static {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .reviews-static-points {
    grid-template-columns: 1fr;
  }
  .review-point {
    min-height: auto;
  }
  .reviews-static-intro {
    align-items: center;
    text-align: center;
  }
  .reviews-static-actions {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .reviews-static {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .reviews-static-actions {
    width: 100%;
  }
  .reviews-static-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .google-stars span {
    font-size: 25px;
    letter-spacing: 3px;
  }
}

/* Accueil : carrousel simple des réalisations + badge Google compact */
.home-realisation-carousel {
  padding-top: 22px;
}
.home-review-badge {
  max-width: 520px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}
.home-review-brand {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: #4285f4;
  background: #fff;
  border: 1px solid #ededed;
}
.home-review-copy {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
  line-height: 1.05;
}
.home-review-copy strong {
  font-size: 22px;
  color: #202124;
}
.home-review-copy strong span {
  font-size: 13px;
  font-weight: 700;
  color: #737373;
}
.home-review-stars {
  color: #fbbc04;
  letter-spacing: 1px;
  font-size: 17px;
}
.home-review-copy small {
  grid-column: 1/-1;
  color: #666;
  font-size: 12px;
  margin-top: 4px;
}
.home-review-badge > a {
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}
.home-review-badge > a:hover {
  text-decoration: underline;
}
.realisation-carousel-card {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.realisation-carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.realisation-carousel-heading h2 {
  font-size: clamp(29px, 3.2vw, 45px);
  line-height: 1.08;
  margin: 3px 0 0;
  letter-spacing: -0.035em;
}
.instagram-profile-link {
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
  text-align: right;
}
.instagram-profile-link:hover {
  text-decoration: underline;
}
.realisation-carousel-shell {
  position: relative;
}
.realisation-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}
.realisation-carousel-track::-webkit-scrollbar {
  display: none;
}
.realisation-slide {
  flex: 0 0 calc((100% - 28px) / 3);
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #eee;
}
.realisation-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.realisation-slide:hover img {
  transform: scale(1.035);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
  font-size: 34px;
  line-height: 1;
  color: #111;
  cursor: pointer;
}
.carousel-prev {
  left: 10px;
}
.carousel-next {
  right: 10px;
}
.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 800px) {
  .realisation-carousel-heading {
    display: block;
  }
  .instagram-profile-link {
    display: inline-block;
    text-align: left;
    margin-top: 12px;
  }
  .realisation-slide {
    flex-basis: 72%;
    height: 260px;
  }
}
@media (max-width: 560px) {
  .home-review-badge {
    grid-template-columns: auto 1fr;
    padding: 13px 14px;
  }
  .home-review-badge > a {
    grid-column: 1/-1;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
  }
  .realisation-carousel-card {
    padding: 18px 14px;
    border-radius: 21px;
  }
  .realisation-slide {
    flex-basis: 86%;
    height: 235px;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 29px;
  }
  .realisation-carousel-heading h2 {
    font-size: 29px;
  }
}

/* Accueil : bandeau de confiance moderne, sans fond de logo */

/* Carrousels réalisations harmonisés — juillet 2026 */
.realisations-page-carousel {
  padding-top: 48px;
  padding-bottom: 56px;
}
.realisations-page-carousel .realisation-carousel-card {
  max-width: 1220px;
}
.realisations-page-carousel .realisation-slide {
  height: 340px;
}
.carousel-intro {
  max-width: 760px;
  margin: 10px 0 0;
}
.realisation-slide img {
  object-position: center center;
}
@media (max-width: 800px) {
  .realisations-page-carousel {
    padding-top: 30px;
    padding-bottom: 38px;
  }
  .realisations-page-carousel .realisation-slide {
    height: 280px;
  }
}
@media (max-width: 560px) {
  .realisations-page-carousel .realisation-slide {
    height: 245px;
  }
}

/* Vidéo OVH intégrée au carrousel des réalisations */
.realisation-video-slide {
  position: relative;
  background: #111;
}
.realisation-video-slide iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #111;
}
.realisation-video-slide::after {
  content: "Vidéo";
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.contract-version-reference,
.document-version-label {
  font-weight: 700;
  color: #333;
}
.contract-version-reference {
  border-left: 4px solid #f36b21;
  padding: 0.75rem 1rem;
  background: #f7f5f2;
  border-radius: 0 10px 10px 0;
}

/* Correctif définitif du carrousel d'accueil — juillet 2026 */
.home-realisation-carousel {
  padding-top: 32px;
  padding-bottom: 48px;
}
.home-realisation-carousel .realisation-carousel-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px;
  overflow: hidden;
}
.home-realisation-carousel .realisation-carousel-shell {
  position: relative;
  overflow: hidden;
}
.home-realisation-carousel .realisation-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}
.home-realisation-carousel .realisation-carousel-track::-webkit-scrollbar {
  display: none;
}
.home-realisation-carousel .realisation-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 4 / 3;
  height: auto;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #ececec;
}
.home-realisation-carousel .realisation-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-realisation-carousel .carousel-arrow {
  display: grid;
  place-items: center;
  top: 50%;
  width: 46px;
  height: 46px;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.home-realisation-carousel .carousel-prev {
  left: 12px;
}
.home-realisation-carousel .carousel-next {
  right: 12px;
}

@media (max-width: 800px) {
  .home-realisation-carousel .realisation-carousel-card {
    padding: 22px 18px;
  }
  .home-realisation-carousel .realisation-slide {
    flex-basis: calc((100% - 16px) / 2);
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 560px) {
  .home-realisation-carousel {
    padding-top: 24px;
    padding-bottom: 36px;
  }
  .home-realisation-carousel .realisation-carousel-card {
    padding: 18px 12px;
  }
  .home-realisation-carousel .realisation-slide {
    flex-basis: 100%;
    aspect-ratio: 4 / 3;
  }
  .home-realisation-carousel .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 31px;
  }
  .home-realisation-carousel .carousel-prev {
    left: 8px;
  }
  .home-realisation-carousel .carousel-next {
    right: 8px;
  }
}

/* Correctifs globaux — carrousels, carte et Qualibat */
.mbp-map-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3efe7, #e8edf3);
}
.mbp-google-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
}
.mbp-map-frame.large .mbp-google-map {
  min-height: 430px;
}
.mbp-leaflet-map {
  width: 100%;
  height: 100%;
  min-height: inherit;
  z-index: 1;
  background: linear-gradient(135deg, #eef2f5, #dce8e0);
}
.mbp-map-badge {
  z-index: 500;
}
.qualibat-logo-media {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff, #f5fafc) !important;
  padding: 26px !important;
}
.qualibat-download-card .qualibat-logo-media img {
  width: auto !important;
  height: 175px !important;
  max-width: 80% !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}
.realisations-page-carousel {
  padding-top: 34px;
  padding-bottom: 48px;
}

/* Vignettes homogènes des trois documents principaux */
.download-legal-grid .download-card-media {
  position: relative;
}
.document-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  background: rgba(24, 28, 31, 0.92);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.document-logo img {
  width: auto !important;
  height: 32px !important;
  max-width: 110px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.document-logo-image {
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 14px;
}
.document-logo-image img {
  height: 38px !important;
  max-width: 125px !important;
}
.document-logo-rc {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 8px 13px;
  border-left: 4px solid var(--orange);
}
.document-logo-rc strong {
  font-size: 19px;
  line-height: 1;
}
.document-logo-rc small {
  font-size: 9px;
  letter-spacing: 0.13em;
}
@media (max-width: 600px) {
  .mbp-google-map,
  .mbp-map-frame.large .mbp-google-map {
    min-height: 320px;
  }
  .document-logo {
    left: 12px;
    bottom: 12px;
  }
}

/* Carte MB Passion — palette orange, gris et blanc */
.mb-map {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 14px 34px rgba(26, 26, 26, 0.12);
  background: #f7f7f7;
}
.mb-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(0.94) brightness(1.08);
}
.mb-map .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}
.mb-map .leaflet-control-zoom a {
  color: #f28c18 !important;
  background: #fff !important;
  border: none !important;
}
.mb-map .leaflet-control-zoom a:hover {
  color: #fff !important;
  background: #f28c18 !important;
}
.mb-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #555 !important;
  font-size: 10px !important;
}
.mb-map .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.mb-map .leaflet-popup-content {
  margin: 14px 16px;
  color: #2d2d2d;
}
.mb-map .leaflet-popup-tip {
  background: #fff;
}
.mb-map-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f28c18;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .mb-map {
    min-height: 300px;
    border-radius: 16px;
  }
}

/* --- Campagne été 2026 : volet roulant solaire VELUX --- */
.summer-velux-popup {
  position: fixed;
  right: 24px;
  top: 96px;
  bottom: auto;
  z-index: 1000;
  width: min(540px, calc(100vw - 48px));
  overflow: hidden;
  background: #fbf8f4;
  border: 1px solid rgba(239, 108, 0, 0.32);
  border-radius: 26px;
  box-shadow: 0 26px 80px rgba(22, 18, 15, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(26px, -18px, 0) scale(0.97);
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.summer-velux-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}
.summer-velux-popup.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(22px, -14px, 0) scale(0.98);
}
.summer-velux-media {
  position: relative;
  height: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.85fr);
  gap: 3px;
  background: #242424;
  overflow: hidden;
}
.summer-velux-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(24, 19, 16, 0.8) 0%,
    rgba(24, 19, 16, 0.2) 54%,
    rgba(24, 19, 16, 0.05) 100%
  );
  pointer-events: none;
}
.summer-velux-photo {
  min-width: 0;
  overflow: hidden;
}
.summer-velux-photo-secondary {
  border-left: 3px solid var(--orange);
}
.summer-velux-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.summer-velux-photo-main img {
  object-position: center 46%;
}
.summer-velux-photo-secondary img {
  object-position: 57% center;
}
.summer-velux-brandmark {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.25);
}
.summer-velux-season {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 80px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(133, 55, 0, 0.28);
}
.summer-velux-media-title {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  max-width: 360px;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.summer-velux-content {
  padding: 21px 22px 19px;
  min-width: 0;
}
.summer-velux-kicker {
  margin: 0 36px 5px 0;
  color: #d95f00;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.summer-velux-content h2 {
  margin: 0 36px 8px 0;
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 950;
  color: var(--dark);
}
.summer-velux-intro {
  margin: 0 0 13px;
  color: #555;
  font-size: 14px;
  line-height: 1.48;
}
.summer-velux-benefits {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  color: #333;
  font-size: 13px;
  line-height: 1.35;
}
.summer-velux-benefits li {
  position: relative;
  padding-left: 21px;
}
.summer-velux-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff1e7;
  color: #df5f00;
  font-size: 11px;
  font-weight: 950;
}
.summer-velux-benefits li:last-child {
  grid-column: 1/-1;
}
.summer-velux-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 10px;
  align-items: center;
}
.summer-velux-cta,
.summer-velux-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.summer-velux-cta {
  padding: 11px 14px;
  background: linear-gradient(135deg, #ef6c00, #d95700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(218, 88, 0, 0.27);
}
.summer-velux-more {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
}
.summer-velux-cta:hover,
.summer-velux-more:hover {
  transform: translateY(-1px);
}
.summer-velux-cta:hover {
  box-shadow: 0 13px 28px rgba(218, 88, 0, 0.34);
}
.summer-velux-more:hover {
  background: #fff7ef;
}
.summer-velux-content small {
  display: block;
  margin-top: 10px;
  color: #6b625c;
  font-size: 9.5px;
  line-height: 1.35;
}
.summer-velux-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(36, 36, 36, 0.82);
  color: #fff;
  font-size: 24px;
  line-height: 31px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}
.summer-velux-close:hover {
  background: #fff;
  color: var(--dark);
}
.summer-velux-close:focus-visible,
.summer-velux-cta:focus-visible,
.summer-velux-more:focus-visible {
  outline: 3px solid rgba(239, 108, 0, 0.5);
  outline-offset: 3px;
}
@media (max-width: 600px) {
  .summer-velux-popup {
    left: 12px;
    right: 12px;
    top: 80px;
    bottom: auto;
    width: auto;
    max-height: calc(100dvh - 92px);
    overflow: auto;
    border-radius: 21px;
  }
  .summer-velux-media {
    height: 132px;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.75fr);
  }
  .summer-velux-brandmark {
    top: 10px;
    left: 12px;
    width: 43px;
    height: 43px;
  }
  .summer-velux-season {
    top: 13px;
    left: 63px;
    font-size: 9px;
    padding: 6px 9px;
  }
  .summer-velux-media-title {
    left: 14px;
    bottom: 12px;
    font-size: 20px;
  }
  .summer-velux-content {
    padding: 16px 15px 14px;
  }
  .summer-velux-content h2 {
    font-size: 21px;
    margin-right: 26px;
  }
  .summer-velux-intro {
    font-size: 12.5px;
    line-height: 1.4;
  }
  .summer-velux-benefits {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 12px;
  }
  .summer-velux-benefits li:last-child {
    grid-column: auto;
  }
  .summer-velux-actions {
    grid-template-columns: 1fr;
  }
  .summer-velux-cta,
  .summer-velux-more {
    min-height: 40px;
    font-size: 12px;
  }
  .summer-velux-content small {
    font-size: 8.5px;
  }
  .summer-velux-close {
    top: 9px;
    right: 9px;
    width: 31px;
    height: 31px;
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-height: 720px) and (min-width: 601px) {
  .summer-velux-popup {
    top: 78px;
    max-height: calc(100vh - 94px);
    overflow: auto;
  }
  .summer-velux-media {
    height: 142px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .summer-velux-popup,
  .summer-velux-cta,
  .summer-velux-more {
    transition: none;
  }
}

/* Accueil : preuves d'expertise et zone d'intervention locale */
.home-local-expertise {
  background: linear-gradient(180deg, #fbf8f4 0%, #fff 100%);
}
.home-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1060px;
  margin: 28px auto 0;
}
.home-expertise-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 132px;
  padding: 24px 22px 22px 72px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.home-expertise-grid article::before {
  content: "✓";
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff1e7;
  color: #df5f00;
  font-size: 18px;
  font-weight: 950;
}
.home-expertise-grid strong {
  color: var(--dark);
  font-size: 21px;
  line-height: 1.15;
}
.home-expertise-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.home-service-area {
  padding-top: 28px;
}
.home-service-area-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 95, 18, 0.28), transparent 36%),
    linear-gradient(135deg, #242424 0%, #302a26 68%, #3a2f29 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(36, 36, 36, 0.2);
}
.home-service-area-card h2 {
  margin: 3px 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.home-service-area-card p:not(.eyebrow) {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.7;
}
.home-service-area-card p a {
  color: #fff;
  font-weight: 850;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}
.home-service-area-card .eyebrow {
  color: #ff9a55;
}
.home-service-area-card .btn {
  white-space: nowrap;
  background: #ef6c00;
  border-color: #ef6c00;
}
@media (max-width: 860px) {
  .home-expertise-grid {
    grid-template-columns: 1fr;
  }
  .home-expertise-grid article {
    min-height: auto;
  }
  .home-service-area-card {
    grid-template-columns: 1fr;
    padding: 25px 22px;
  }
  .home-service-area-card .btn {
    justify-self: start;
    white-space: normal;
  }
}
@media (max-width: 520px) {
  .home-expertise-grid article {
    padding: 20px 18px 20px 64px;
  }
  .home-expertise-grid article::before {
    top: 20px;
    left: 18px;
  }
  .home-service-area-card {
    border-radius: 21px;
  }
  .home-service-area-card .btn {
    width: 100%;
    text-align: center;
  }
}
