:root {
  --black: #0b0b0b;
  --charcoal: #1a1a1a;
  --mid: #f2f4f6;
  --light: #fafbfc;
  --border: #cfd6df;
  --text: #222;
  --muted: #3f4a55;
  --accent: #ffffff;
  --accent-dark: #111;
  --btn-bg: #ffffff;
  --btn-text: #111;
  --shadow: 0 10px 25px rgba(0,0,0,0.12);
  --container: 1140px;
  --brand-blue: #0EA5E9;
  --after-hero-gap: 56px;
  --promo-orange: #FFA500;
  --cta-transition-height: 1cm;
  --cta-content-padding-y: 48px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: clip; }

body {
  font-family: "Montserrat", "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: white;
  font-size: 16px;
}

section {
  margin: 0;
}

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

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

.header {
  position: relative;
  z-index: 20000;
  background: #111;
  color: #fff;
}

.navbar {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 20001;
  padding: 18px 0;
  background: #0f0f10;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Keep page content from sliding under the fixed promo+navbar */
body {
  padding-top: 104px;
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: #0f0f10;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

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

.brand-mark {
  width: 420px;
  height: 60px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  transform: translateY(-10%) scale(2.7);
  transform-origin: left center;
}

@media (min-width: 1001px) {
  .navbar-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto minmax(320px, 1fr);
    align-items: center;
    column-gap: 24px;
  }

  .brand {
    margin-left: -8px;
    justify-self: start;
  }

  .brand-mark {
    height: 64px;
  }

  .brand-mark img {
    transform: translate(-8px, -10%) scale(3.08);
  }

  .nav-links {
    justify-self: center;
    margin-left: 0;
    min-width: 0;
    transform: translateX(-32px);
  }

  .nav-cta {
    justify-self: end;
    margin-right: 0;
  }
}

.brand-text {
  display: none;
}

.brand-text strong {
  color: #0EA5E9;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
  color: #0EA5E9;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--promo-orange);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  position: relative;
  overflow: hidden;
  border: 3px solid #0EA5E9;
  border-radius: 50px;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: #0EA5E9;
  font-weight: 700;
  height: 46px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.nav-cta:hover {
  color: #111;
}

.nav-phone {
  gap: 10px;
  white-space: nowrap;
  min-width: 0;
}

.nav-phone svg {
  flex-shrink: 0;
}

.nav-phone span {
  line-height: 1;
}

.hero {
  height: 75vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/img-site/hero-acceuil.jpg") center/cover no-repeat;
  transform: scale(1);
  animation: hero-zoom 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: calc((100% - var(--container)) / 2 + 24px);
  top: 36%;
  color: #fff;
}

@keyframes hero-zoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-kicker {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.hero-title {
  font-size: 56px;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: none;
  color: #e7e7e7;
  margin-bottom: 22px;
}

.hero-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #0EA5E9;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
}

.section-specialist {
  padding: 60px 0;
  background: #F0F9FF;
  margin: 0;
}

.band-gap {
  margin-top: 40px;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.photo-box {
  background: transparent;
  padding: 0;
  box-shadow: none;
  max-width: 720px;
  height: 100%;
}

.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.split > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.25s ease, transform 1.8s ease;
  transform: scale(1);
}

.photo-slide.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.section-title {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.section-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.contact-info {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
}

@media (max-width: 600px) {
  .contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 6px;
  }
}

.contact-icon {
  color: #0EA5E9;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.contact-value {
  color: var(--muted);
  font-size: 16px;
}

.specialist-text {
  gap: 16px;
}

.band {
  background: #0f0f10;
  color: #fff;
  padding: 26px 0;
  margin: 0;
}

.band-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.band small {
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0EA5E9;
  margin-bottom: 14px;
}

.band h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
}

.band-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip {
  background: #0f0f10;
  border-top: 3px solid var(--promo-orange);
  color: #fff;
}

.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  text-align: center;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.trust-item p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1000px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
}

@media (max-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .trust-item h3 {
    font-size: 18px;
  }
}

/* Why choose */
.why-choose {
  padding: 40px 24px 64px;
}

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

.why-title {
  text-align: left;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
}

.why-subtitle {
  color: #0EA5E9;
  font-size: 16px;
  margin: 0;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  text-align: left;
}

.why-card {
  position: relative;
  padding: 18px 18px 18px 34px;
  border: none;
  background: transparent;
  height: 100%;
  min-height: auto;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: #0EA5E9;
}

.why-icon {
  width: auto;
  height: auto;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0EA5E9;
  margin-bottom: 10px;
}

.why-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 8px;
  min-height: 44px;
}

.why-text {
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

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

  .service-detail.reverse .service-media {
    order: 0;
  }

  .service-media img {
    height: 220px;
  }
}

