:root {
  --forest-950: #071f18;
  --forest-900: #0b2b21;
  --forest-800: #164333;
  --forest-700: #245543;
  --moss-500: #7e966e;
  --sage-200: #dce4d4;
  --sun-400: #e7c277;
  --linen-100: #f5f2e9;
  --paper: #fbfaf5;
  --ink: #14241d;
  --muted: #657169;
  --line: rgba(20, 36, 29, 0.17);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 1.8rem 5rem rgba(7, 31, 24, 0.15);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  --max: 84rem;
  --reading: 48rem;
  --organic: 3.2rem 3.2rem 0.75rem 3.2rem;

  /* Compatibilite avec les variables des pages historiques. */
  --accent: var(--forest-800);
  --accent-light: var(--forest-700);
  --accent-dark: var(--forest-950);
  --beige-dore: var(--sun-400);
  --beige-clair: var(--linen-100);
  --blanc: var(--paper);
  --noir: var(--ink);
  --gris: var(--muted);
  --font-main: var(--sans);
  --radius: 0.75rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--forest-950);
  font-size: 16px;
}

body.inner-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--linen-100);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.inner-page.menu-open {
  overflow: hidden;
}

body.inner-page img,
body.inner-page svg {
  display: block;
  max-width: 100%;
}

body.inner-page button,
body.inner-page input,
body.inner-page select,
body.inner-page textarea {
  font: inherit;
}

body.inner-page a {
  color: var(--forest-700);
  text-underline-offset: 0.2em;
}

body.inner-page :focus-visible {
  outline: 3px solid var(--sun-400);
  outline-offset: 4px;
}

.inner-skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--forest-950) !important;
  background: #fff;
  transform: translateY(-180%);
}

.inner-skip-link:focus {
  transform: translateY(0);
}

/* L'ancien selecteur de palettes est neutralise : une seule identite visuelle. */
body.inner-page .color-picker {
  display: none !important;
}

/* Garde-fou si un ancien script remet l'attribut data-theme. */
body.inner-page[data-theme] {
  --accent: var(--forest-800);
  --accent-light: var(--forest-700);
  --accent-dark: var(--forest-950);
  --beige-dore: var(--sun-400);
  --beige-clair: var(--linen-100);
}

/* Navigation commune */
body.inner-page > nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  min-height: 6rem;
  padding: 0 max(1.5rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: #fff;
  background: rgba(7, 31, 24, 0.72);
  border-bottom: 1px solid var(--white-line);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

body.inner-page > nav.is-scrolled,
body.inner-page > nav.menu-visible {
  background: rgba(7, 31, 24, 0.95);
  border-bottom-color: transparent;
  box-shadow: 0 0.8rem 2rem rgba(4, 21, 16, 0.18);
}

body.inner-page > nav .logo {
  display: inline-grid;
  justify-self: start;
  align-items: initial;
  color: #fff;
  text-decoration: none;
  line-height: 0.92;
}

body.inner-page > nav .logo-text {
  display: contents;
}

body.inner-page > nav .logo-name {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.075em;
}

body.inner-page > nav .logo-tag {
  margin-top: 0.38rem;
  color: #fff;
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  opacity: 0.74;
}

body.inner-page > nav .nav-links {
  margin: 0;
  padding: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
  list-style: none;
}

body.inner-page > nav .nav-links > li > a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

body.inner-page > nav .nav-links > li > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

body.inner-page > nav .nav-links > li > a:hover::after,
body.inner-page > nav .nav-links > li > a:focus-visible::after,
body.inner-page > nav .nav-links > li > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.inner-page > nav .nav-cta {
  min-height: 3.15rem;
  padding: 0.75rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-950) !important;
  background: #f7ecd2;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750 !important;
}

body.inner-page > nav .nav-dropdown {
  position: relative;
}

body.inner-page > nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  min-width: 17rem;
  margin: 0;
  padding: 0.55rem;
  display: none;
  list-style: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.35rem 1.35rem 0.4rem 1.35rem;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

body.inner-page > nav .nav-dropdown-menu::before {
  position: absolute;
  inset: -1rem 0 auto;
  height: 1rem;
  content: "";
}

body.inner-page > nav .nav-dropdown:hover .nav-dropdown-menu,
body.inner-page > nav .nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

