:root {
  --blue-950: #102a50;
  --blue-900: #173c73;
  --blue-700: #2466a4;
  --blue-500: #50a4df;
  --blue-100: #e7f2fa;
  --ink: #142033;
  --muted: #607087;
  --line: #d9e2ec;
  --paper: #ffffff;
  --surface: #f4f7fa;
  --green: #67855c;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow: 0 22px 60px rgba(18, 47, 88, 0.13);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--blue-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #bfe1f6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 30px;
  color: var(--blue-950);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 720;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  font-weight: 680;
}

h3 {
  font-size: 1.55rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 226, 236, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
  position: relative;
  color: #35455a;
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: grid;
  padding: 12px 18px;
  color: white;
  background: var(--blue-900);
  border-radius: 12px;
  line-height: 1.1;
  text-decoration: none;
}

.header-call span {
  margin-bottom: 5px;
  color: #cce8f9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 118px;
  background:
    linear-gradient(115deg, rgba(231, 242, 250, 0.88), rgba(255, 255, 255, 0) 55%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 6%;
  width: 18vw;
  min-width: 170px;
  height: 7px;
  background: var(--blue-500);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #485b72;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(66px, 1fr));
  max-width: 610px;
  margin: 0 0 34px;
  gap: 11px;
}

.hero-service-item {
  display: grid;
  align-content: start;
  justify-items: center;
  color: var(--blue-950);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-service-item:focus-visible {
  border-radius: 12px;
}

.hero-service-icon {
  display: grid;
  width: 100%;
  max-width: 82px;
  margin-bottom: 10px;
  padding: 18px;
  color: white;
  aspect-ratio: 1;
  place-items: center;
  background: var(--blue-900);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(23, 60, 115, 0.15);
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.hero-service-item:hover .hero-service-icon {
  background: var(--blue-700);
  transform: translateY(-3px);
}

.hero-service-item:focus-visible .hero-service-icon {
  background: var(--blue-700);
  transform: translateY(-3px);
}

.service-card[id],
.cleaning[id] {
  scroll-margin-top: 112px;
}

.hero-service-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-service-icon .icon-slash {
  stroke-width: 2.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--blue-900);
}

.button-primary:hover {
  background: var(--blue-950);
}

.button-secondary {
  color: var(--blue-900);
  border-color: #bdccda;
  background: rgba(255, 255, 255, 0.76);
}

.button-secondary:hover {
  border-color: var(--blue-700);
  background: white;
}

.button-dark {
  width: 100%;
  color: white;
  background: var(--ink);
}

.button-light {
  color: var(--blue-950);
  background: white;
}

.button-light:hover {
  background: var(--blue-100);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: #4f6176;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
  gap: 10px 22px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  min-height: 630px;
}

.photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #e8edf2;
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  z-index: 1;
  top: 0;
  right: 0;
  width: 76%;
  height: 83%;
  border-radius: 100px 18px 18px 18px;
}

.photo-secondary {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 53%;
  height: 39%;
  border: 10px solid white;
  border-radius: 16px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 34px;
  display: grid;
  min-width: 176px;
  padding: 18px 20px;
  color: white;
  background: var(--blue-900);
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(16, 42, 80, 0.2);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.services {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  margin-bottom: 58px;
  gap: 70px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
}

.service-card-featured {
  grid-column: span 8;
  background:
    linear-gradient(120deg, rgba(231, 242, 250, 0.76), rgba(255, 255, 255, 0) 70%),
    white;
}

.service-card-dark {
  color: white;
  background: var(--blue-950);
  border-color: var(--blue-950);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 52px;
  color: var(--blue-700);
  border: 1px solid #c8d7e5;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.service-card-dark .service-number {
  color: #c4e7fb;
  border-color: rgba(255, 255, 255, 0.28);
}

.service-card h3 {
  margin-bottom: 17px;
}

.partner-pill {
  display: inline-flex;
  margin: -4px 0 18px;
  padding: 6px 10px;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card-dark .partner-pill {
  color: white;
  background: rgba(80, 164, 223, 0.22);
}

.service-card p {
  color: var(--muted);
}

.service-card-dark p {
  color: #d2deea;
}

.service-card ul {
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: #40516a;
  font-size: 0.9rem;
  list-style: none;
}

.service-card-dark ul {
  color: #e3edf7;
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 16px;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue-500);
  border-radius: 50%;
  content: "";
}

.services-note {
  margin: 38px 0 0;
  color: var(--muted);
  text-align: center;
}

.services-note a {
  color: var(--blue-900);
  font-weight: 800;
}

.coverage {
  color: white;
  background: var(--blue-950);
}

.coverage-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(54px, 8vw, 104px);
}

.coverage-intro h2 {
  max-width: 610px;
}

.coverage-intro > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: #d5e3ef;
  font-size: 1.02rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coverage-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.coverage-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 29px;
  place-items: center;
  color: var(--blue-950);
  background: #bfe1f6;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.coverage-card h3 {
  margin-bottom: 11px;
}