.band .btn-light {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #0EA5E9;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 3px solid #0EA5E9;
  border-radius: 50px;
  height: 46px;
  white-space: nowrap;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.band .btn-light:hover {
  color: #111;
}

.services {
  background: #ffffff;
}

/* Hero reveal */
.hero .reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-reveal 0.9s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.services-intro {
  background: #F0F9FF;
  padding: 140px 0 0;
  background-image: url("img/img-site/hero-service.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-page-body .services-intro {
  background-image: url("img/img-site/hero-service.webp");
  background-size: 112% auto;
  background-position: center 46%;
}

.forfaits-page-body .services-intro {
  background-image: url("img/img-site/hero-forfait.webp");
  background-size: 112% auto;
  background-position: center 46%;
}

.contact-page-body .services-intro {
  background-image: url("img/img-site/hero-contact.webp");
  background-size: 112% auto;
  background-position: center 24%;
}

@media (max-width: 1000px) {
  .services-page-body .services-intro,
  .forfaits-page-body .services-intro,
  .contact-page-body .services-intro {
    background-size: 145% auto;
    background-position: center 20%;
  }
}

/* Consistent gap after hero/intro across pages */
.hero + section {
  margin-top: 0;
  padding-top: 24px;
}

.services-intro + main,
.services-intro + section {
  margin-top: 0;
  padding-top: 0;
}

/* Put the spacing inside each first content block to avoid white strips */
.services-page-body .services-intro + .services-page .service-detail:first-child {
  padding-top: var(--after-hero-gap);
}

.forfaits-page-body .services-intro + main .forfaits-showcase {
  padding-top: var(--after-hero-gap);
  position: relative;
  background: #ffffff !important;
}

.forfaits-page-body .services-intro + main .forfaits-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: var(--after-hero-gap);
  transform: translateX(-50%);
  background: #F0F9FF;
  z-index: 0;
}

.forfaits-page-body .services-intro + main .forfaits-showcase > .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.forfaits-page-body .services-intro + main .forfaits-showcase .forfait-block:first-child {
  padding-top: 0;
}

.services-intro + .form-section .form-wrap {
  padding-top: var(--after-hero-gap);
}

/* Legacy guard, scoped to services body only to avoid flattening other pages */
.services-page-body .services-intro + main > section:first-child .container {
  padding-top: 0;
}

.services-intro .kicker {
  color: #0EA5E9;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.6px;
  font-size: 14px;
  margin-bottom: 12px;
}

.services-intro h1 {
  margin: 0 0 12px;
  font-size: 36px;
  color: #fff;
}

.services-intro p {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  :root {
    --after-hero-gap: 32px;
  }
}


.services-page {
  background: #ffffff;
  padding: 0;
  position: relative;
  z-index: 1;
}

.services-cta-band {
  background: var(--brand-blue);
  padding: 0;
}

.services-page-body .services-cta-band,
.forfaits-page-body .services-cta-band {
  background: var(--brand-blue);
  position: static;
  z-index: auto;
}

.cta-transition {
  height: 0;
  background: #f0f9ff;
}

.services-cta-band .container {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--cta-content-padding-y) 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
  text-align: center;
}

.services-cta-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #ffffff;
}

.services-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.services-cta-band .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.services-cta-band .btn-outline:hover {
  color: var(--brand-blue);
  background: #ffffff;
}

@media (max-width: 900px) {
  .services-cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.services-page .container {
  max-width: 100%;
  padding: 0;
}

.service-detail {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  gap: 48px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 48px 0;
  margin-bottom: 0;
  box-shadow: none;
  border-bottom: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail.reverse .service-media {
  order: 2;
}

.service-media {
  display: flex;
  justify-content: center;
  padding-top: 36px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.media-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 280px;
  z-index: 1;
  overflow: visible;
}

.media-card {
  position: absolute;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 32px rgba(15, 30, 60, 0.12);
  z-index: 1;
}

.media-card-lg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.media-card-md {
  width: 70%;
  height: 70%;
  top: -22px;
  left: 26px;
  z-index: 2;
}

.media-card-sm {
  width: 55%;
  height: 55%;
  bottom: -22px;
  right: 26px;
  z-index: 3;
  border: 4px solid #ffffff;
  box-shadow: 0 14px 36px rgba(15, 30, 60, 0.22);
}

.media-stack.is-single .media-card-md,
.media-stack.is-single .media-card-sm {
  display: none;
}

.media-stack.is-double .media-card-sm {
  display: none;
}

.service-detail.reverse .media-card-md {
  left: auto;
  right: 26px;
}

.service-detail.reverse .media-card-sm {
  right: auto;
  left: 26px;
}

@media (max-width: 900px) {
  .service-detail.reverse .media-card-md {
    right: 18px;
  }

  .service-detail.reverse .media-card-sm {
    left: 18px;
  }
}

.service-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-body h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111;
}

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .service-detail.reverse .service-media {
    order: 0;
  }

  .media-stack {
    height: 240px;
  }

  .media-card-md {
    top: -14px;
    left: 18px;
  }

  .media-card-sm {
    bottom: -14px;
    right: 18px;
  }
}

.service-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.service-subhead {
  color: #0EA5E9;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 600;
  font-size: 14px;
  margin: 4px 0 10px;
}

.service-bullets {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.service-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--promo-orange);
  border: 1px solid var(--promo-orange);
  border-radius: 14px;
  padding: 16px 18px 16px 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 6;
}

.services-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  animation: popup-bounce 1.1s cubic-bezier(0.2, 0.8, 0.2, 1.1);
}

@keyframes popup-bounce {
  0% { transform: translateY(30px); }
  45% { transform: translateY(-16px); }
  65% { transform: translateY(8px); }
  78% { transform: translateY(-6px); }
  88% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

.services-popup .popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.services-popup .popup-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  font-size: 16px;
}

.services-popup .popup-text {
  color: #111;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.services-popup .popup-cta {
  display: inline-flex;
}