body.inner-page > nav .nav-dropdown-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  color: var(--ink) !important;
  text-decoration: none;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  border-radius: 0.75rem;
}

body.inner-page > nav .nav-dropdown-menu a:hover,
body.inner-page > nav .nav-dropdown-menu a:focus-visible {
  color: var(--forest-800) !important;
  background: var(--sage-200);
}

body.inner-page > nav .burger {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.72rem 0;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  cursor: pointer;
}

body.inner-page > nav .burger span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0 auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.inner-page > nav .burger.active span:nth-child(1) {
  transform: translateY(0.33rem) rotate(45deg);
}

body.inner-page > nav .burger.active span:nth-child(2) {
  opacity: 0;
}

body.inner-page > nav .burger.active span:nth-child(3) {
  transform: translateY(-0.33rem) rotate(-45deg);
}

body.inner-page > .mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 6rem 0 0;
  padding: 2rem 1.5rem 7rem;
  display: none;
  overflow-y: auto;
  color: #fff;
  background: var(--forest-950);
}

body.inner-page > .mobile-menu.active {
  display: grid;
  align-content: start;
}

body.inner-page > .mobile-menu a,
body.inner-page > .mobile-menu .mobile-menu-label {
  padding: 0.9rem 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--white-line);
}

body.inner-page > .mobile-menu .mobile-menu-label {
  margin: 0.65rem 0 0;
  color: var(--sun-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 0;
}

/* Hero commun : panorama de jardin et traitement editorial de la home. */
body.inner-page .hero {
  position: relative;
  min-height: clamp(35rem, 68svh, 49rem);
  padding: clamp(10rem, 16vh, 13rem) max(1.5rem, calc((100vw - var(--max)) / 2)) clamp(5rem, 9vh, 7rem);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background-color: var(--forest-900);
  background-image: url("../img/solaverde-hero-aube.webp");
  background-position: center 57%;
  background-size: cover;
}

body.inner-page .hero::before,
body.inner-page .hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body.inner-page .hero::before {
  background:
    linear-gradient(90deg, rgba(3, 18, 13, 0.84) 0%, rgba(3, 18, 13, 0.55) 42%, rgba(3, 18, 13, 0.14) 75%),
    linear-gradient(0deg, rgba(2, 15, 11, 0.72) 0%, transparent 55%, rgba(3, 16, 12, 0.28) 100%);
}

body.inner-page .hero::after {
  inset: auto -8vw -5.6rem 38%;
  height: 8rem;
  background: var(--linen-100);
  border-radius: 100% 0 0;
  transform: rotate(-1.5deg);
}

body.inner-page .hero-container,
body.inner-page .hero > h1 {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  max-width: none;
  margin: 0 auto;
}

body.inner-page .hero-container {
  text-align: left;
}

body.inner-page .breadcrumb {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
}

body.inner-page .breadcrumb a {
  color: inherit;
}

body.inner-page .hero h1 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.6vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

body.inner-page .hero h1 em {
  color: inherit;
  font-style: normal;
}

body.inner-page .hero-intro {
  max-width: 48rem;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

body.inner-page .hero-meta {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

body.inner-page .hero-cta {
  min-height: 3.25rem;
  margin-top: 2rem;
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-950);
  background: #f7ecd2;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
}

body.inner-page .big-number {
  max-width: 29rem;
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--organic);
  backdrop-filter: blur(14px);
}

body.inner-page .big-number-value {
  color: #f7ecd2;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

body.inner-page .big-number-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Rythme editorial */
body.inner-page section:not(.hero) {
  padding: clamp(4.5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2));
}

body.inner-page section:not(.hero):nth-of-type(odd) {
  background-color: var(--paper);
}

body.inner-page section:not(.hero):nth-of-type(even) {
  background-color: var(--linen-100);
}

body.inner-page .container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0;
}

body.inner-page .section-header {
  max-width: 62rem;
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  text-align: left;
}

body.inner-page .section-tag {
  position: relative;
  margin: 0 0 1.15rem;
  padding-left: 3rem;
  display: block;
  color: var(--forest-800);
  font-size: 0.77rem;
  font-weight: 720;
  letter-spacing: 0.035em;
}

body.inner-page .section-tag::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

