:root {
  --ink: #071423;
  --ink-2: #122338;
  --muted: #5d6b7c;
  --line: #d8e2ef;
  --paper: #f5f8fc;
  --paper-2: #eaf1f8;
  --white: #ffffff;
  --green: #075ec8;
  --green-2: #00499f;
  --green-soft: #eaf3ff;
  --lime: #d9ebff;
  --orange: #f06d2f;
  --shadow: 0 24px 70px rgba(7, 20, 35, 0.14);
  --shadow-soft: 0 10px 32px rgba(7, 20, 35, 0.09);
  --radius: 10px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
.brand strong {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

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

.skip-link,
.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 2000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.container {
  width: min(100% - 40px, 1210px);
  margin: 0 auto;
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: var(--ink);
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 280ms var(--ease);
}

.site-header::before {
  content: "ENLÈVEMENT GRATUIT DANS TOUTE L'ÎLE-DE-FRANCE · 7J/7";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header {
  padding-top: 38px;
  height: calc(var(--header-height) + 38px);
}

.site-header.is-scrolled {
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-text-only {
  gap: 0;
}

.brand-logo {
  flex: 0 0 auto;
}

.brand-logo img {
  width: auto;
  height: 54px;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 950;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 200ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 1200;
  width: min(310px, calc(100vw - 32px));
  display: grid;
  gap: 2px;
  padding: 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d7e2ef;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(7, 20, 35, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-dropdown-menu a,
.home-clean .desktop-nav .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  color: #102033;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.desktop-nav .nav-dropdown-menu a:hover,
.home-clean .desktop-nav .nav-dropdown-menu a:hover {
  color: var(--green);
  background: #edf5ff;
}

.mobile-nav .mobile-zone-link {
  padding-left: 18px;
  font-size: 0.92rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.88rem;
  box-shadow: 0 4px 16px rgba(240, 109, 47, 0.36);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.phone-link:hover {
  background: #d45f28;
  box-shadow: 0 8px 24px rgba(240, 109, 47, 0.44);
}

.phone-link svg,
.floating-call svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transition: background 200ms var(--ease);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + 38px);
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height) - 38px);
  overflow: auto;
  padding: 16px 24px 28px;
  background: #0a1a2e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.mobile-nav.is-open {
  display: grid;
  align-content: start;
}

.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.mobile-nav a[aria-current="page"] {
  color: var(--white);
}

.mobile-nav .mobile-call {
  margin-top: 18px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  text-align: center;
  font-weight: 950;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: clamp(72px, 11vw, 130px) 0 clamp(64px, 8vw, 104px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: #04163e;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.60) contrast(1.15) brightness(0.82);
  transform-origin: center;
}

.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg,
      rgba(4, 22, 62, 0.96) 0%,
      rgba(7, 60, 160, 0.84) 45%,
      rgba(7, 94, 200, 0.55) 100%
    ),
    linear-gradient(180deg, transparent 48%, rgba(4, 22, 62, 0.80) 100%);
}

.hero::before {
  display: none;
}

.hero-layout {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.hero-copy {
  max-width: 700px;
  animation: fade-up 640ms var(--ease) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 16px;
  background: var(--green);
  border-radius: 2px;
  flex: 0 0 auto;
}

.hero .eyebrow {
  color: #7db8f7;
}

.hero .eyebrow::before {
  background: #7db8f7;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 8.3vw, 5.6rem);
  letter-spacing: -0.01em;
  line-height: 1.0;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(70%, 430px);
  height: 6px;
  margin-top: 6px;
  margin-left: 26%;
  background: linear-gradient(90deg, var(--green), rgba(7, 94, 200, 0.30));
  border-radius: 999px;
}

.keep-line {
  white-space: nowrap;
}

.hero-text {
  max-width: 620px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
  text-align: center;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 950;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transition: opacity 240ms var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(240, 109, 47, 0.34), inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-primary:hover {
  background: #d45f28;
  box-shadow: 0 16px 40px rgba(240, 109, 47, 0.38);
}

.btn-submit {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 24px rgba(7, 94, 200, 0.28), inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-submit:hover {
  background: var(--green-2);
  box-shadow: 0 16px 40px rgba(7, 94, 200, 0.32);
}

.btn-light {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-outline {
  color: var(--green);
  background: var(--white);
  border-color: #c0d5ee;
  box-shadow: 0 4px 14px rgba(7, 20, 35, 0.08);
}

.btn-outline:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(7, 94, 200, 0.14);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(36px, 6vw, 68px);
  color: var(--white);
  background: #071423;
  border-radius: 0;
  box-shadow: 0 20px 44px rgba(7, 20, 35, 0.16);
}

.hero-proof span {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(0.92rem, 2vw, 1rem);
  font-weight: 950;
}

.hero-proof span:nth-child(2) {
  color: var(--lime);
}

.hero-proof span:last-child {
  border-right: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(32px, 5vw, 52px);
}

.trust-strip span {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-strip strong {
  color: var(--white);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.request-panel,
.contact-form-panel,
.zone-detail {
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4deec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#demande {
  scroll-margin-top: 110px;
}

.home-request {
  padding: clamp(24px, 4vw, 34px);
  animation: fade-up 760ms var(--ease) 120ms both;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.30) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 8px 32px rgba(0, 0, 0, 0.22) !important;
}

.request-panel,
.contact-form-panel,
.zone-detail {
  padding: 22px;
}

.panel-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-heading span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.panel-heading strong {
  color: var(--ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  line-height: 1.08;
}

.lead-form,
.form-grid {
  display: grid;
  gap: 13px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c7d0c8;
  border-radius: var(--radius);
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
}

.lead-form .honeypot {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #8a9791;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(7, 94, 200, 0.12);
}

.upload-box {
  min-height: 74px;
  align-content: center;
  padding: 14px;
  border: 1px dashed #9eafc4;
  border-radius: var(--radius);
  background: #f7fbff;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-title {
  color: var(--green);
  font-weight: 950;
  text-transform: none;
  letter-spacing: 0;
}

.upload-note,
.privacy-note,
.form-message {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.privacy-note {
  text-align: center;
}

.form-message {
  padding: 12px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: var(--radius);
}

.form-message.is-error {
  color: #a53a1a;
  background: #fff1eb;
  border-color: rgba(223, 100, 40, 0.24);
}

.assurance-grid,
.service-list,
.service-detail-grid,
.document-list,
.local-grid,
.credibility-grid,
.image-feature-grid {
  display: grid;
  gap: 16px;
}

.assurance-grid article,
.service-list article,
.service-detail,
.document-list article,
.local-grid article,
.credibility-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(7, 20, 35, 0.03);
}

.assurance-grid span,
.service-detail > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 950;
}

.assurance-grid h2,
.service-list h3,
.service-detail h2,
.document-list strong,
.local-grid h3,
.credibility-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.assurance-grid p,
.service-list p,
.service-detail p,
.document-list span,
.local-grid p,
.credibility-grid span,
.section-copy p,
.page-hero p,
.zone-detail p {
  margin-top: 10px;
  color: var(--muted);
}

.home-gallery,
.home-zone {
  background: var(--paper);
}

.home-services,
.local-section,
.legal-page {
  background: var(--white);
}

.section-heading-row {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading-row h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.section-heading-row > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.image-feature {
  position: relative;
  min-height: clamp(280px, 42vw, 380px);
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 0 20px 56px rgba(7, 20, 35, 0.18);
}

.image-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
  filter: saturate(0.88);
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 35, 0.0) 30%, rgba(7, 20, 35, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 20, 35, 0.16), rgba(7, 20, 35, 0));
}

.image-feature:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1.04);
}

.image-feature > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}

.image-feature span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(7, 94, 200, 0.70);
  border: 1px solid rgba(7, 94, 200, 0.50);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: #cce0ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.image-feature h3 {
  font-size: 1.38rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.40);
}