.services-popup .btn-outline {
  background: transparent;
  color: #111;
  border-color: #0EA5E9;
}

.services-popup .btn-outline:hover {
  background: var(--promo-orange);
  color: #111;
  border-color: #0EA5E9;
}

@media (max-width: 700px) {
  .services-popup {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

.promo-banner {
  position: fixed;
  z-index: 20002;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  min-width: 0;
  transform: none;
  background: var(--promo-orange);
  color: #111;
  border-radius: 0;
  height: 28px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header {
  position: relative;
}

.promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.promo-track {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.promo-track-inner {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  animation: promo-scroll 18s linear infinite;
  align-items: center;
  padding-left: 0;
}

.promo-track span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.promo-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 64px;
  background: linear-gradient(to right, var(--promo-orange) 55%, rgba(232,162,59,0));
  border-radius: 0;
  pointer-events: none;
  z-index: 2;
}

@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .promo-banner {
    width: 100%;
    height: 26px;
    padding: 0;
  }

  .navbar {
    top: 26px;
  }

  .promo-inner {
    padding: 0 16px;
  }
}

.zone-service {
  background: #F0F8FF !important;
}

.forfaits {
  background: #F0F8FF !important;
  overflow: visible;
}


.services h2 {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 30px;
}

/* Steps section */
.steps-section {
  background: #ffffff;
  padding: 70px 0 10px;
  text-align: center;
}

.steps-section h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: 1px;
  color: #0b1320;
  text-transform: uppercase;
}
.wave-title {
  display: flex;
  justify-content: center;
}

.wave-svg {
  width: 100%;
  max-width: 1000px;
  height: 78px;
  display: block;
}

.wave-text-svg {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1px;
}

.wave-text-base {
  fill: #0b1320;
}

.wave-fill {
  fill: #0ea5e9;
}

.wave-fill-soft {
  opacity: 0.55;
}

.steps-section p {
  margin: 0 0 0;
  color: #5c6b7a;
  font-size: 16px;
}

.steps-rail {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 34px;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #0ea5e9;
  color: #0ea5e9;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: #ffffff;
  flex: 0 0 auto;
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-connector {
  position: relative;
  height: 4px;
  background: #0ea5e9;
  flex: 1 1 auto;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

.step-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #0ea5e9;
  border-right: 3px solid #0ea5e9;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}

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

.step-card {
  background: #ffffff;
  border: 1px solid #e7eaee;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(15, 30, 60, 0.06);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #dbe8f5;
  color: #0EA5E9;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: #f7fbff;
}

.step-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: #5c6b7a;
  font-size: 15px;
}

.steps-section.is-inview .step-dot {
  opacity: 1;
  transform: scale(1);
}

.steps-section.is-inview .step-connector {
  transform: scaleX(1);
}

.steps-section.is-inview .step-connector::after {
  opacity: 1;
}

.steps-section.is-inview .step-card {
  opacity: 1;
  transform: translateY(0);
}

.steps-section.is-inview .step-dot:nth-of-type(1) { transition-delay: 0ms; }
.steps-section.is-inview .step-connector:nth-of-type(2) { transition-delay: 140ms; }
.steps-section.is-inview .step-dot:nth-of-type(3) { transition-delay: 420ms; }
.steps-section.is-inview .step-connector:nth-of-type(4) { transition-delay: 700ms; }
.steps-section.is-inview .step-dot:nth-of-type(5) { transition-delay: 980ms; }

.steps-section.is-inview .step-card:nth-of-type(1) { transition-delay: 300ms; }
.steps-section.is-inview .step-card:nth-of-type(2) { transition-delay: 520ms; }
.steps-section.is-inview .step-card:nth-of-type(3) { transition-delay: 1080ms; }

@media (max-width: 900px) {
  .steps-cards {
    grid-template-columns: 1fr;
  }

  .steps-rail {
    max-width: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-dot,
  .step-connector,
  .step-card {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .step-connector::after {
    transition: none;
    opacity: 1;
  }

  .wave-fill {
    display: none;
  }
}

/* Services marquee */
.services-marquee {
  overflow: hidden;
  position: relative;
  padding-top: 10px;
  padding-inline: 72px;
}

.services-marquee::before,
.services-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 1;
}

.services-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.services-track {
  position: relative;
  z-index: 0;
}

.services-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: services-scroll 30s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.services-marquee:hover .services-track {
  animation-play-state: paused;
}

.services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(35, 42, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f242c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 14px 28px rgba(34, 63, 96, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.services-nav:hover,
.services-nav:focus-visible {
  transform: translateY(-50%) scale(1.08);
  background: #ffffff;
  color: var(--primary-blue);
  box-shadow: 0 18px 34px rgba(34, 63, 96, 0.2);
}

.services-nav:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}

.services-nav span {
  display: block;
  transform: translateY(-2px);
}

.services-nav-prev {
  left: 18px;
}

.services-nav-next {
  right: 18px;
}

@keyframes services-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .services-track {
    animation: none;
  }

  .services-nav {
    transition: none;
  }
}
.services-track .card {
  flex: 0 0 250px;
  height: 380px;
  background: #F0F8FF;
  border-color: #bae6fd;
  border-top: 8px solid var(--promo-orange);
}

.services-track .card h4 {
  height: 46px;
  overflow: hidden;
}

.services-track .card .svc-desc {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

.services-track .card .btn-outline {
  margin-top: 12px;
  flex-shrink: 0;
  align-self: center;
  background: #0EA5E9 !important;
  color: #fff !important;
  border-color: #0EA5E9 !important;
}

.card {
  width: 100%;
  max-width: 250px;
}

.card {
  background: #fff;
  border: 1px solid #e3e7ec;
  border-radius: 8px;
  border-top: 8px solid var(--promo-orange);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border: 1px solid #e6ebf2;
}

.services-track .card-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbeafe;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-track .card-media svg {
  width: 52px;
  height: 52px;
  stroke: #0EA5E9;
}

@media (max-width: 767px) {
  .services-marquee {
    padding-inline: 52px;
  }

  .services-nav {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .services-nav-prev {
    left: 10px;
  }

  .services-nav-next {
    right: 10px;
  }
}

.services-track .card-media img {
  display: block;
}

.card h4 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-height: 38px;
}

.card p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 72px;
}

.card a {
  margin-top: auto;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  font-weight: inherit;
}

.card .btn-outline {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--brand-blue);
  border-radius: 50px;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0EA5E9;
  font-weight: 700;
  background: transparent;
  min-width: 0;
  height: 46px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 0;
}

.card .btn-outline {
  text-align: center;
  align-self: center;
}

.btn-outline:hover {
  color: #111;
}

.forfait-card .btn-outline {
  margin-top: auto;
}

/* Footer */
.site-footer {
  background-color: #0b0b0b;
  background-image: none;
  opacity: 1;
  color: #ffffff;
  padding: 50px 24px 26px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  justify-items: center;
}

.footer-inner > div {
  text-align: center;
  min-width: 180px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-mark {
  width: 44px;
  height: 44px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0EA5E9;
  margin-bottom: 10px;
}

.footer-brand .footer-title {
  color: #0EA5E9;
}

.footer-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}

.footer-list a {
  color: #ffffff;
  position: relative;
  padding-bottom: 4px;
}

.footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c9c9c9;
  transition: width 0.25s ease;
}

.footer-list a:hover::after {
  width: 100%;
}
.footer-cta {
  display: inline-block;
  border: 1px solid #fff;
  color: #111;
  background: #fff;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
  display: block;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Zone desservie */
.zone-service {
  background: #ffffff;
}

.zone-service h2 {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 8px;
}

.zone-subtitle {
  text-align: center;
  color: #4b5563;
  font-size: 16px;
  margin: 0 0 24px;
}

.zone-map-frame {
  border: 1px solid #e6e9ee;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f8fa;
  height: 320px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.zone-map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  z-index: 1;
}

/* Keep Leaflet map layers below the fixed header */
.leaflet-container,
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
  z-index: 1 !important;
}

.map-bw .leaflet-tile {
  filter: grayscale(100%) contrast(1.1);
}

.zone-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .zone-map-frame {
    height: 260px;
  }
  .zone-list ul {
    columns: 2;
  }
}