body.inner-page .section-title,
body.inner-page section:not(.hero) h2 {
  max-width: 22ch;
  margin: 0 0 1.5rem;
  color: var(--forest-900);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.inner-page section:not(.hero) h3 {
  margin: 2rem 0 0.7rem;
  color: var(--forest-800);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}

body.inner-page p,
body.inner-page li {
  text-wrap: pretty;
}

body.inner-page .content-text {
  max-width: var(--reading);
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.8;
}

body.inner-page .content-text + .content-text {
  margin-top: 3rem;
}

body.inner-page .content-text h2:not(:first-child) {
  margin-top: 4.5rem;
}

body.inner-page ul,
body.inner-page ol {
  padding-left: 1.25rem;
}

body.inner-page li::marker {
  color: var(--moss-500);
}

/* Cartes organiques reprises de la direction 4 validee. */
body.inner-page :is(
  .blog-card,
  .service-item,
  .process-step,
  .prestation-card,
  .eco-card,
  .pricing-card,
  .step-card,
  .projet-card,
  .damage-card,
  .accompagnement-item,
  .assurance-step,
  .eligibility-card,
  .legal-card,
  .info-card,
  .faq-item
) {
  margin-top: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ink);
  background: rgba(251, 250, 245, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--organic);
  box-shadow: none;
}

body.inner-page :is(
  .blog-card,
  .service-item,
  .process-step,
  .prestation-card,
  .eco-card,
  .pricing-card,
  .step-card,
  .projet-card,
  .damage-card,
  .accompagnement-item,
  .assurance-step,
  .eligibility-card,
  .legal-card
):nth-child(even) {
  border-radius: 3.2rem 0.75rem 3.2rem 3.2rem;
}

body.inner-page :is(
  .services-grid,
  .process-steps,
  .prestations-grid,
  .eco-grid,
  .pricing-grid,
  .steps-grid,
  .projets-grid,
  .damage-grid,
  .accompagnement-grid,
  .assurance-steps,
  .eligibility-grid,
  .legal-grid,
  .blog-grid
) {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.inner-page :is(.process-steps, .steps-grid) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.inner-page :is(.eligibility-grid, .legal-grid, .blog-grid) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.inner-page :is(
  .service-item,
  .process-step,
  .prestation-card,
  .eco-card,
  .pricing-card,
  .step-card,
  .projet-card,
  .damage-card,
  .accompagnement-item,
  .assurance-step,
  .eligibility-card,
  .legal-card
) h3 {
  margin-top: 0.85rem;
}

body.inner-page :is(.prestation-icon, .projet-icon, .damage-icon, .step-icon) {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--forest-800);
  background: var(--sage-200);
  border-radius: 50%;
  font-size: 1.25rem;
}

body.inner-page .step-number {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: #fff;
  background: var(--forest-800);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.25rem;
}

body.inner-page .pricing-card.featured {
  color: #fff;
  background: var(--forest-800);
  border-color: var(--forest-800);
  transform: none;
}

body.inner-page .pricing-card.featured h3,
body.inner-page .pricing-card.featured .pricing-price {
  color: #fff;
}

body.inner-page .pricing-badge {
  color: var(--forest-950);
  background: var(--sun-400);
}

body.inner-page .pricing-price {
  color: var(--forest-800);
  font-family: var(--display);
}

/* Blog */
body.inner-page .blog-card {
  padding: 0;
  overflow: hidden;
}

body.inner-page .blog-card-image {
  min-height: 13rem;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  color: #fff !important;
  background: var(--forest-800) !important;
}

body.inner-page .blog-card-body {
  padding: 1.8rem;
}