.coverage-card p {
  margin: 0;
  color: #d5e3ef;
  font-size: 0.88rem;
}

/* Page zones d'intervention */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 106px;
  color: white;
  background:
    radial-gradient(circle at 82% 25%, rgba(80, 164, 223, 0.25), transparent 32%),
    var(--blue-950);
}

.page-hero::after {
  position: absolute;
  right: -70px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.52fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
  color: #d9e8f3;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.sector-summary {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.sector-summary > span {
  display: block;
  margin-bottom: 20px;
  color: #bfe1f6;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sector-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-summary li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  gap: 20px;
}

.sector-summary li:last-child {
  border-bottom: 0;
}

.sector-summary strong {
  color: #bfe1f6;
}

.zones-overview {
  background: var(--surface);
}

.zones-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  margin-bottom: 52px;
  gap: 60px;
}

.zones-lead h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.zones-lead > p {
  margin-bottom: 7px;
  color: var(--muted);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zone-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
}

.zone-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 18px;
}

.zone-code {
  display: inline-grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: var(--blue-900);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.zone-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.zone-card > p {
  color: var(--muted);
}

.localities {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  gap: 8px;
}

.localities li {
  padding: 6px 10px;
  color: #40516a;
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.coverage-note {
  margin: 28px 0 0;
  padding: 20px 24px;
  color: #40516a;
  border-left: 4px solid var(--blue-500);
  background: white;
}

.area-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: start;
  gap: clamp(54px, 8vw, 104px);
}

.area-services-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.area-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-service-list a {
  min-height: 132px;
  padding: 24px;
  color: var(--blue-950);
  border: 1px solid var(--line);
  background: white;
  border-radius: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.area-service-list a:hover {
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.area-service-list span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.request-guide {
  background: var(--surface);
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  gap: 18px;
}

.request-step {
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
}

.request-step > span {
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.request-step h3 {
  margin: 22px 0 12px;
}

.request-step p {
  margin: 0;
  color: var(--muted);
}

.zone-faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(48px, 8vw, 100px);
}

.zone-faq details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.zone-faq details:first-child {
  border-top: 1px solid var(--line);
}

.zone-faq summary {
  color: var(--blue-950);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.zone-faq details p {
  max-width: 740px;
  margin: 15px 0 0;
  color: var(--muted);
}

.zone-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(34px, 6vw, 66px);
  color: white;
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(13, 39, 76, 0.2);
  gap: 38px;
}

.zone-cta h2 {
  margin-bottom: 12px;
}

.zone-cta p {
  max-width: 740px;
  margin: 0;
  color: #d7e7f3;
}

.zone-cta-actions {
  display: grid;
  min-width: 245px;
  gap: 10px;
}

.zone-cta-actions .button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.zone-cta-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cleaning {
  overflow: hidden;
}

.cleaning-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.cleaning-media {
  position: relative;
  min-height: 620px;
}

.cleaning-media > img {
  width: calc(100% - 44px);
  height: 570px;
  object-fit: cover;
  border-radius: 18px 100px 18px 18px;
  box-shadow: var(--shadow);
}

.certification-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: min(330px, 82%);
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(17, 42, 75, 0.13);
  gap: 16px;
}

.certification-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.certification-card p {
  margin: 0;
  color: #4b6650;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cleaning-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 32px;
  gap: 28px;
}

.detail-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-columns li {
  position: relative;
  margin: 12px 0;
  padding-left: 21px;
  color: #34465c;
  font-size: 0.94rem;
}

.detail-columns li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--blue-500);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
  gap: 12px;
}