/* Forfaits */
.forfaits {
  background: #ffffff !important;
}

.home-page-body .forfaits {
  background: #f0f9ff !important;
}

.home-page-body .forfaits .forfait-card {
  background: #ffffff; /* les cartes restent blanches sur fond bleu */
}


.forfaits h2 {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 36px;
}

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


.forfaits-showcase .forfait-block {
  padding: 28px 0 40px;
  border-bottom: 1px solid #e6ecf2;
}

.forfaits-showcase .forfait-block:last-child {
  border-bottom: none;
}

.forfaits-page-body .forfaits {
  background: #ffffff !important;
}

.forfaits-page-body .forfaits-showcase .forfait-block {
  position: relative;
  z-index: 0;
  padding: 34px 0 42px;
  margin-bottom: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.forfaits-page-body .forfaits-showcase .forfait-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: #f0f9ff;
}

.forfaits-page-body .forfaits-showcase .forfait-block:nth-child(odd)::before {
  background: #f0f9ff;
}

.forfaits-page-body .forfaits-showcase .forfait-block:nth-child(even)::before {
  background: #ffffff;
}

.forfaits-page-body .forfait-headline,
.forfaits-page-body .forfait-tabs,
.forfaits-page-body .forfait-panels {
  position: relative;
  z-index: 1;
}

.forfaits-page-body .forfaits-showcase .forfait-block:last-child {
  border-bottom: none;
}

.forfaits-page-body .forfait-panels {
  display: block;
  position: relative;
  overflow: hidden;
}

.forfaits-page-body .forfait-media {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background-size: 112% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  will-change: auto;
}

.forfaits-page-body .forfait-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.forfaits-page-body .forfait-text {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 236, 242, 0.9);
}

.forfaits-page-body .forfait-texts {
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: 46%;
  min-height: 0;
  z-index: 3;
}

.forfaits-page-body .forfaits-showcase .forfait-block:nth-child(even) .forfait-texts {
  left: 24px;
  right: auto;
}

.forfaits-page-body .forfait-text {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 236, 242, 0.9);
  box-shadow: 0 10px 24px rgba(15, 30, 60, 0.08);
  padding-bottom: 56px;
}

.forfaits-page-body .forfait-panel-price {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.2px;
  z-index: 4;
}

.forfait-headline {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 18px;
}