.image-feature p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-service-list article {
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.home-service-list article:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(7, 94, 200, 0.28);
  box-shadow: var(--shadow-soft);
}

.split-layout,
.map-layout,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-copy h2,
.section-intro h2,
.zone-detail h2,
.page-hero h1,
.contact-form-panel h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-copy p + p {
  margin-top: 12px;
}

.text-link,
.local-grid a,
.legal-content a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover,
.local-grid a:hover,
.legal-content a:hover {
  color: var(--green-2);
}

.process-section,
.contact-cta {
  color: var(--white);
  background: #071423;
}

.process-section .section-intro h2,
.process-section .eyebrow,
.contact-cta h2,
.contact-cta .eyebrow {
  color: var(--white);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.timeline article:hover {
  transform: translate3d(0, -3px, 0);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

.timeline span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 950;
}

.timeline h3 {
  color: var(--white);
  font-size: 1.08rem;
}

.timeline p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.zone-preview {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mini-map {
  min-height: clamp(270px, 54vw, 340px);
  position: relative;
  overflow: hidden;
  background: #f9faf6;
  border-radius: var(--radius);
}

.mini-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  background: linear-gradient(135deg, #075ec8, #0f7bdc);
  clip-path: polygon(38% 0, 66% 9%, 88% 28%, 95% 52%, 78% 77%, 56% 100%, 28% 91%, 5% 68%, 10% 35%);
  opacity: 0.95;
}

.mini-map span {
  position: absolute;
  z-index: 2;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  min-width: 42px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd7ce;
  border-radius: 999px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}

.mini-map span:nth-child(1) { --x: 50%; --y: 45%; }
.mini-map span:nth-child(2) { --x: 72%; --y: 52%; }
.mini-map span:nth-child(3) { --x: 27%; --y: 47%; }
.mini-map span:nth-child(4) { --x: 50%; --y: 70%; }
.mini-map span:nth-child(5) { --x: 42%; --y: 42%; }
.mini-map span:nth-child(6) { --x: 57%; --y: 35%; }
.mini-map span:nth-child(7) { --x: 60%; --y: 54%; }
.mini-map span:nth-child(8) { --x: 39%; --y: 25%; }

.idf-visual {
  margin: 0;
  padding: clamp(16px, 3vw, 26px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.idf-svg-map {
  width: 100%;
  height: auto;
}

.idf-svg-map .dept {
  fill: #eef6ff;
  stroke: var(--green);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.idf-svg-map .petite {
  fill: #d9ebff;
}

.idf-svg-map .paris {
  fill: #ffffff;
  stroke-dasharray: 3 3;
}

.idf-svg-map .dept-line,
.idf-svg-map .dept-dash {
  fill: none;
  stroke: rgba(7, 20, 35, 0.34);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.idf-svg-map .dept-dash {
  stroke-dasharray: 5 6;
}

.idf-svg-map .map-point {
  fill: var(--orange);
  stroke: #ffffff;
  stroke-width: 4;
}

.idf-svg-map .depot-point {
  fill: var(--green);
}

.idf-svg-map .map-number {
  fill: var(--green);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.idf-svg-map .map-number.small {
  font-size: 20px;
}

.idf-svg-map .map-label,
.idf-svg-map .map-legend text {
  fill: var(--ink-2);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.idf-svg-map .label-paris {
  font-size: 20px;
}

.idf-svg-map .label-siege {
  font-size: 15px;
}

.idf-svg-map .map-legend rect {
  fill: #eef6ff;
  stroke: var(--green);
  stroke-width: 1.4;
}

.idf-svg-map .map-legend rect:nth-of-type(2) {
  fill: #d9ebff;
}

.idf-svg-map .map-legend rect:nth-of-type(3) {
  fill: #ffffff;
  stroke-dasharray: 2 2;
}

.cta-panel {
  display: grid;
  gap: 22px;
  align-items: center;
}

.contact-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.about-home {
  background: var(--white);
}

.about-panel {
  display: grid;
  gap: 12px;
}

.about-panel article {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.about-panel article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 94, 200, 0.26);
  box-shadow: 0 12px 32px rgba(7, 20, 35, 0.08);
}

.about-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.about-panel span {
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  padding: clamp(72px, 10vw, 124px) 0 clamp(54px, 7vw, 76px);
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding-bottom: 48px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero .btn {
  margin-top: 24px;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-detail li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-detail li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--green-soft);
}

.document-section,
.map-section,
.pro-section {
  background: var(--paper);
}

.document-list article {
  display: grid;
  gap: 6px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-methods strong {
  color: var(--ink);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.map-shell {
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.real-map {
  width: 100%;
  min-height: 520px;
}

.leaflet-container {
  font-family: "Inter", system-ui, sans-serif;
}

.zone-detail {
  box-shadow: var(--shadow-soft);
}

.zone-detail .eyebrow {
  margin-bottom: 8px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.local-grid article {
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.local-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 94, 200, 0.32);
  box-shadow: var(--shadow-soft);
}

.credibility-grid article:nth-child(1) { background: #f4f8ff; }
.credibility-grid article:nth-child(2) { background: #eef6ff; }
.credibility-grid article:nth-child(3) { background: #fff6ec; }
.credibility-grid article:nth-child(4) { background: #f5f7fa; }

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content dd {
  color: var(--muted);
}

.legal-content dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-content dt {
  color: var(--ink);
  font-weight: 900;
}

.legal-content dd {
  margin: 0 0 8px;
}

.site-footer {
  padding: 54px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #071423;
}

.footer-layout {
  display: grid;
  gap: 28px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.site-footer .brand strong,
.site-footer h2 {
  color: var(--white);
}

.site-footer .brand strong {
  color: var(--white) !important;
}

.site-footer .brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer p {
  max-width: 340px;
  margin-top: 14px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .footer-phone {
  color: var(--lime);
  font-size: 1.12rem;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

.floating-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.92rem;
  box-shadow: 0 8px 28px rgba(7, 94, 200, 0.40);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.floating-call:hover {
  background: var(--green-2);
  box-shadow: 0 14px 38px rgba(7, 94, 200, 0.46);
}


.toast {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 960;
  max-width: min(380px, calc(100% - 32px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  font-weight: 850;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.is-error {
  background: var(--orange);
}

.js .reveal {
  opacity: 1;
  transform: translate3d(0, 22px, 0);
  transition: transform 780ms var(--ease);
  will-change: transform;
}

.js .reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.hero-actions,
.cta-actions {
  flex-direction: row;
  align-items: center;
}

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

.assurance-grid,
.service-list,
.document-list,
.local-grid,
.credibility-grid,
.image-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-feature-large {
  grid-row: span 2;
  min-height: 520px;
}

.desktop-nav {
  display: flex;
}

.phone-link {
  display: inline-flex;
}

.menu-toggle {
  display: none;
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 476px);
}

.hero-photo {
  inset: 0;
  width: 100%;
  opacity: 0.38;
  filter: saturate(0.60) contrast(1.15) brightness(0.82);
  mask-image: none;
}

.split-layout,
.map-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

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

.timeline,
.service-list.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.local-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-heading-row {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
}

.image-feature-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.cta-panel {
  grid-template-columns: 1fr auto;
}

.footer-layout {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) 476px;
}





/* === HERO CENTRÉ (sans formulaire) === */
.hero-centered {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-centered .hero-copy {
  max-width: 800px;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered .trust-strip {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === IDF MAP PREMIUM === */
.idf-map-container {
  position: relative;
  width: 100%;
}

.idf-dept-count {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(7, 94, 200, 0.35);
  color: var(--white);
  text-align: center;
}

.idf-dept-count span {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.idf-dept-count small {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.90;
  line-height: 1.2;
  max-width: 58px;
  display: block;
  margin-top: 2px;
}

/* === STATS CARD (3e carte galerie) === */
.image-feature-stat {
  background: linear-gradient(140deg, #04163e 0%, #075ec8 100%);
}

.idf-stat-card {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.idf-stat-card > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #cce0ff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  width: fit-content;
}

.idf-stat-card h3 {
  font-size: 1.38rem;
  color: var(--white);
  line-height: 1.15;
}

.idf-stat-numbers {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.idf-stat-numbers > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.idf-stat-numbers strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.idf-stat-numbers small {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

.idf-dept-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.idf-dept-badges span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0;
  font-family: "Sora", "Inter", sans-serif;
}

/* === SECTION FORMULAIRE DE CONTACT (accueil) === */
.home-contact-form {
  background: var(--paper);
}

.home-form-layout {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.form-side-info {
  display: grid;
  gap: 16px;
}

.form-contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.form-contact-card h3 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-contact-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 950;
  font-size: 1.05rem;
}

.form-contact-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.home-form-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

/* === DEPARTMENT GRID (zone intervention) === */
.dept-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dept-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.dept-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 94, 200, 0.30);
  box-shadow: 0 12px 36px rgba(7, 20, 35, 0.10);
}

.dept-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent, rgba(7, 94, 200, 0.06));
  border-radius: 0 14px 0 80px;
}

.dept-number {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(7, 94, 200, 0.12);
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 20px;
}

.dept-card h3 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.dept-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 4px;
}

.dept-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.dept-card a::after {
  content: "→";
  transition: transform 180ms var(--ease);
}

.dept-card:hover a::after {
  transform: translateX(3px);
}

.dept-paris .dept-number {
  color: rgba(240, 109, 47, 0.18);
}

.dept-paris {
  border-color: rgba(240, 109, 47, 0.25);
  background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.dept-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dept-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* === COMMENT CA MARCHE - images === */
.process-images {
  display: grid;
  gap: 16px;
  margin-top: clamp(32px, 5vw, 52px);
}

.process-image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 14px;
}

.process-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 700ms var(--ease);
}

.process-image-card:hover img {
  transform: scale(1.04);
}

.process-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 20, 35, 0.75) 100%);
}

.process-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px;
  color: var(--white);
}

.process-image-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ecbff;
  margin-bottom: 4px;
}

.process-image-label strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Sora", "Inter", sans-serif;
}

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

.process-image-card {
  min-height: 320px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* === ACCUEIL CLEAN V2 === */
.home-clean {
  --home-ink: #071423;
  --home-muted: #637284;
  --home-blue: #075ec8;
  --home-blue-dark: #063f91;
  --home-blue-soft: #edf5ff;
  --home-cream: #f6f4ee;
  --home-card: #ffffff;
  --home-line: #dfe5ec;
  background: var(--home-cream);
}

.home-clean .site-header {
  color: var(--home-ink);
  background: rgba(250, 249, 245, 0.96);
  border-bottom: 1px solid rgba(7, 20, 35, 0.10);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-clean .site-header::before {
  content: "ENLÈVEMENT GRATUIT DANS TOUTE L'ÎLE-DE-FRANCE · 7J/7";
  color: #ffffff;
  background: var(--home-blue);
  letter-spacing: 0.05em;
}

.home-clean .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(7, 20, 35, 0.08);
}

.home-clean .brand strong,
.home-clean .desktop-nav a,
.home-clean .mobile-nav a {
  color: var(--home-ink);
}

.home-clean .brand strong {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 800;
}

.home-clean .desktop-nav a {
  color: rgba(7, 20, 35, 0.74);
  font-weight: 700;
}

.home-clean .desktop-nav a:hover,
.home-clean .desktop-nav a[aria-current="page"] {
  color: var(--home-blue);
}

.home-clean .phone-link {
  color: var(--home-ink);
  background: #ffffff;
  border: 1px solid #cfd7e1;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(7, 20, 35, 0.04);
}

.home-clean .phone-link:hover {
  color: var(--home-blue);
  background: #ffffff;
  border-color: rgba(7, 94, 200, 0.40);
  box-shadow: 0 10px 26px rgba(7, 94, 200, 0.12);
}

.home-clean .menu-toggle {
  background: #ffffff;
  border-color: #cfd7e1;
}

.home-clean .menu-toggle span:not(.sr-only) {
  background: var(--home-ink);
}

.home-clean .mobile-nav {
  background: #ffffff;
  border-top: 1px solid var(--home-line);
  box-shadow: 0 24px 48px rgba(7, 20, 35, 0.14);
}

.home-clean .mobile-nav a {
  border-bottom: 1px solid var(--home-line);
}

.home-clean .mobile-nav a[aria-current="page"] {
  color: var(--home-blue);
}

.home-clean .mobile-nav .mobile-call {
  color: #ffffff;
  background: var(--home-blue);
  border-radius: 8px;
}

.mobile-zone-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-zone-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
}

.mobile-zone-toggle span:first-child {
  min-width: 0;
}

.mobile-zone-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms var(--ease);
}

.mobile-zone-dropdown.is-open .mobile-zone-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.mobile-zone-menu {
  display: grid;
  padding: 0 0 12px;
}

.mobile-zone-menu[hidden] {
  display: none;
}

.mobile-zone-menu a,
.home-clean .mobile-zone-menu a {
  min-height: 42px;
  padding: 10px 0 10px 18px;
  border-bottom: 0;
  font-size: 0.92rem;
}

.mobile-zone-menu a:first-child,
.home-clean .mobile-zone-menu a:first-child {
  padding-left: 0;
  font-weight: 800;
}

.home-clean .mobile-zone-dropdown {
  border-bottom: 1px solid var(--home-line);
}

.home-clean .mobile-zone-toggle {
  color: var(--home-ink);
}

.home-clean .mobile-zone-dropdown.is-open .mobile-zone-toggle {
  color: var(--home-blue);
}

.home-clean .floating-call {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.home-clean .floating-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-clean .btn {
  min-height: 52px;
  border-radius: 8px;
  box-shadow: none;
}

.home-clean .btn-primary,
.home-clean .btn-blue,
.home-clean .btn-submit {
  color: #ffffff;
  background: var(--home-blue);
  border-color: var(--home-blue);
}

.home-clean .btn-primary:hover,
.home-clean .btn-blue:hover,
.home-clean .btn-submit:hover {
  background: var(--home-blue-dark);
  border-color: var(--home-blue-dark);
  box-shadow: 0 14px 30px rgba(7, 94, 200, 0.18);
}

.home-clean .btn-outline {
  color: var(--home-ink);
  background: #ffffff;
  border-color: #cfd7e1;
}

.home-clean .btn-outline:hover {
  color: var(--home-blue);
  border-color: rgba(7, 94, 200, 0.38);
  box-shadow: 0 12px 28px rgba(7, 20, 35, 0.08);
}

.home-clean .btn-dark {
  color: #ffffff;
  background: #102033;
  border-color: #102033;
}

.home-clean .btn-dark:hover {
  background: #071423;
  border-color: #071423;
}

.home-clean .eyebrow {
  color: var(--home-blue);
  letter-spacing: 0.14em;
}

.home-clean .eyebrow::before {
  width: 5px;
  height: 16px;
  background: var(--home-blue);
  border-radius: 2px;
}

.home-hero-v2 {
  position: relative;
  padding: clamp(74px, 9vw, 126px) 0 clamp(58px, 8vw, 108px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f5ef 0%, #ffffff 72%),
    repeating-linear-gradient(90deg, rgba(7, 20, 35, 0.04) 0 1px, transparent 1px 92px);
  border-bottom: 1px solid rgba(7, 20, 35, 0.08);
}

.home-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 94, 200, 0.07), transparent 38%, rgba(7, 94, 200, 0.06));
}

.hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.hero-v2-copy {
  max-width: 760px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.home-kicker::before {
  content: "";
  width: 5px;
  height: 18px;
  background: var(--home-blue);
  border-radius: 2px;
  flex: 0 0 auto;
}

.home-clean:not(.inner-clean) .home-kicker {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 12px;
  color: #064989;
  background: #edf5ff;
  border: 1px solid rgba(7, 94, 200, 0.16);
  border-radius: 8px;
  line-height: 1.25;
}

.home-clean:not(.inner-clean) .home-kicker::before {
  display: none;
}

.kicker-short {
  display: none;
}

.hero-v2-copy h1 {
  margin-top: 18px;
  color: var(--home-ink);
  font-size: clamp(2.85rem, 4.9vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-v2-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-v2-copy h1 span:last-child {
  color: var(--home-blue);
}

.hero-v2-text {
  max-width: 640px;
  margin-top: 24px;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
}

.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof-band {
  background: #102033;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof-band-inner > div {
  position: relative;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 24px;
  color: #ffffff;
  line-height: 1.45;
}

.hero-proof-band-inner > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.hero-proof-band-inner span {
  color: #8ec5ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-proof-band-inner strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.35;
}

.hero-v2-media {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  border-radius: 8px;
}

.hero-v2-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 20, 35, 0.16);
  filter: saturate(0.92) contrast(1.02);
}

.hero-v2-card {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  width: min(340px, calc(100% - 24px));
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--home-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(7, 20, 35, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.hero-v2-card:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(7, 94, 200, 0.28);
  box-shadow: 0 24px 58px rgba(7, 20, 35, 0.28);
}

.hero-v2-card:focus-visible {
  outline: 3px solid rgba(7, 94, 200, 0.45);
  outline-offset: 4px;
}

.hero-v2-card-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--home-blue);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 94, 200, 0.28);
}

.hero-v2-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-v2-card-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.hero-v2-card-label {
  display: block;
  color: var(--home-blue);
  font-size: 0.70rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-v2-card strong {
  display: block;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.62rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.hero-v2-card-note {
  display: block;
  color: var(--home-muted);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.section-top {
  display: grid;
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
}

.section-top h2,
.zone-v2-copy h2,
.faq-copy h2,
.form-band-copy h2 {
  margin-top: 8px;
  color: var(--home-ink);
  font-size: clamp(2.28rem, 5vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-top h2 {
  max-width: 900px;
}

.section-top h2 span {
  display: block;
}

.zone-v2-copy h2 {
  font-size: clamp(2.12rem, 4.4vw, 3.45rem);
}

.section-top .btn {
  width: fit-content;
  justify-self: start;
}

.steps-showcase .section-top .btn {
  align-self: end;
}

.steps-showcase {
  background: #f7f5ef;
  scroll-margin-top: 140px;
}

.step-cards {
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 35, 0.07);
}

.step-cards article {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid #dfe5ec;
}

.step-cards article:last-child {
  border-bottom: 0;
}

.step-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.step-card-head span,
.step-cards footer span {
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.step-cards footer span {
  color: #168a55;
}

.step-card-head i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-blue);
  background: var(--home-blue-soft);
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: 50%;
  flex: 0 0 auto;
}

.step-card-head svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.step-cards h3 {
  color: var(--home-ink);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.16;
}

.step-cards p {
  color: var(--home-muted);
  line-height: 1.62;
}

.step-cards footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed #d7dde5;
}

.step-cards footer strong {
  color: var(--home-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.steps-cta {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 26px);
  color: #ffffff;
  background: #102033;
  border-radius: 8px;
}

.steps-cta strong {
  display: block;
  font-size: 1.05rem;
}

.steps-cta > div > span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.steps-cta .steps-cta-line {
  display: inline;
}

.steps-cta .steps-cta-line + .steps-cta-line::before {
  content: " · ";
}

.steps-phone {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: var(--home-ink);
  background: #ffffff;
  border-radius: 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 800;
}

.zone-showcase-v2 {
  background: #ffffff;
  scroll-margin-top: 140px;
}

.zone-v2-grid {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.zone-v2-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 18px;
  color: var(--home-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  color: #064989;
  background: #edf5ff;
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.city-chips span:last-child {
  color: var(--home-muted);
  background: #f0eee8;
  border-color: #e3ded4;
}

.zone-info-card {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 560px;
  margin-top: 28px;
  padding: 18px 20px;
  background: #f7f5ef;
  border: 1px solid #ded8cd;
  border-radius: 8px;
}

.zone-info-card > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--home-blue);
  border-radius: 50%;
  flex: 0 0 auto;
}

.zone-info-card svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.zone-info-card strong {
  display: block;
  color: var(--home-ink);
}

.zone-info-card small {
  display: block;
  margin-top: 3px;
  color: var(--home-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (min-width: 769px) {
  .hero-v2-text,
  .step-cards p,
  .zone-v2-copy p:not(.eyebrow),
  .faq-copy p:not(.eyebrow),
  .faq-list p,
  .form-band-copy p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }

  .zone-info-card {
    width: fit-content;
    max-width: 100%;
  }
}

.zone-map-card {
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  background: #ffffff;
  background-image: url("../images/carteidf_1_11zon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  border-radius: 8px;
}

.zone-map-card img {
  width: 100%;
  height: auto;
  opacity: 0;
  border-radius: 8px;
}

.faq-showcase {
  background: #f7f5ef;
}

.faq-grid {
  display: grid;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.faq-copy {
  max-width: 620px;
}

.faq-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-intro span {
  display: block;
}

.faq-intro span:first-child {
  white-space: nowrap;
}

.faq-copy .btn {
  margin-top: 22px;
}

.faq-list {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 35, 0.06);
}

.faq-list details {
  border-bottom: 1px solid #dfe5ec;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 20px 60px 20px 22px;
  color: var(--home-ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-ink);
  background: #eef0ed;
  border-radius: 50%;
  transform: translateY(-50%);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "×";
  color: #ffffff;
  background: var(--home-blue);
}

.faq-list p {
  margin: -4px 60px 22px 22px;
  color: var(--home-muted);
  line-height: 1.65;
}

.form-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, #071423 0%, #0b2a52 62%, #063f91 100%);
  scroll-margin-top: 140px;
}

.form-band-grid {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.form-band .eyebrow,
.form-band-copy h2 {
  color: #ffffff;
}

.form-band .eyebrow::before {
  background: #8ec5ff;
}

.form-title span {
  display: block;
}

.form-title span:last-child {
  white-space: nowrap;
}

.form-band-copy .form-title {
  font-size: clamp(2.28rem, 4.5vw, 3.55rem);
}

.form-band-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.72;
}

.form-band-copy p a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.form-band-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.form-band-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.form-band-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #8ec5ff;
  border-radius: 50%;
}

.form-band-phone {
  position: relative;
  width: min(100%, 430px);
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 34px;
  padding: 18px 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: none;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.form-band-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(142, 197, 255, 0.42);
}

.form-band-phone:focus-visible {
  outline: 3px solid rgba(142, 197, 255, 0.78);
  outline-offset: 4px;
}

.form-band-phone span {
  color: #8ec5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.form-band-phone strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1;
}

.form-card-clean {
  padding: clamp(18px, 3vw, 30px);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.form-card-clean .lead-form {
  gap: 14px;
}

.form-card-clean .lead-form input,
.form-card-clean .lead-form select,
.form-card-clean .lead-form textarea {
  border-color: #d1d9e2;
  border-radius: 8px;
}

.form-card-clean .upload-box {
  border-radius: 8px;
}

.form-card-clean .btn-submit {
  width: 100%;
}

.section-top {
  grid-template-columns: minmax(0, 1fr) auto;
}

.step-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-cards article {
  border-right: 1px solid #dfe5ec;
  border-bottom: 0;
}

.step-cards article:last-child {
  border-right: 0;
}

@media (min-width: 1025px) {
  .access-media-section {
    padding: 0;
  }

  .access-media-section .inner-media-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
  }

  .access-media-section .inner-photo-card {
    min-height: clamp(560px, 42vw, 720px);
    border-radius: 0;
    box-shadow: none;
  }

  .access-media-section .inner-content-card {
    width: min(640px, calc(100% - 96px));
    align-self: center;
    justify-self: center;
  }

  .document-clean .section-top h2 {
    max-width: none;
    white-space: nowrap;
  }

  .comment-hero .inner-hero-grid {
    width: min(80vw, 1540px);
    max-width: 1540px;
  }

  .steps-showcase #steps-title {
    white-space: nowrap;
  }

  .steps-showcase #steps-title span {
    display: inline;
  }

  .steps-showcase .section-top .btn {
    align-self: end;
    margin-bottom: 6px;
  }
}

@media (min-width: 769px) {
  .step-cards article {
    grid-template-rows: 46px 2rem minmax(0, 1fr) auto;
  }

  .step-card-head,
  .step-cards h3,
  .step-cards p,
  .step-cards footer {
    align-self: start;
  }

  .step-cards footer {
    align-self: end;
  }
}

.steps-cta {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.faq-grid {
  grid-template-columns: minmax(540px, 0.86fr) minmax(0, 1fr);
}

.zone-v2-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
}

.form-band-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 0.74fr);
}

.zone-v2-grid {
  width: min(100% - 40px, 1420px);
  grid-template-columns: minmax(500px, 600px) minmax(620px, 1fr);
}

.zone-map-card {
  margin-right: -125px;
}

.home-hero-v2 {
  padding: 0;
}

.hero-v2-grid {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - var(--header-height) - 38px);
  min-height: calc(100svh - var(--header-height) - 38px);
  margin: 0;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.hero-v2-copy {
  width: min(100%, 760px);
  max-width: 760px;
  justify-self: center;
  align-self: center;
  padding: clamp(70px, 8vw, 118px) clamp(28px, 4vw, 48px) clamp(58px, 7vw, 100px);
}

.hero-v2-copy h1 {
  font-size: clamp(2.45rem, 3.4vw, 4rem);
}

.hero-v2-media {
  min-height: inherit;
  border-radius: 0;
}

.hero-v2-media img {
  border-radius: 0;
  box-shadow: none;
}





/* === PAGES INTERNES CLEAN === */
.home-clean.inner-clean {
  background: #f7f5ef;
}

.home-clean.inner-clean .page-hero {
  position: relative;
  min-height: auto;
  padding: clamp(68px, 9vw, 118px) 0 clamp(54px, 7vw, 92px);
  color: var(--home-ink);
  background:
    linear-gradient(180deg, #f7f5ef 0%, #ffffff 78%),
    repeating-linear-gradient(90deg, rgba(7, 20, 35, 0.035) 0 1px, transparent 1px 92px);
  border-bottom: 1px solid rgba(7, 20, 35, 0.08);
}

.inner-hero-grid,
.contact-hero-grid,
.inner-media-grid,
.map-clean-grid,
.contact-form-clean-grid,
.legal-shell {
  display: grid;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.zone-hero .inner-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
}

.zone-hero .inner-hero-copy {
  max-width: 880px;
}

.zone-hero .inner-hero-copy h1 {
  max-width: 780px;
}

.zone-hero-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1040px;
}

.zone-hero-tags span,
.zone-hero-tags a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #064989;
  background: #ffffff;
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.22;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: 0 8px 24px rgba(7, 20, 35, 0.05);
}

.zone-hero-tags a:hover {
  border-color: rgba(7, 94, 200, 0.34);
  transform: translateY(-1px);
}

.inner-hero-copy {
  max-width: 790px;
}

.inner-hero-copy h1 {
  margin-top: 18px;
  color: var(--home-ink);
  font-size: clamp(2.35rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 600px;
}

.inner-hero-copy .comment-hero-title {
  max-width: 680px;
  font-size: 3rem;
  line-height: 1.06;
}

.comment-hero-title span {
  display: block;
  white-space: nowrap;
}

.comment-hero .hero-v2-actions {
  margin-top: 22px;
}

.inner-hero-copy p:not(.home-kicker):not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
}

.inner-hero-panel,
.contact-mini-panel,
.inner-content-card,
.contact-side-clean,
.legal-aside,
.legal-card,
.map-clean-card,
.clean-zone-detail {
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 35, 0.07);
}

.inner-hero-panel,
.contact-mini-panel,
.inner-content-card,
.contact-side-clean {
  padding: clamp(22px, 4vw, 34px);
}

.inner-hero-panel span,
.contact-mini-panel span {
  display: block;
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.prep-panel > span {
  color: #1f8f4d;
}

.inner-hero-panel ul {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.inner-hero-panel li,
.form-band-list li {
  line-height: 1.45;
}

.inner-hero-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--home-ink);
  font-weight: 780;
}

.inner-hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--home-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 94, 200, 0.12);
}

.inner-media-section,
.local-clean-section {
  background: #ffffff;
}

.inner-media-grid {
  align-items: stretch;
}

.inner-photo-card {
  margin: 0;
  min-height: clamp(320px, 48vw, 540px);
  overflow: hidden;
  background: #ffffff url("../images/casse-auto-france_2_11zon.webp") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(7, 20, 35, 0.12);
}

.inner-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.inner-content-card {
  display: grid;
  align-content: center;
}

.inner-content-card h2,
.contact-side-clean h2 {
  margin-top: 10px;
  color: var(--home-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.inner-content-card p,
.contact-side-clean p {
  margin-top: 16px;
  color: var(--home-muted);
  line-height: 1.7;
}

.clean-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.clean-checks span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: #064989;
  background: #edf5ff;
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: 999px;
  font-weight: 760;
  font-size: 0.88rem;
}

.document-clean {
  background: #f7f5ef;
}

.document-clean-grid {
  display: grid;
  gap: 14px;
}

.document-clean-grid details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 20, 35, 0.05);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.document-clean-grid details:hover,
.document-clean-grid details[open] {
  border-color: rgba(7, 94, 200, 0.30);
  box-shadow: 0 16px 38px rgba(7, 20, 35, 0.08);
}

.document-clean-grid summary {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 22px 64px 22px 24px;
  color: var(--home-ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.06rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.document-clean-grid summary::-webkit-details-marker {
  display: none;
}

.document-clean-grid summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-ink);
  background: #eef0ed;
  border-radius: 50%;
  transform: translateY(-50%);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
}

.document-clean-grid details[open] summary::after {
  content: "×";
  color: #ffffff;
  background: var(--home-blue);
}

.document-clean-grid p {
  margin: -6px 64px 24px 24px;
  color: var(--home-muted);
  line-height: 1.62;
}

.inner-cta {
  color: #ffffff;
  background: #102033;
}

.inner-cta-panel {
  display: grid;
  gap: 22px;
  align-items: center;
}

.inner-cta .eyebrow,
.inner-cta h2 {
  color: #ffffff;
}

.inner-cta .eyebrow::before {
  background: #8ec5ff;
}

.inner-cta h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.inner-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.inner-map-preview {
  margin: 0;
  min-height: 330px;
  border-radius: 8px;
}

.inner-map-preview img {
  width: 100%;
  height: auto;
  opacity: 1;
}

.map-clean-section {
  background: #ffffff;
}

.map-clean-grid {
  align-items: stretch;
}

.map-clean-card {
  overflow: hidden;
  padding: 0;
}

.home-clean.inner-clean .map-clean-card .real-map {
  min-height: clamp(420px, 58vw, 620px);
}

.clean-zone-detail {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: none;
}

.clean-zone-detail h2 {
  margin-top: 8px;
  color: var(--home-ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.clean-zone-detail p {
  margin-top: 14px;
  color: var(--home-muted);
  line-height: 1.68;
}

.clean-zone-detail .btn {
  width: fit-content;
  margin-top: 24px;
}

.local-clean-section .dept-card {
  background: #ffffff;
  border-radius: 8px;
}

.local-clean-section .dept-grid {
  grid-template-columns: 1fr;
}

.zone-departments-section {
  background: #ffffff;
}

.zone-dept-grid {
  gap: 16px;
}

.zone-dept-grid .dept-card {
  min-height: 242px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.dept-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dept-city-list li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #516273;
  background: #f5f8fc;
  border: 1px solid #e0e7f0;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.zone-dept-grid .dept-card a {
  margin-top: auto;
  padding-top: 16px;
}

.zone-cities-section {
  background: #f7f5ef;
}

.zone-cities-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.zone-cities-copy {
  max-width: 620px;
}

.zone-cities-copy h2,
.zone-conditions-panel h2 {
  margin-top: 8px;
  color: var(--home-ink);
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  line-height: 1.05;
}

.zone-cities-copy p:not(.eyebrow),
.zone-conditions-panel > div > p {
  margin-top: 16px;
  color: var(--home-muted);
  line-height: 1.7;
}

.zone-city-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.zone-city-cloud a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #064989;
  background: #ffffff;
  border: 1px solid rgba(7, 94, 200, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

.zone-city-cloud a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 200, 0.36);
  box-shadow: 0 10px 28px rgba(7, 20, 35, 0.08);
}

.zone-conditions-section {
  background: #ffffff;
}

.zone-conditions-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  background: #f7f5ef;
  border: 1px solid #ded8cd;
  border-radius: 8px;
}

.zone-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zone-condition-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
}

.zone-condition-grid span {
  color: var(--home-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.zone-condition-grid strong {
  color: var(--home-ink);
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.zone-condition-grid p {
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-hero {
  color: #ffffff;
  background:
    linear-gradient(135deg, #071423 0%, #0b2a52 62%, #063f91 100%) !important;
  border-bottom: 0 !important;
}

.contact-hero .home-kicker,
.contact-hero .inner-hero-copy h1 {
  color: #ffffff;
}

.contact-hero .home-kicker::before {
  background: #8ec5ff;
}

.contact-hero .inner-hero-copy p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.contact-hero-phone {
  display: inline-grid;
  gap: 4px;
  margin-top: 30px;
  color: #ffffff;
}

.contact-hero-phone span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-hero-phone strong {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.contact-mini-panel {
  color: var(--home-ink);
}

.contact-mini-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--home-blue);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

.contact-mini-panel p {
  margin-top: 10px;
  color: var(--home-muted);
  line-height: 1.58;
}

.contact-form-clean-section {
  background: #f7f5ef;
}

.contact-form-clean-grid {
  align-items: center;
}

.contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #f7f5ef;
  border: 1px solid #ded8cd;
  border-radius: 8px;
}

.contact-info-list span {
  color: var(--home-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info-list strong {
  color: var(--home-ink);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.contact-clean .form-card-clean {
  box-shadow: 0 18px 48px rgba(7, 20, 35, 0.08);
}

.legal-hero {
  padding-bottom: clamp(42px, 6vw, 72px) !important;
}

.legal-section {
  background: #f7f5ef;
}

.legal-shell {
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 62px);
  display: grid;
  gap: 8px;
  padding: 18px;
  box-shadow: none;
}

.legal-aside strong {
  margin-bottom: 6px;
  color: var(--home-ink);
  font-family: "Sora", "Inter", sans-serif;
}

.legal-aside a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--home-muted);
  border-radius: 8px;
  font-weight: 780;
}

.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
  color: var(--home-blue);
  background: #edf5ff;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
}

.legal-card section + section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #dfe5ec;
}

.legal-card h2 {
  color: var(--home-ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.legal-card p,
.legal-card dd {
  color: var(--home-muted);
  line-height: 1.75;
}

.legal-card p {
  margin-top: 10px;
}

.legal-card a {
  color: var(--home-blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px;
  background: #f7f5ef;
  border: 1px solid #ded8cd;
  border-radius: 8px;
}

.legal-card dt {
  color: var(--home-ink);
  font-weight: 900;
}

.legal-card dd {
  margin: 0 0 8px;
}

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

.inner-cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

.inner-hero-grid,
.contact-hero-grid,
.inner-media-grid,
.map-clean-grid,
.contact-form-clean-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.78fr);
}

.map-clean-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

@media (max-width: 1024px) {
  /* Responsive refinements: tablette paysage / petits ecrans */
  .desktop-nav {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-layout,
  .split-layout,
  .map-layout,
  .contact-layout,
  .reverse,
  .section-heading-row,
  .image-feature-grid,
  .home-form-layout,
  .section-top,
  .step-cards,
  .steps-cta,
  .faq-grid,
  .zone-v2-grid,
  .form-band-grid,
  .inner-cta-panel,
  .legal-shell,
  .inner-hero-grid,
  .contact-hero-grid,
  .inner-media-grid,
  .map-clean-grid,
  .contact-form-clean-grid,
  .zone-cities-grid,
  .zone-conditions-panel,
  .footer-layout,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .step-cards article {
    border-right: 0;
    border-bottom: 1px solid #dfe5ec;
  }

  .step-cards article:last-child {
    border-bottom: 0;
  }

  .timeline,
  .premium-timeline,
  .service-list.three,
  .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dept-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zone-hero-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .zone-city-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zone-condition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .home-hero-v2 {
    padding: clamp(74px, 9vw, 126px) 0 clamp(58px, 8vw, 108px);
  }

  .hero-v2-grid {
    width: min(100% - 40px, 1210px);
    max-width: 1210px;
    min-height: auto;
    margin: 0 auto;
    gap: clamp(34px, 6vw, 74px);
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-v2-copy {
    width: auto;
    max-width: 760px;
    justify-self: auto;
    align-self: auto;
    padding: 0;
  }

  .hero-v2-copy h1 {
    font-size: clamp(2.85rem, 4.9vw, 4rem);
  }

  .hero-v2-media {
    min-height: clamp(360px, 48vw, 560px);
    border-radius: 8px;
  }

  .hero-v2-media img {
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(7, 20, 35, 0.16);
  }

  .zone-v2-grid {
    width: min(100% - 40px, 1210px);
  }

  .zone-map-card {
    margin-right: 0;
  }

  .floating-call {
    display: inline-flex;
  }

  .phone-link {
    display: none;
  }

  .inner-hero-copy .comment-hero-title {
    font-size: 2.55rem;
  }
  
  .page-hero {
    padding-top: clamp(52px, 10vw, 76px);
  }

  .home-clean .floating-call {
    width: 56px;
    height: 56px;
    min-height: 56px;
    right: 18px;
    bottom: 18px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
  
  .home-clean .floating-call span {
    display: none;
  }
}


@media (max-width: 768px) {
  /* Responsive refinements: tablette portrait / mobile large */
  .assurance-grid,
  .service-list,
  .service-detail-grid,
  .document-list,
  .local-grid,
  .credibility-grid,
  .image-feature-grid,
  .process-images,
  .document-clean-grid,
  .timeline,
  .premium-timeline,
  .service-list.three {
    grid-template-columns: 1fr;
  }

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

  .zone-condition-grid {
    grid-template-columns: 1fr;
  }

  .zone-condition-grid article {
    min-height: auto;
  }

  .hero-proof-band-inner {
    grid-template-columns: 1fr;
  }

  .hero-proof-band-inner > div {
    min-height: 58px;
    padding: 16px 0;
  }

  .hero-proof-band-inner > div:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 1px;
    transform: none;
  }

  .hero-proof-band-inner strong {
    overflow-wrap: anywhere;
  }

  .container {
    width: min(100% - 32px, 1210px);
  }
  
  .site-header::before {
    justify-content: flex-start;
    padding: 0 20px;
    font-size: 0.72rem;
  }
  
  .brand small {
    font-size: 0.72rem;
  }
  
  .hero {
    padding-top: clamp(48px, 11vw, 68px);
  }
  
  .hero h1 {
    font-size: clamp(2.4rem, 10.8vw, 3.5rem);
    letter-spacing: -0.01em;
  }
  
  .hero h1::after {
    width: 76%;
    height: 5px;
    margin-left: 18%;
  }
  
  .hero-proof {
    grid-template-columns: 1fr;
  }
  
  .trust-strip {
    gap: 8px;
  }
  
  .trust-strip span {
    min-height: 68px;
    padding: 12px 10px;
  }
  
  .trust-strip strong {
    font-size: 1.1rem;
  }
  
  .trust-strip small {
    font-size: 0.64rem;
  }
  
  .hero-proof span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  
  .hero-proof span:last-child {
    border-bottom: 0;
  }
  
  .home-request {
    margin-top: 12px;
  }
  
  .image-feature {
    min-height: 292px;
  }
  
  .premium-timeline {
    grid-template-columns: 1fr;
  }
  
  .map-shell,
  .real-map {
    min-height: min(430px, 72vh);
  }

  .home-hero-v2 {
    padding: 52px 0 0;
    overflow: hidden;
  }

  .home-clean:not(.inner-clean) .home-kicker {
    padding: 7px 10px;
    letter-spacing: 0.10em;
  }

  .home-clean:not(.inner-clean) .kicker-full {
    display: none;
  }

  .home-clean:not(.inner-clean) .kicker-short {
    display: inline;
  }
  
  .hero-v2-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3rem);
    overflow-wrap: anywhere;
  }

  .hero-v2-copy,
  .hero-v2-media {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-v2-copy h1 span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-kicker {
    display: block;
    max-width: 100%;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-kicker::before {
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
  }

  .hero-v2-grid {
    width: min(100% - 32px, 1210px);
    max-width: calc(100vw - 32px);
    overflow: visible;
  }

  .hero-v2-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-v2-text,
  .step-cards p,
  .zone-v2-copy p:not(.eyebrow),
  .faq-copy p:not(.eyebrow),
  .faq-list p,
  .form-band-copy p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }
  
  .hero-v2-actions .btn,
  .steps-cta .btn,
  .steps-phone {
    width: 100%;
  }

  .steps-showcase .section-top .btn {
    display: none;
  }

  .steps-cta > div > span {
    font-size: 0.66rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .steps-cta > div {
    text-align: center;
  }

  .steps-cta .steps-cta-line {
    display: block;
  }

  .steps-cta .steps-cta-line + .steps-cta-line::before {
    content: "";
  }
  
  .hero-v2-media {
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0;
  }

  .hero-v2-media img {
    min-height: 0;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-v2-card {
    display: none;
  }
  
  .section-top .btn {
    width: 100%;
  }
  
  .zone-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    padding: 18px;
    color: #ffffff;
    background: #102033;
    border-color: rgba(142, 197, 255, 0.22);
    box-shadow: 0 18px 44px rgba(7, 20, 35, 0.16);
  }

  .zone-info-card > span {
    width: 42px;
    height: 42px;
    color: #8ec5ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(142, 197, 255, 0.34);
  }

  .zone-info-card strong {
    color: #ffffff;
    font-size: clamp(0.82rem, 3vw, 0.96rem);
    line-height: 1.28;
    white-space: nowrap;
  }

  .zone-info-card small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    line-height: 1.42;
    letter-spacing: 0;
    text-transform: none;
  }

  .zone-v2-grid {
    gap: 0;
  }
  
  .zone-v2-copy {
    display: contents;
  }

  .zone-v2-copy .eyebrow {
    order: 1;
  }

  .zone-v2-copy h2 {
    order: 2;
    margin-top: 14px;
  }

  .zone-v2-copy p:not(.eyebrow) {
    order: 3;
    margin-top: 16px;
  }

  .zone-map-card {
    order: 4;
    margin-top: 24px;
    padding: 0;
  }

  .city-chips {
    order: 5;
    gap: 8px;
  }

  .city-chips span {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .zone-info-card {
    order: 6;
  }

  .faq-intro span {
    display: inline;
  }

  .home-clean.inner-clean .page-hero {
    padding-top: 48px;
  }

  .contact-hero .contact-mini-panel {
    display: none;
  }

  .contact-form-clean-grid .form-card-clean {
    order: 1;
  }

  .contact-form-clean-grid .contact-side-clean {
    order: 2;
  }

  .zone-hero-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .inner-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .inner-hero-copy .comment-hero-title {
    font-size: 2rem;
    line-height: 1.08;
  }
  
  .inner-hero-panel,
  .contact-mini-panel,
  .inner-content-card,
  .contact-side-clean,
  .legal-card {
    padding: 20px;
  }
  
  .inner-photo-card {
    min-height: 300px;
  }

  .access-media-section {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .access-media-section .inner-photo-card {
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin-left: calc(50% - 50vw);
    background-position: center 68%;
    border-radius: 0;
    box-shadow: none;
  }

  .access-media-section .inner-content-card {
    padding-top: 0px;
    padding-bottom: 18px;
  }
  
  .inner-map-preview {
    min-height: 270px;
  }
  
  .clean-zone-detail .btn,
  .inner-cta .btn {
    width: 100%;
  }

  .faq-intro span:first-child {
    white-space: normal;
  }
  
  .legal-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .dept-grid,
  .zone-hero-tags,
  .zone-city-cloud {
    grid-template-columns: 1fr;
  }

  .inner-hero-copy h1,
  .section-top h2,
  .zone-cities-copy h2,
  .zone-conditions-panel h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .zone-hero-tags {
    max-width: 100%;
  }

  .zone-hero-tags span,
  .zone-hero-tags a,
  .zone-city-cloud a {
    min-height: 44px;
  }
}


@media (max-width: 480px) {
  /* Responsive refinements: mobile */
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .two-cols,
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .lead-form .two-cols:nth-of-type(1) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form .two-cols:nth-of-type(2) {
    grid-template-columns: minmax(0, 1.35fr) minmax(86px, 0.65fr);
  }

  .container {
    width: min(100% - 28px, 1210px);
  }
  
  .site-header::before {
    content: "ENLÈVEMENT GRATUIT DANS TOUTE L'ÎLE-DE-FRANCE · 7J/7";
    height: 34px;
    justify-content: center;
    padding: 0 12px;
    font-size: 0.56rem;
  }
  
  .site-header {
    padding-top: 34px;
    height: calc(var(--header-height) + 34px);
  }
  
  .mobile-nav {
    top: calc(var(--header-height) + 34px);
    max-height: calc(100vh - var(--header-height) - 34px);
  }
  
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo img {
    height: 48px;
    max-width: 150px;
  }
  
  .brand strong {
    font-size: 0.94rem;
  }
  
  .brand-text-only strong {
    max-width: 176px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .brand small {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hero h1 {
    font-size: clamp(1.62rem, 7.3vw, 2.05rem);
    line-height: 1.04;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-actions,
  .cta-actions {
    gap: 12px;
  }
  
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 44px;
    padding: 10px 12px;
  }
  
  .lead-form,
  .form-grid {
    gap: 10px;
  }
  
  .lead-form label {
    gap: 5px;
    font-size: 0.66rem;
  }
  
  .home-request,
  .request-panel,
  .contact-form-panel,
  .zone-detail {
    padding: 16px;
  }
  
  .panel-heading {
    gap: 8px;
    margin-bottom: 14px;
  }
  
  .panel-heading strong {
    font-size: 1.35rem;
  }
  
  .upload-box {
    min-height: 58px;
    padding: 12px;
  }
  
  .section {
    padding: 54px 0;
  }

  .zone-dept-grid .dept-card {
    min-height: auto;
    padding: 20px;
  }

  .dept-city-list {
    gap: 6px;
  }

  .dept-city-list li {
    font-size: 0.72rem;
  }

  .zone-hero-tags {
    gap: 8px;
  }

  .zone-hero-tags span,
  .zone-hero-tags a {
    min-height: 48px;
    padding: 10px;
    font-size: 0.74rem;
  }

  .zone-city-cloud {
    grid-template-columns: 1fr;
  }

  .zone-city-cloud a {
    min-height: 44px;
    justify-content: flex-start;
    text-align: left;
  }

  .zone-conditions-panel {
    padding: 20px;
  }

  .access-media-section {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .home-clean .site-header::before {
    font-size: 0.56rem;
  }
  
  .home-clean .brand-text-only strong {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }
  
  .hero-v2-copy h1 {
    font-size: clamp(1.45rem, 7vw, 1.82rem);
    line-height: 1.05;
  }

  .hero-v2-copy h1 span {
    display: block;
  }

  .hero-v2-grid {
    width: min(100% - 28px, 1210px);
    max-width: calc(100vw - 28px);
  }
  
  .hero-v2-text,
  .zone-v2-copy p:not(.eyebrow),
  .faq-copy p:not(.eyebrow),
  .form-band-copy p {
    font-size: 0.96rem;
  }

  .form-band-list {
    display: none;
  }

  .form-band-phone {
    width: 100%;
    min-height: 52px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    padding: 13px 16px;
    color: #ffffff;
    background: var(--home-blue);
    border-color: var(--home-blue);
  }

  .form-band-phone span,
  .form-band-phone strong {
    color: inherit;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 900;
  }

  .form-band-phone span::after {
    content: ":";
  }

  .form-card-clean {
    margin-top: 2px;
    padding: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
  }

  .form-card-clean .privacy-note {
    font-size: 0.66rem;
    line-height: 1.25;
    white-space: nowrap;
  }

  .section-top h2,
  .zone-v2-copy h2,
  .zone-cities-copy h2,
  .zone-conditions-panel h2,
  .faq-copy h2,
  .form-band-copy h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .steps-showcase .steps-page-title {
    font-size: clamp(1.5rem, 6.6vw, 1.86rem);
    line-height: 1.05;
  }

  .steps-showcase .steps-page-title span {
    display: block;
    white-space: nowrap;
  }

  .document-clean .documents-page-title {
    font-size: clamp(1.76rem, 7.5vw, 2.18rem);
    line-height: 1.06;
  }

  .document-clean .documents-page-title span {
    display: block;
    white-space: nowrap;
  }

  .form-band-copy .form-title {
    font-size: clamp(1.92rem, 8.4vw, 2.18rem);
  }

  .form-title span:last-child {
    white-space: nowrap;
  }

  .comment-hero .hero-v2-actions {
    gap: 4px;
    margin-top: 10px;
  }

  .comment-hero .hero-v2-actions .btn-outline {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .zone-hero .hero-v2-actions {
    gap: 4px;
    margin-top: 18px;
  }

  .zone-hero .hero-v2-actions .btn-outline {
    margin-top: 10px;
  }

  .zone-hero .inner-map-preview {
    display: none;
  }

  .zone-hero {
    border-bottom: 0;
  }

  .inner-hero-copy .comment-hero-title {
    font-size: 1.82rem;
  }

  .comment-hero-title span {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .inner-hero-grid,
  .inner-hero-copy,
  .inner-hero-panel {
    min-width: 0;
  }
  
  .step-cards article {
    padding: 20px;
  }
  
  .faq-list summary {
    padding-right: 54px;
  }
  
  .faq-list p {
    margin-right: 22px;
  }

  .contact-hero-phone strong {
    font-size: 1.85rem;
  }
  
  .legal-card dl {
    padding: 14px;
  }
}

@media (max-width: 380px) {
  .inner-hero-copy .comment-hero-title {
    font-size: 1.68rem;
  }
}

@media (max-width: 340px) {
  .inner-hero-copy .comment-hero-title {
    font-size: 1.5rem;
  }
}