.text-link span {
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr) minmax(210px, 0.62fr);
  align-items: center;
  margin-top: 82px;
  padding: 34px;
  color: white;
  background: var(--blue-950);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(16, 42, 80, 0.18);
  gap: clamp(28px, 5vw, 58px);
}

.partner-identity > span,
.partner-contact > span {
  display: block;
  margin-bottom: 13px;
  color: #bfe1f6;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-logo {
  display: grid;
  min-height: 138px;
  padding: 17px;
  overflow: hidden;
  place-items: center;
  background: white;
  border-radius: 13px;
}

.partner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partner-copy h3 {
  max-width: 620px;
  margin-bottom: 15px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.partner-copy p {
  max-width: 720px;
  margin-bottom: 22px;
  color: #d5e3ef;
  font-size: 0.94rem;
}

.partner-copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: #e9f3fa;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
  gap: 8px;
}

.partner-copy li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.partner-contact {
  display: grid;
  align-content: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-contact strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.partner-contact a {
  width: fit-content;
  color: white;
  font-size: 1.2rem;
  font-weight: 850;
  text-decoration: none;
}

.partner-contact .partner-email {
  margin-top: 15px;
  color: #bfe1f6;
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(191, 225, 246, 0.45);
  text-underline-offset: 4px;
}

.contact {
  padding-top: 30px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  overflow: hidden;
  padding: 0;
  color: white;
  background: var(--blue-900);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(13, 39, 76, 0.2);
}

.contact-main {
  padding: clamp(44px, 7vw, 82px);
}

.contact-main h2 {
  max-width: 700px;
}

.contact-intro {
  max-width: 690px;
  margin-bottom: 38px;
  color: #d7e7f3;
  font-size: 1.05rem;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.person {
  display: grid;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.person:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.person span {
  margin-bottom: 5px;
  color: #c5def0;
  font-size: 0.82rem;
}

.person strong {
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
}

.person small {
  margin-top: 15px;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 26px;
}

.contact-details a {
  color: white;
  font-weight: 750;
}

.contact-details address {
  color: #d7e7f3;
  font-size: 0.92rem;
  font-style: normal;
  text-align: right;
}

.hours {
  padding: clamp(38px, 5vw, 62px);
  color: var(--ink);
  background: white;
}

.hours h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.hours dl {
  margin: 0 0 30px;
}

.hours dl > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.hours dt {
  color: #5c6d82;
}

.hours dd {
  margin: 0;
  font-weight: 750;
}

.hours .closed dd {
  color: #9c3e3e;
}

/* Mentions légales */
.legal-hero .page-hero-grid {
  grid-template-columns: 1fr;
}

.legal-hero h1 {
  max-width: 780px;
}

.legal-hero .page-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.legal-content {
  background: var(--surface);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.legal-index {
  position: sticky;
  top: 116px;
  display: grid;
  padding: 26px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  gap: 4px;
}

.legal-index .eyebrow {
  margin-bottom: 13px;
}

.legal-index a {
  padding: 9px 0;
  color: var(--blue-900);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-index a:hover {
  color: var(--blue-500);
}

.legal-sections {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  scroll-margin-top: 112px;
}

.legal-card h2 {
  margin-bottom: 24px;
}

.legal-card h3 {
  margin: 30px 0 10px;
  font-size: 1.12rem;
}

.legal-card p {
  color: var(--muted);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--blue-700);
  font-weight: 750;
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  grid-template-columns: minmax(175px, 0.32fr) minmax(0, 1fr);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.legal-data > div:first-child {
  border-top: 1px solid var(--line);
}

.legal-data dt {
  color: #627389;
  font-size: 0.82rem;
  font-weight: 750;
}

.legal-data dd {
  margin: 0;
  color: var(--blue-950);
  font-weight: 650;
}

.legal-card address {
  font-style: normal;
}

.legal-note {
  margin-top: 24px;
  padding: 18px 20px;
  color: #40516a;
  border-left: 4px solid var(--blue-500);
  background: var(--blue-100);
}

.footer-copy {
  display: grid;
  gap: 8px;
}

.footer-registration {
  color: #52657d;
}

.site-footer {
  padding: 36px 0 96px;
  color: #67778b;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  gap: 30px;
}

.footer-inner img {
  width: 115px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-copyright {
  text-align: right;
}

.footer-inner a {
  color: var(--blue-900);
  font-weight: 750;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 20px;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.8fr);
    gap: 50px;
  }

  .hero-media {
    min-height: 530px;
  }

  .service-card,
  .service-card-featured {
    grid-column: span 6;
  }

  .cleaning-grid {
    gap: 55px;
  }

  .coverage-shell,
  .area-services-grid {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  }

  .partner-contact {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .contact-people {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 126px;
  }

  .header-call {
    padding: 11px 14px;
  }

  .header-call span {
    display: none;
  }

  .header-call strong {
    font-size: 0.82rem;
  }

  .hero {
    padding: 70px 0 82px;
  }

  .hero-grid,
  .cleaning-grid,
  .contact-shell,
  .section-heading,
  .page-hero-grid,
  .zones-lead,
  .zone-faq-grid,
  .zone-cta {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .hero-media {
    min-height: 520px;
  }

  .photo-main {
    width: 84%;
  }

  .photo-secondary {
    width: 58%;
  }

  .hero-note {
    right: 4px;
  }

  .section-heading {
    margin-bottom: 42px;
    gap: 24px;
  }

  .coverage-grid,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 72px 0 82px;
  }

  .sector-summary {
    max-width: 470px;
  }

  .zones-lead {
    margin-bottom: 40px;
    gap: 20px;
  }

  .request-steps {
    grid-template-columns: 1fr;
  }

  .zone-cta-actions {
    min-width: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .service-number {
    margin-bottom: 35px;
  }

  .cleaning-media {
    min-height: 540px;
  }

  .cleaning-media > img {
    height: 490px;
  }

  .cleaning-copy {
    order: -1;
  }

  .partner-panel {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding: 26px;
    gap: 30px;
  }

  .partner-logo {
    max-width: 330px;
  }

  .partner-contact {
    grid-column: auto;
  }

  .contact-shell {
    border-radius: 22px;
  }

  .contact-people {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner img {
    margin-inline: auto;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 780px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }

  .legal-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    position: relative;
  }

  .header-call {
    color: var(--blue-900);
    background: var(--blue-100);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-service-strip {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
    gap: 6px;
  }

  .hero-service-item {
    font-size: 0.51rem;
    letter-spacing: 0.025em;
  }

  .hero-service-icon {
    margin-bottom: 8px;
    padding: 13px;
    border-radius: 9px;
  }

  .hero-media {
    min-height: 400px;
  }

  .photo-main {
    width: 86%;
    height: 81%;
    border-radius: 70px 14px 14px 14px;
  }

  .photo-secondary {
    width: 61%;
    height: 36%;
    border-width: 7px;
  }

  .hero-note {
    right: 0;
    bottom: 18px;
    min-width: 142px;
    padding: 13px 15px;
    font-size: 0.7rem;
  }

  .service-card {
    padding: 28px;
  }

  .detail-columns,
  .contact-people,
  .area-service-list {
    grid-template-columns: 1fr;
  }

  .cleaning-media {
    min-height: 430px;
  }

  .cleaning-media > img {
    width: calc(100% - 18px);
    height: 390px;
    border-radius: 14px 60px 14px 14px;
  }

  .certification-card {
    width: 78%;
    padding: 13px;
  }

  .certification-card img {
    width: 60px;
    height: 60px;
  }

  .contact-main,
  .hours {
    padding: 36px 26px;
  }

  .contact-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details address {
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(16, 42, 80, 0.1);
    backdrop-filter: blur(15px);
    gap: 8px;
  }

  .mobile-actions a {
    padding: 11px;
    color: white;
    background: var(--blue-900);
    border-radius: 9px;
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }
}

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

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