.forfait-headline small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 28px;
  color: #0EA5E9;
  margin-bottom: 8px;
  font-weight: 700;
}

.forfait-headline h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.forfait-headline p {
  margin: 0;
  color: var(--muted);
}

.forfait-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 20px;
}

.forfait-tabs .tab-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.forfait-tabs .tab-btn.is-active {
  color: #111;
  border-color: #0EA5E9;
}

.forfait-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.forfait-media {
  background-color: #fff;
  border-radius: 12px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Standard: reveal more lower image area */
.forfaits-page-body .forfait-block[data-forfait="standard"] .forfait-media {
  background-position: center bottom;
  background-size: 118% auto;
}

.forfait-texts {
  display: grid;
}

.forfait-text {
  background: #ffffff;
  border: 1px solid #e6ecf2;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(15, 30, 60, 0.06);
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  overflow-y: auto;
}

.forfait-texts {
  position: relative;
  min-height: 420px;
}

.forfait-text.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.forfait-texts.is-switching .forfait-text {
  transition: none;
}

.forfait-text small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  color: #0EA5E9;
  margin-bottom: 6px;
  font-weight: 600;
}

.forfait-text h4 {
  margin: 0 0 10px;
  font-size: 20px;
}

.forfait-text ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.forfait-text p {
  margin: 0;
  color: var(--muted);
}

.forfait-block:has(.forfait-text[data-tab="details"].is-active) .forfait-panel-price {
  display: none;
}

.forfait-accordion {
  display: grid;
  gap: 10px;
}

.forfait-detail {
  border: 1px solid #e6ecf2;
  border-radius: 10px;
  background: #fbfdff;
  overflow: hidden;
}

.forfait-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: #111;
  position: relative;
  padding-right: 42px;
}

.forfait-detail summary::-webkit-details-marker {
  display: none;
}

.forfait-detail summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #0EA5E9;
  font-size: 20px;
  line-height: 1;
}

.forfait-detail[open] summary::after {
  content: "-";
}

.forfait-detail ul {
  margin: 0;
  padding: 0 16px 16px 34px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.forfait-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .forfait-panels {
    grid-template-columns: 1fr;
  }
  .forfait-media {
    min-height: 200px;
  }

  .forfaits-page-body .forfait-panels {
    display: grid;
    grid-template-columns: 1fr;
  }

  .forfaits-page-body .forfait-texts {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .forfaits-page-body .forfait-media {
    background-position: center;
  }

  .forfaits-page-body .forfait-panel-price {
    position: static;
    display: block;
    text-align: right;
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forfaits-page-body .forfait-media {
    background-position: center !important;
  }
}
.forfait-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.forfait-card {
  max-width: none;
  min-height: 340px;
  position: relative;
}

#forfait-premium {
  border: 3px solid var(--brand-blue) !important;
  border-top: 8px solid var(--brand-blue) !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 3px var(--brand-blue) !important;
}

#forfait-deluxe {
  /* Même structure que Premium — bordure orange épaisse */
  border: 3px solid #FFA500 !important;
  border-top: 8px solid #FFA500 !important;
  outline: 0 !important;
  /* Fond noir + texte blanc */
  background: #111213 !important;
  color: #fff !important;
}
#forfait-deluxe h4,
#forfait-deluxe .forfait-tagline,
#forfait-deluxe .forfait-list,
#forfait-deluxe .forfait-price {
  color: #fff !important;
}
#forfait-deluxe .forfait-list li {
  color: #fff !important;
}
#forfait-deluxe .forfait-divider {
  background: rgba(255, 255, 255, 0.15) !important;
}

.forfait-tagline {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  min-height: 0;
}

.forfait-divider {
  height: 1px;
  background: #e6ecf2;
  margin: 0 0 8px;
}

.forfait-freq {
  display: inline-block;
  margin-top: 6px;
  background: transparent;
  color: #0EA5E9;
  border: 1px solid #0EA5E9;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.forfait-list {
  margin: 10px 0 12px;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.forfait-price {
  font-weight: 700;
  font-size: 16px;
}

.forfait-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.forfait-card .btn-outline:hover {
  background: var(--promo-orange);
  color: #111;
  border-color: var(--brand-blue);
}

.card-badge {
  position: absolute;
  top: -6px;
  left: 50%;
  right: auto;
  transform: translate(-50%, -100%);
  background: var(--promo-orange);
  border: 2px solid var(--promo-orange);
  color: #111;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  white-space: nowrap;
  border-radius: 999px;
  z-index: 2;
}

@media (max-width: 1000px) {
  .forfait-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  /* Essentiel + Standard côte à côte, Premium et Deluxe pleine largeur */
  .forfait-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #forfait-premium,
  #forfait-deluxe {
    grid-column: 1 / -1;
  }
  #forfait-deluxe {
    margin-top: 10px;
  }
  #forfait-premium h4, #forfait-deluxe h4,
  #forfait-premium .forfait-tagline, #forfait-deluxe .forfait-tagline {
    text-align: center;
  }

  /* Grille pleine largeur — gap entre les cartes uniquement */
  .forfait-cards {
    column-gap: 10px;
    row-gap: 18px;
  }
  /* Petites cartes : espacement et centrage titre/tagline */
  #forfait-essentiel,
  #forfait-standard {
    padding: 14px 10px;
    min-height: 0;
  }
  #forfait-essentiel h4,
  #forfait-standard h4 {
    text-align: center;
  }
  #forfait-essentiel .forfait-tagline,
  #forfait-standard .forfait-tagline {
    text-align: center;
    min-height: 0;
  }
  #forfait-essentiel .forfait-list,
  #forfait-standard .forfait-list {
    gap: 0;
    margin: 8px 0 10px;
    flex: 1;
    align-content: start; /* items collés en haut, pas distribués dans l'espace */
  }
  #forfait-essentiel .forfait-list li,
  #forfait-standard .forfait-list li {
    margin: 0;
    padding: 0;
    line-height: 1.5;
  }
  /* Aligne le footer en bas */
  #forfait-essentiel .forfait-footer,
  #forfait-standard .forfait-footer {
    margin-top: auto;
    gap: 8px;
  }
  /* Boutons petites cartes : compacts + sans wrap (couleur/pill gérés globalement) */
  #forfait-essentiel .btn-outline,
  #forfait-standard .btn-outline {
    font-size: 11px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    height: 38px;
    padding: 0 6px;
  }
}