body.inner-page .blog-card-title {
  margin: 0.6rem 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

body.inner-page .blog-card-title a,
body.inner-page .blog-card-link {
  color: var(--forest-800);
}

body.inner-page .blog-card-date {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

body.inner-page .article-prose {
  width: min(100%, var(--reading));
  max-width: var(--reading);
  margin-inline: auto;
  padding: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

body.inner-page .article-prose h2 {
  max-width: none;
  margin-top: clamp(4rem, 8vw, 7rem);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

body.inner-page .article-prose h3 {
  margin-top: 2.7rem;
}

body.inner-page .article-prose p,
body.inner-page .article-prose ul,
body.inner-page .article-prose ol {
  margin-bottom: 1.35rem;
}

body.inner-page :is(.callout, .example-box, .highlight-box, .assurance-highlight, .voir-aussi) {
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) !important;
  color: var(--ink) !important;
  background: var(--sage-200) !important;
  border: 0 !important;
  border-radius: var(--organic) !important;
  box-shadow: none !important;
}

body.inner-page :is(.callout, .example-box, .highlight-box, .assurance-highlight, .voir-aussi) h2,
body.inner-page :is(.callout, .example-box, .highlight-box, .assurance-highlight, .voir-aussi) h3,
body.inner-page :is(.callout, .example-box, .highlight-box, .assurance-highlight, .voir-aussi) a {
  color: var(--forest-900) !important;
}

body.inner-page .legal-section .highlight-box p {
  color: var(--ink) !important;
  opacity: 1;
}

body.inner-page .timeline {
  border-left-color: var(--moss-500);
}

body.inner-page .faq-list {
  display: grid;
  gap: 0.8rem;
}

body.inner-page .faq-item {
  width: 100%;
}

body.inner-page .faq-question {
  width: 100%;
  color: var(--forest-900);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 720;
  cursor: pointer;
}

body.inner-page .faq-answer {
  color: var(--muted);
}

/* Legal */
body.inner-page .toc {
  margin-bottom: 4rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  background: var(--sage-200);
  border: 0;
  border-radius: var(--organic);
}

body.inner-page section:not(.hero) .toc h2,
body.inner-page section:not(.hero) .toc h3 {
  max-width: none;
  margin: 0 0 var(--space-sm);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  text-wrap: wrap;
}

body.inner-page .legal-section {
  max-width: var(--reading);
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.inner-page .legal-section h2 {
  max-width: none;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

body.inner-page .info-card {
  margin-top: 1.5rem;
}

/* Blocs de zone et badges */
body.inner-page .zones-list {
  max-width: 66rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body.inner-page .zone-tag {
  padding: 0.65rem 1rem;
  color: var(--forest-800);
  background: var(--sage-200);
  border: 1px solid transparent;
  border-radius: 999px;
}

body.inner-page .sap-container {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--organic);
  box-shadow: none;
}

body.inner-page .sap-badge {
  color: var(--forest-900);
  background: var(--sage-200);
  border-radius: var(--organic);
}

/* CTA commun */
body.inner-page :is(.cta-section, .article-cta) {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-900) !important;
  text-align: left;
}

body.inner-page .article-cta {
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--organic);
}

body.inner-page :is(.cta-section, .article-cta)::after {
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 25rem;
  height: 25rem;
  background: rgba(126, 150, 110, 0.18);
  border-radius: 50%;
  content: "";
}

body.inner-page :is(.cta-section, .article-cta) .container,
body.inner-page .article-cta > * {
  position: relative;
  z-index: 1;
}

body.inner-page :is(.cta-section, .article-cta) h2 {
  max-width: 18ch;
  color: #fff;
}

body.inner-page :is(.cta-section, .article-cta) p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.8);
}

body.inner-page .cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

body.inner-page :is(.cta-btn, .pricing-cta) {
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-950) !important;
  background: #f7ecd2 !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
  box-shadow: none;
}

body.inner-page .cta-btn-secondary {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

/* Footer canonique : structure, proportions et hierarchie identiques a la home. */
body.inner-page > .site-footer {
  margin: 0;
  padding: 4rem 0 7rem;
  color: rgba(255, 255, 255, 0.7);
  background: #051913;
  border: 0;
  text-align: start;
  line-height: normal;
}

body.inner-page > nav + .mobile-menu + footer {
  margin-top: 6rem;
}

body.inner-page > .site-footer .shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

body.inner-page > .site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.8fr;
  gap: 3rem;
}

body.inner-page > .site-footer .wordmark {
  display: inline-grid;
  color: #fff;
  text-decoration: none;
  line-height: 0.92;
}

body.inner-page > .site-footer .wordmark strong {
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.075em;
}

body.inner-page > .site-footer .wordmark span {
  margin-top: 0.38rem;
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  opacity: 0.74;
}

body.inner-page > .site-footer .footer-brand p {
  max-width: 29rem;
  margin: 1.35rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 1;
}

body.inner-page > .site-footer .footer-column strong {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.8rem;
}

body.inner-page > .site-footer .footer-column a,
body.inner-page > .site-footer .footer-column span {
  width: fit-content;
  margin: 0.55rem 0;
  display: block;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.55;
}

