/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --sky: #8ecae6;
  --blue-green: #219ebc;
  --deep: #023047;
  --white: #ffffff;
  --cta: #fb8500;
  --cta-dark: #e07600;
  --title: #222222;
  --text: #555555;
  --bg-light: #f4f8fb;
  --border: #dce8f0;
  --font: Verdana, Geneva, Tahoma, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(2, 48, 71, 0.09);
  --shadow-lg: 0 8px 32px rgba(2, 48, 71, 0.16);
  --transition: 0.22s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 82px; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { color: var(--title); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container-large {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 40px 0;
}

.section--light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--cta {
  background: var(--cta);
  color: var(--white);
}

.btn--cta:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 133, 0, 0.38);
}

.btn--full { width: 100%; padding: 15px; font-size: 0.97rem; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  background-color: #b8d4e2;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.06) 0, rgba(0,0,0,.06) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.06) 0, rgba(0,0,0,.06) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon { width: 36px; height: 36px; flex-shrink: 0; }

.logo__text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.logo__text strong { color: var(--blue-green); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(2, 48, 71, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.header__logo { flex-shrink: 0; }

.header__nav { flex: 1; display: none; }

.header__nav ul {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.header__nav a {
  display: block;
  padding: 8px 13px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--title);
  transition: background var(--transition), color var(--transition);
}

.header__nav a:hover {
  background: var(--bg-light);
  color: var(--blue-green);
}

.header__cta { padding: 10px 18px; font-size: 0.85rem; display: none; }

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__mobile-menu {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
  animation: slideDown 0.2s ease;
}

.header__mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.header__mobile-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--title);
  transition: background var(--transition);
}

.header__mobile-menu ul a:hover { background: var(--bg-light); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 48, 71, 0.68);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 36px;
  padding-bottom: 48px;
}

/* Form comes first on mobile */
.hero__form-col { order: -1; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}

.form-card__sub {
  font-size: 0.82rem;
  color: var(--blue-green);
  font-weight: 700;
  margin-bottom: 18px;
}

.devis-form { display: flex; flex-direction: column; gap: 10px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--title);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-green);
  box-shadow: 0 0 0 3px rgba(33, 158, 188, 0.14);
}

.form-group textarea { resize: vertical; min-height: 96px; }

.form-mention {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 4px;
}

/* Hero content */
.hero__content-col { color: var(--white); }

.hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.highlight { color: var(--sky); }

.hero__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 9px 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  animation: fadeInUp 0.5s ease both;
}

.badge:nth-child(1) { animation-delay: .1s; }
.badge:nth-child(2) { animation-delay: .2s; }
.badge:nth-child(3) { animation-delay: .3s; }
.badge:nth-child(4) { animation-delay: .4s; }

.badge svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--sky); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust { background: var(--deep); padding: 28px 0; }

.trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 12px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(142, 202, 230, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover .trust-item__icon {
  background: rgba(142, 202, 230, 0.25);
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(142, 202, 230, 0.3);
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--sky);
  transition: color 0.25s ease;
}

.trust-item:hover .trust-item__icon svg { color: var(--white); }

.trust-item strong { display: block; font-size: 0.92rem; font-weight: 700; }
.trust-item span { display: block; font-size: 0.78rem; color: var(--sky); transition: color 0.25s ease; }
.trust-item:hover span { color: rgba(255, 255, 255, 0.9); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__body { padding: 20px 22px 24px; }

.service-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
}

.service-card__body p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cta);
  font-size: 0.875rem;
  font-weight: 700;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }
.service-link svg { width: 15px; height: 15px; }

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
.why {
  background: linear-gradient(140deg, var(--deep) 0%, #02506a 100%);
}

.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.75); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 46px;
  height: 46px;
  background: rgba(142, 202, 230, 0.13);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card__icon svg { width: 22px; height: 22px; color: var(--sky); }
.why-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ============================================================
   PROCESSUS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--blue-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover .step-num {
  background: var(--cta);
  transform: scale(1.18);
  box-shadow: 0 4px 18px rgba(251, 133, 0, 0.45);
}

.step-body {
  padding-top: 8px;
  transition: transform 0.25s ease;
}

.process-step:hover .step-body {
  transform: translateX(5px);
}

.step-body h3 { font-size: 1rem; font-weight: 700; color: var(--deep); margin-bottom: 5px; transition: color 0.2s ease; }
.process-step:hover .step-body h3 { color: var(--blue-green); }
.step-body p { font-size: 0.875rem; color: var(--text); line-height: 1.65; }

/* ============================================================
   AVIS
   ============================================================ */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-card:hover {
  transform: translateY(-7px) scale(1.015);
  box-shadow: 0 16px 40px rgba(2, 48, 71, 0.14);
  border-color: var(--blue-green);
}

.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; letter-spacing: 1px; }

.review-card blockquote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  border: none;
  padding: 0;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 38px;
  height: 38px;
  background: var(--deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 0.88rem; color: var(--title); }