.forfait-price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: auto 0 12px;
}


/* Contact & Devis */
.page-hero {
  height: 260px;
  background: url("img/img-site/hero-acceuil.jpg") center/cover no-repeat;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.form-section {
  background: #F0F8FF;
}

.form-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

/* Form spans both rows so contact-info sits below the title in the left column */
.contact-grid .card-form {
  grid-column: 2;
  grid-row: 1 / 3;
}

.contact-grid > .contact-info {
  grid-column: 1;
  grid-row: 2;
  margin-top: 8px;
}

.card-form {
  background: #fff;
  border: 1px solid #e3e7ec;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

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

label {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6f7a88;
  margin-bottom: 6px;
}

.field-optional {
  display: inline;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: none;
  color: #8a94a2;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  padding: 8px 10px;
  font-size: 12px;
  background: #fff;
  border-radius: 8px;
}

textarea { min-height: 110px; resize: vertical; }

.hidden {
  display: none;
}

.dimension-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dimension-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.dimension-row select {
  width: 90px;
  flex: 0 0 90px;
}

.dimension-x {
  font-weight: 700;
  color: #111;
  font-size: 14px;
  line-height: 1;
}

.other-service {
  margin-top: 14px;
}

.demand-service,
.demand-forfait {
  margin-top: 14px;
}

.demand-selected {
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid #cfe2f5;
  background: #f0f8ff;
  border-radius: 8px;
  font-size: 12px;
  color: #1f2937;
}

.form-submit {
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 3px solid #0EA5E9;
  border-radius: 50px;
  padding: 0 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0EA5E9;
  font-weight: 700;
  height: 46px;
  white-space: nowrap;
  cursor: pointer;
  z-index: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-submit:hover {
  color: #111;
}

.form-note {
  font-size: 11px;
  color: #8a94a2;
  margin-top: 8px;
  text-align: center;
}

.devis-section-title {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 22px 0 10px;
  color: #1e1e1e;
}

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

.single-col {
  max-width: 760px;
  margin: 0 auto;
}

.notes-box textarea {
  min-height: 90px;
}

@media (max-width: 1000px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .split { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content { left: 24px; top: 140px; }
}

@media (max-width: 680px) {
  .hero { height: 380px; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row, .devis-grid { grid-template-columns: 1fr; }
  .navbar { flex-wrap: wrap; gap: 12px; }
}
.service-detail.service-alt-a {
  background: #F0F9FF;
}

.service-detail.service-alt-b {
  background: #FFFFFF;
}

.service-detail.service-alt-a,
.service-detail.service-alt-b {
  border-radius: 0;
  padding: 48px 32px;
  margin: 0;
  border-top: 3px solid #e2eef7;
}

.service-detail.service-alt-a:first-child,
.service-detail.service-alt-b:first-child {
  border-top: none;
}

@media (max-width: 900px) {
  .service-detail.service-alt-a,
  .service-detail.service-alt-b {
    padding: 32px 20px;
  }
}

/* ============================================
   SCROLL REVEAL — Système unifié
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--sr-delay, 0ms);
}

.fade-up.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hover sur les why-cards (section sombre) */
.why-card {
  transition: background 0.3s ease, transform 0.3s ease;
}

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

/* ============================================
   ANIMATION VARIANTS — fade-left, fade-right, fade-scale
   ============================================ */
.fade-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--sr-delay, 0ms);
}

.fade-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--sr-delay, 0ms);
}

.fade-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--sr-delay, 0ms);
}

.fade-left.in-view,
.fade-right.in-view,
.fade-scale.in-view {
  opacity: 1;
  transform: none;
}