body.inner-page > .site-footer .footer-column a,
body.inner-page > .site-footer .footer-bottom a {
  text-decoration: underline;
}

body.inner-page > .site-footer .footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.7fr;
  gap: 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

body.inner-page > .site-footer .footer-bottom > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

body.inner-page > .site-footer .footer-bottom strong {
  color: #fff;
  font-size: 0.72rem;
}

body.inner-page > .site-footer .footer-bottom span,
body.inner-page > .site-footer .footer-bottom a {
  color: inherit;
  line-height: 1.55;
}

body.inner-page > .site-footer .footer-bottom a {
  width: fit-content;
}

.inner-mobile-conversion {
  display: none;
}

@media (max-width: 1050px) {
  body.inner-page :is(.process-steps, .steps-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.inner-page :is(.services-grid, .prestations-grid, .eco-grid, .pricing-grid, .projets-grid, .damage-grid, .accompagnement-grid, .assurance-steps) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.inner-page > nav {
    grid-template-columns: auto auto;
    min-height: 5.25rem;
  }

  body.inner-page > nav .nav-links {
    display: none;
  }

  body.inner-page > nav .burger {
    justify-self: end;
    display: flex;
  }

  body.inner-page > .mobile-menu {
    inset-block-start: 5.25rem;
  }

  body.inner-page .hero {
    min-height: 38rem;
    padding-top: 9rem;
  }

  body.inner-page .hero h1 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  body.inner-page > .site-footer .footer-grid,
  body.inner-page > .site-footer .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.inner-page > .site-footer .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 6rem;
  }

  body.inner-page .hero {
    min-height: 36rem;
    padding-right: 1.25rem;
    padding-bottom: 4.5rem;
    padding-left: 1.25rem;
    background-position: 62% 55%;
  }

  body.inner-page .hero::after {
    display: none;
  }

  body.inner-page .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  body.inner-page section:not(.hero) {
    padding: 4.5rem 1.25rem;
  }

  body.inner-page .section-title,
  body.inner-page section:not(.hero) h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  body.inner-page :is(
    .services-grid,
    .process-steps,
    .prestations-grid,
    .eco-grid,
    .pricing-grid,
    .steps-grid,
    .projets-grid,
    .damage-grid,
    .accompagnement-grid,
    .assurance-steps,
    .eligibility-grid,
    .legal-grid,
    .blog-grid
  ) {
    grid-template-columns: 1fr;
  }

  body.inner-page .big-number {
    align-items: flex-start;
    flex-direction: column;
  }

  body.inner-page .cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  body.inner-page :is(.cta-btn, .pricing-cta) {
    width: 100%;
  }

  .inner-mobile-conversion {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 1px;
    padding: 0.5rem;
    background: rgba(7, 31, 24, 0.94);
    border-top: 1px solid var(--white-line);
    backdrop-filter: blur(16px);
  }

  .inner-mobile-conversion a {
    min-height: 3.25rem;
    display: grid;
    place-items: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 750;
    border-radius: 999px;
  }

  .inner-mobile-conversion a:last-child {
    color: var(--forest-950) !important;
    background: #f7ecd2;
  }
}

@media (max-width: 620px) {
  body.inner-page > .site-footer .shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  body.inner-page > .site-footer .wordmark strong {
    font-size: 1.5rem;
  }

  body.inner-page > .site-footer .footer-grid,
  body.inner-page > .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  body.inner-page > .site-footer .footer-bottom {
    align-items: flex-start;
  }

  body.inner-page > .site-footer .footer-grid {
    gap: 2.25rem;
  }

  body.inner-page > .site-footer .footer-meta {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body.inner-page > nav,
  body.inner-page > .mobile-menu,
  .inner-mobile-conversion,
  .inner-skip-link,
  body.inner-page .cta-section,
  body.inner-page .article-cta {
    display: none !important;
  }

  body.inner-page .hero {
    min-height: 0;
    padding: 2rem 0;
    color: var(--ink);
    background: none;
  }

  body.inner-page .hero::before,
  body.inner-page .hero::after {
    display: none;
  }

  body.inner-page .hero h1,
  body.inner-page .hero-intro,
  body.inner-page .hero-meta,
  body.inner-page .breadcrumb {
    color: var(--ink);
  }
}