.reviewer span { display: block; font-size: 0.78rem; color: #999; }

/* ============================================================
   ZONES
   ============================================================ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cities-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 8px;
  border-bottom: 1px solid var(--border);
  border-radius: 6px;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.cities-list li:hover {
  background: rgba(33, 158, 188, 0.1);
  color: var(--deep);
  padding-left: 14px;
}

.cities-list li svg {
  width: 15px;
  height: 15px;
  color: var(--blue-green);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cities-list li:hover svg {
  color: var(--cta);
  transform: scale(1.3) translateY(-1px);
}

.zones__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.zones__map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--blue-green);
  box-shadow: 0 2px 14px rgba(33, 158, 188, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--deep);
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--blue-green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: var(--bg-light); }

.faq-body { padding: 0 20px 18px; }
.faq-body p { font-size: 0.875rem; color: var(--text); line-height: 1.72; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(140deg, var(--deep) 0%, #02506a 100%);
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.cta-section__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section__text p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.92rem;
}

.cta-checks li svg { width: 17px; height: 17px; color: var(--sky); flex-shrink: 0; }

.cta-section__form { width: 100%; }

/* ============================================================
   HORAIRES
   ============================================================ */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-table thead { background: var(--deep); color: var(--white); }

.hours-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-table td {
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.hours-table td:first-child { font-weight: 700; color: var(--deep); }
.hours-table tbody tr:nth-child(even) td { background: var(--bg-light); }
.hours-table tbody tr:hover td { background: rgba(142, 202, 230, 0.12); }
.hours-table .closed { color: #bbb; font-style: italic; }

.hours-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hours-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(33, 158, 188, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hours-info-icon svg { width: 24px; height: 24px; color: var(--blue-green); }
.hours-info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--deep); margin-bottom: 12px; }
.hours-info-card p { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.hours-info-card .btn { margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep); color: rgba(255,255,255,0.75); }

.footer__top { padding: 30px 0 20px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.85; }

.footer-logo .logo__text { color: var(--white); }
.footer-logo .logo__text strong { color: var(--sky); }

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer-col address { font-style: normal; margin-bottom: 14px; }

.footer-col address p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.footer-col address svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--sky); }
.footer-col address a { color: var(--sky); transition: color var(--transition); }
.footer-col address a:hover { color: var(--white); }

.footer-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sky);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition), gap var(--transition);
}

.footer-maps-link:hover { color: var(--white); gap: 9px; }
.footer-maps-link svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 7px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul a:hover { color: var(--sky); padding-left: 4px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.footer__bottom nav { display: flex; gap: 20px; }

.footer__bottom nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__bottom nav a:hover { color: var(--sky); }

/* ============================================================
   RESPONSIVE — TABLET ≥ 640px
   ============================================================ */
@media (min-width: 640px) {
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .hero__badges { flex-direction: row; flex-wrap: wrap; }
  .badge { flex: 1; min-width: 210px; }
  .cities-list { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥ 1024px
   ============================================================ */
@media (min-width: 1024px) {
  /* Header */
  .header__nav { display: block; }
  .header__cta { display: inline-flex; }
  .header__burger { display: none; }

  /* Hero: 2 colonnes, content left / form right */
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__content-col { flex: 1.1; order: 0; }
  .hero__form-col { flex: 0 0 430px; order: 0; }

  .hero__badges { flex-wrap: wrap; }
  .badge { flex: 0 1 auto; min-width: auto; }

  /* Trust */
  .trust__inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .trust-item { padding: 0 24px; }
  .trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.1); }

  /* Services: grid like prestations.png */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .service-card--big {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 3fr 2fr;
  }

  .service-card--big .service-card__img { aspect-ratio: unset; height: 100%; min-height: 280px; object-fit: cover; }

  /* Why */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }

  /* Zones */
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .zones__map { height: 460px; }

  /* CTA section */
  .cta-section__inner { flex-direction: row; align-items: center; }
  .cta-section__text { flex: 1; padding-right: 32px; }
  .cta-section__form { flex: 0 0 430px; }

  /* Hours */
  .hours-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   SCROLL ANIMATIONS (progressive enhancement — invisible only if JS loaded)
   ============================================================ */

/* Keyframes */
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes anim-fade-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes anim-scale-up {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hidden state — only applies when .js class is on <html> */
.js [data-anim] {
  opacity: 0;
}

.js [data-anim="fade-up"]   { transform: translateY(28px); }
.js [data-anim="fade-left"] { transform: translateX(-24px); }
.js [data-anim="scale-up"]  { transform: translateY(20px) scale(0.96); }

/* Visible state */
.js [data-anim].anim-in {
  animation-fill-mode: both;
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: var(--anim-delay, 0s);
}

.js [data-anim="fade-up"].anim-in   { animation-name: anim-fade-up; }
.js [data-anim="fade-left"].anim-in { animation-name: anim-fade-left; }
.js [data-anim="scale-up"].anim-in  { animation-name: anim-scale-up; }

/* Process step: highlight the step number on entry */
.process-step.anim-in .step-num {
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--anim-delay, 0s) + 0.2s);
}