/* Fallback: ensure services text/media stay visible if the reveal script doesn't run */
.services-page-body .service-media.fade-left,
.services-page-body .service-media.fade-right,
.services-page-body .service-body.fade-left,
.services-page-body .service-body.fade-right {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-left, .fade-right, .fade-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Protection overflow pour les animations latérales */
.services-page {
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION MOBILE — Hamburger
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 201;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Lien actif dans la nav */
.nav-links a.nav-active {
  color: #0EA5E9;
  font-weight: 700;
}
.nav-links a.nav-active::after {
  width: 0;
}

.nav-links a.nav-active:hover::after {
  width: 100%;
}

@media (max-width: 1000px) {
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Overlay plein écran */
  .nav-links {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #0f0f10;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 24px !important;
    letter-spacing: 2px;
    padding: 18px 40px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
    color: #fff !important;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: none;
  }

  .nav-links.is-open a:nth-child(1) { transition-delay: 0.08s; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 0.13s; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 0.18s; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 0.23s; }

  .nav-links a:hover {
    color: #0EA5E9 !important;
    background: rgba(14, 165, 233, 0.06);
  }

  .nav-links a.nav-active {
    color: #0EA5E9 !important;
  }
}

/* Mobile — hero & layout */
@media (max-width: 1000px) {
  .hero-content {
    left: 24px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: 36px;
  }

  .steps-title {
    font-size: 22px;
  }

  .services-intro .container {
    padding-top: 100px;
  }
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 28px;
  }

  .band h3 {
    font-size: 22px;
  }

  /* Essentiel + Standard côte à côte, Premium et Deluxe pleine largeur */
  .forfait-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  #forfait-premium,
  #forfait-deluxe {
    grid-column: 1 / -1;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

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

  .zone-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   POLISH — Transitions, focus, hover, lisibilité
   ============================================ */

/* Transitions douces sur tous les boutons */
.btn-outline,
.nav-cta,
.form-submit,
.band .btn-light {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline::before,
.nav-cta::before,
.form-submit::before,
.band .btn-light::before,
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--promo-orange);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.28s ease;
  z-index: -1;
}

.btn-outline:hover::before,
.nav-cta:hover::before,
.form-submit:hover::before,
.band .btn-light:hover::before,
.hero-btn:hover::before {
  transform: scaleX(1);
}

/* Band btn-outline : hover bleu */
.band-btn::before {
  background: var(--brand-blue) !important;
}
.band-btn:hover {
  color: #fff !important;
}

/* Ring de focus sur les champs de formulaire */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

/* Overlay sur les sections avec fond photo pour meilleure lisibilité */
.services-intro {
  position: relative;
}
.services-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}
.services-intro .container {
  position: relative;
  z-index: 1;
}
.services-intro h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Devis — titre de section avec accent bleu à gauche */
.devis-section-title {
  border-left: 3px solid #0EA5E9;
  padding-left: 10px;
  color: #111;
}

/* Toutes les puces forfait en bleu brand */
.forfait-list li::marker {
  color: var(--brand-blue);
}

/* Items nouveaux — puce orange */
.forfait-extra::marker {
  color: var(--promo-orange);
}

/* Boutons forfait : bleu plein + pill shape sur toutes les cartes */
.forfait-card .btn-outline {
  background: var(--brand-blue) !important;
  color: #fff !important;
  border-color: var(--brand-blue) !important;
  border-radius: 50px !important;
}
.forfait-card .btn-outline:hover {
  background: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #fff !important;
}

/* Card images — coins arrondis pour un look moderne */
.card img {
  border-radius: 6px;
}

/* Step cards — hover léger */
.steps-section.is-inview .step-card:hover {
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.13);
  transform: translateY(-4px);
}

/* Protection overflow animations latérales (formulaires) */
.form-section {
  overflow-x: hidden;
}

/* Liens tel/mailto dans le footer et la page contact */
.footer-list a[href^="tel:"],
.footer-list a[href^="mailto:"],
.contact-value a {
  color: inherit;
}
.contact-value a:hover {
  color: #0EA5E9;
}

.devis-modal {
  position: fixed;
  inset: 0;
  z-index: 50000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.devis-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.devis-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 15, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.devis-modal-dialog {
  position: relative;
  width: min(1100px, calc(100vw - 28px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  background: #f6fbff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateY(12px);
  transition: transform 0.22s ease;
}

.devis-modal.is-open .devis-modal-dialog {
  transform: translateY(0);
}

.devis-modal-head {
  padding: 28px 36px 20px;
  background: #0f0f10;
  color: #fff;
  border-bottom: 3px solid var(--promo-orange);
}

.devis-modal-head small {
  display: block;
  margin-bottom: 8px;
  color: #0EA5E9;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
}

.devis-modal-head h2 {
  margin: 0 0 8px;
  font-size: 34px;
}

.devis-modal-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.devis-modal-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.devis-modal .card-form {
  margin: 0;
  max-width: none;
}

.devis-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 2px solid #0EA5E9;
  background: transparent;
  color: #0EA5E9;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.devis-modal-close:hover {
  background: var(--promo-orange);
  color: #111;
}

.devis-modal-actions {
  margin-top: 18px;
}

.devis-modal-note {
  margin-top: 12px;
  font-size: 13px;
  color: #1f2937;
}

body.devis-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: var(--modal-scroll-y, 0px);
}

/* ══ Steps bar ══ */
.devis-steps-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  padding-bottom: 4px;
}

.devis-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.dsi-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.devis-step-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  transition: color 0.25s;
  white-space: nowrap;
}

.devis-step-item.is-active .dsi-num {
  background: #0EA5E9;
  border-color: #0EA5E9;
  color: #fff;
}

.devis-step-item.is-active span {
  color: #fff;
}

.devis-step-item.is-done .dsi-num {
  background: var(--promo-orange);
  border-color: var(--promo-orange);
  color: #111;
}

.devis-step-item.is-done .dsi-num::before {
  content: '✓';
  font-size: 14px;
}

.devis-step-item.is-done .dsi-num {
  font-size: 0;
}

.devis-step-item.is-done span {
  color: var(--promo-orange);
}

.dsi-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 6px;
  margin-bottom: 16px;
  border-radius: 2px;
  overflow: hidden;
}

.dsi-line-fill {
  height: 100%;
  width: 0;
  background: var(--promo-orange);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.dsi-line-fill.is-filled {
  width: 100%;
}

/* ══ Panels ══ */
.devis-panel {
  display: none;
  animation: devis-panel-in 0.22s ease;
}

.devis-panel.is-active {
  display: block;
}

@keyframes devis-panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.devis-panel-hint {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 14px;
}

.req {
  font-style: normal;
  color: #0EA5E9;
  margin-left: 3px;
}

/* ══ Type cards (étape 2) ══ */
.devis-type-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.devis-type-card {
  flex: 1;
  padding: 13px 10px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}

.devis-type-card:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.devis-type-card.is-selected {
  border-color: var(--brand-blue);
  background: #f0f9ff;
  color: var(--brand-blue);
}

/* ══ Sub-section dropdown (services / forfaits) ══ */
.devis-sub-section {
  margin-top: 16px;
}

.devis-sub-section label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

/* ══ Step 3 grid ══ */
.devis-step3-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ══ Modal dropdown (mdd) ══ */
.mdd-wrap {
  position: relative;
}

.mdd-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 2px solid var(--brand-blue);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.mdd-btn:hover {
  background: #e0f2fe;
}

.mdd-btn.mdd-selected {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.mdd-caret {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.1s ease-in;
}

.mdd-btn.mdd-open .mdd-caret {
  transform: rotate(180deg);
}

/* ── Locked state ── */
.mdd-locked {
  pointer-events: none;
}
.mdd-locked .mdd-btn {
  border-color: #c5c5c5 !important;
  color: #aaaaaa !important;
  background: #f4f4f4 !important;
  cursor: not-allowed !important;
}
.mdd-locked .mdd-caret {
  color: #aaaaaa !important;
}

.mdd-list {
  display: none;
  background: #fff;
  border: 2px solid var(--brand-blue);
  border-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 6px 20px rgba(14,165,233,0.13);
  list-style: none;
  padding: 4px 0;
}

.mdd-list.mdd-open {
  display: block;
}



.mdd-list li {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #1e3a5f;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.mdd-list li:hover {
  background: #e0f2fe;
  color: var(--brand-blue);
}

.mdd-list li.mdd-active {
  background: #f0f9ff;
  color: var(--brand-blue);
  font-weight: 700;
}

/* ══ Navigation ══ */
.devis-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 10px;
}

.devis-step-nav-right {
  display: flex;
  gap: 10px;
}

.devis-btn-prev {
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #6b7280;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.devis-btn-prev:hover {
  border-color: #6b7280;
  color: #374151;
}

.devis-btn-next {
  background: var(--brand-blue);
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.devis-btn-next:hover {
  background: #0284c7;
  transform: translateX(2px);
}

.devis-modal .devis-btn-submit {
  background: var(--brand-blue) !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  overflow: visible !important;
  position: static !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  width: auto !important;
  cursor: pointer;
  transition: background 0.15s;
}
.devis-modal .devis-btn-submit:hover {
  background: #0284c7 !important;
  color: #fff !important;
}
.devis-modal .devis-btn-submit::before {
  display: none !important;
}


.devis-modal-note {
  margin-top: 10px;
  font-size: 13px;
  min-height: 18px;
}

.devis-reassurance {
  margin: 8px 0 0;
  font-size: 11px;
  color: #8a94a2;
  text-align: center;
}

@media (max-width: 680px) {
  .devis-modal-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .devis-modal-head {
    padding: 20px 20px 16px;
  }

  .devis-modal-head h2 {
    font-size: 28px;
  }

  .devis-modal-body {
    padding: 18px 14px 20px;
  }

  .devis-type-cards {
    gap: 8px;
  }

  .devis-type-card {
    padding: 11px 6px;
    font-size: 13px;
  }

  .devis-steps-bar {
    margin-top: 14px;
  }

  .dsi-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .devis-step-item span {
    font-size: 10px;
  }
}

body {
  opacity: 0;
  transition: opacity 0.24s ease;
}

body.page-ready {
  opacity: 1;
}

body.page-leaving {
  opacity: 0;
  pointer-events: none;
}

body:not(.page-ready):not(.page-leaving)::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #0f0f10;
  z-index: 99998;
}

body:not(.page-ready):not(.page-leaving)::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: #0ea5e9;
  border-right-color: var(--promo-orange);
  animation: aq-loader-spin 0.8s linear infinite;
  z-index: 99999;
}

@keyframes aq-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.page-ready,
  body.page-leaving {
    opacity: 1;
    transition: none;
  }

  body:not(.page-ready):not(.page-leaving)::after {
    animation: none;
  }
}

/* Services — effet de cartes superposées */
.services-page-body .media-stack {
  height: 320px;
}
.services-page-body .media-card-md {
  border: 4px solid #ffffff;
  box-shadow: 0 14px 36px rgba(15, 30, 60, 0.22);
}

/* Promo banner removed site-wide */
.promo-banner {
  display: none !important;
}

.navbar {
  top: 0 !important;
}

@media (max-width: 900px) {
}