@keyframes popIn {
  from { transform: scale(0.6); }
  to   { transform: scale(1); }
}

/* City item: small pin icon bounces in */
.cities-list li.anim-in svg {
  animation: pinDrop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--anim-delay, 0s) + 0.15s);
}

@keyframes pinDrop {
  from { transform: translateY(-8px) scale(0.7); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ============================================================
   PAGES LÉGALES
   ============================================================ */
.legal-page { min-height: 60vh; }

.legal-hero {
  text-align: center;
  padding: 40px 0 32px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.legal-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--deep); margin-bottom: 8px; }
.legal-date { font-size: 0.85rem; color: #888; font-style: italic; }
.legal-intro { max-width: 640px; margin: 16px auto 0; color: var(--text); line-height: 1.7; }

.legal-block {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-of-type { border-bottom: none; }

.legal-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--deep);
  margin-bottom: 16px;
}
.legal-block h2 svg { width: 20px; height: 20px; color: var(--blue-green); flex-shrink: 0; }

.legal-block p { margin-bottom: 12px; line-height: 1.75; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--blue-green); text-decoration: underline; }
.legal-block a:hover { color: var(--deep); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.92rem;
}
.legal-table th,
.legal-table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  vertical-align: top;
}
.legal-table thead th {
  background: var(--deep);
  color: var(--white);
  font-weight: 600;
  border-color: var(--deep);
}
.legal-table tbody tr:nth-child(even) { background: rgba(142,202,230,0.08); }
.legal-table tbody th[scope="row"] {
  background: rgba(2,48,71,0.04);
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
}

.legal-list {
  list-style: none;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-left: 3px solid var(--blue-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}
.legal-list li::before { content: none; }

.legal-list--rights li {
  gap: 14px;
  align-items: flex-start;
}
.legal-list--rights li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue-green);
}

.legal-cta-block {
  margin-top: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-cta-block p { margin: 0; }

.legal-back {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}
.legal-back--top {
  margin-top: 0;
  margin-bottom: 28px;
  padding-top: 0;
  border-top: none;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--blue-green);
  color: var(--blue-green);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn--outline:hover { background: var(--blue-green); color: var(--white); }
.btn--outline svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
  .legal-table { font-size: 0.82rem; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ============================================================
   TEXTE LOCAL (SEO)
   ============================================================ */
.seo-text__body {
  max-width: 760px;
  margin: 0 auto;
}
.seo-text__body p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}
.seo-text__body p:last-child { margin-bottom: 0; }
.seo-text__body h3 {
  color: var(--deep);
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

@media (max-width: 600px) {
  .seo-text__body p { text-align: left; }
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(142,202,230,0.15);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius);
  margin-bottom: 36px;
}
.contact-notice__icon { flex-shrink: 0; }
.contact-notice__icon svg { width: 26px; height: 26px; color: var(--cta); }
.contact-notice strong { display: block; color: var(--deep); margin-bottom: 4px; }
.contact-notice p { margin: 0; line-height: 1.6; }
.contact-notice .btn--cta {
  display: inline-flex;
  margin-top: 14px;
  text-decoration: none;
}

.contact-form-wrap {
  max-width: 100%;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}
.contact-form .required { color: var(--cta); }
.contact-form .optional { color: #999; font-weight: 400; font-style: italic; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--title);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-green);
  box-shadow: 0 0 0 3px rgba(33,158,188,0.15);
  background: var(--white);
}
.contact-form textarea { resize: vertical; }

/* ============================================================
   FORMULAIRES — états (succès, erreurs, anti-bot)
   ============================================================ */
/* Champ piège (honeypot) : masqué aux humains, visible pour les bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  text-align: center;
  padding: 22px 14px;
  animation: anim-fade-up 0.5s ease both;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: #1f9d55;
  margin-bottom: 12px;
}
.form-success h3 { color: var(--deep); font-size: 1.15rem; margin-bottom: 8px; }
.form-success p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.form-errors {
  background: rgba(220, 53, 69, 0.08);
  border-left: 4px solid #dc3545;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.form-errors ul { margin: 0; padding-left: 18px; list-style: disc; }
.form-errors li { color: #b02a37; font-size: 0.88rem; line-height: 1.55; }

/* Cities list — liens et ville active */
.cities-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: inherit;
}

.cities-list__current {
  background: rgba(33, 158, 188, 0.14);
  color: var(--deep);
  font-weight: bold;
  padding-left: 14px;
}

.cities-list__current a { color: var(--deep); }
.cities-list__current svg { color: var(--cta); }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .js [data-anim],
  .js [data-anim].anim-in,
  .process-step.anim-in .step-num,
  .cities-list li.anim-in svg {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .process-step:hover .step-num,
  .process-step:hover .step-body,
  .review-card:hover,
  .cities-list li:hover,
  .cities-list li:hover svg,
  .trust-item:hover,
  .trust-item:hover .trust-item__icon {
    transform: none !important;
    transition: none !important;
  }
}
