/* ============================================================
   MOVECLEAN – style.css
   Design: premium, minimaliste, mobile-first
   Palette : blanc #FFFFFF · gris clair #F4F6F9 · bleu #1A6FC4 · bleu clair #5CB8FF
   Typo : Inter (body) · Poppins (titres)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #1A6FC4;
  --blue-light: #5CB8FF;
  --blue-wa:    #25D366;
  --white:      #FFFFFF;
  --off-white:  #F4F6F9;
  --gray-100:   #EEF1F5;
  --gray-300:   #C8D0DC;
  --gray-500:   #8896A8;
  --gray-700:   #3D4A5C;
  --dark:       #131C28;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --transition: .22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.btn:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(255,255,255,.1);
}

.btn--sm {
  padding: 9px 16px;
  font-size: .82rem;
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1rem;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo__text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--gray-700);
  letter-spacing: -.3px;
}

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

.logo--light .logo__text {
  color: rgba(255,255,255,.9);
}

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

/* Nav */
.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 6px;
}

.nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover {
  background: var(--gray-100);
  color: var(--blue);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 28, 40, .72) 0%,
    rgba(26, 111, 196, .45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 620px;
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__sub {
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--off-white);
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,111,196,.08);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 480px;
  margin-inline: auto;
}

/* ---------- SERVICE CARDS ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.service-card__sub {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.service-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: letter-spacing var(--transition);
}

.service-card:hover .service-card__cta {
  letter-spacing: .03em;
}

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

.zones__text .section__title {
  text-align: left;
}

.zones__desc {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.zones__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
}

.zones__map iframe {
  display: block;
}

/* ---------- STEPS ---------- */
.steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
}

.step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__title {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.step__desc {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.step__arrow {
  font-size: 1.4rem;
  color: var(--gray-300);
  margin-top: 30px;
  flex-shrink: 0;
}

.center-cta {
  text-align: center;
}

/* ---------- ACCORDION ---------- */
.accordion {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  gap: 12px;
}

.accordion__trigger::-webkit-details-marker { display: none; }

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue);
}

details[open] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  padding: 0 28px 24px;
  border-top: 1px solid var(--gray-100);
}

.extra-list {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.extra-list li {
  padding-left: 20px;
  position: relative;
  font-size: .9rem;
  color: var(--gray-700);
}

.extra-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: .65rem;
  top: 4px;
}

.accordion__note {
  margin-top: 18px;
  font-size: .85rem;
  color: var(--gray-500);
}

.accordion__note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer__brand .logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

.footer__info p,
.footer__nav ul li {
  font-size: .88rem;
  margin-bottom: 10px;
}

.footer__info a,
.footer__nav a {
  color: var(--blue-light);
  transition: opacity var(--transition);
}

.footer__info a:hover,
.footer__nav a:hover {
  opacity: .75;
}

.footer__info strong {
  color: rgba(255,255,255,.8);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ---------- FLOATING WA ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .zones {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .zones__text .section__title {
    text-align: center;
  }

  .zones__text {
    text-align: center;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  /* Header: hide nav, show burger */
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 16px 20px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .nav__link {
    display: block;
    font-size: .95rem;
    padding: 10px 14px;
  }

  .burger {
    display: flex;
  }

  /* Hide WhatsApp text btn in header on mobile, keep burger visible */
  .header__inner .btn--wa {
    display: none;
  }

  /* Hero */
  .hero__content {
    padding-top: 110px;
    padding-bottom: 40px;
  }

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

  /* Services: 1 col */
  .services {
    grid-template-columns: 1fr;
  }

  /* Steps: vertical */
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step__arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 36px;
  }
}

/* ============================================================
   ANIMATIONS & TRANSITIONS PREMIUM
   ============================================================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* --- Hero animations --- */
.hero__eyebrow  { animation: fadeUp .7s ease both; animation-delay: .1s; }
.hero__title    { animation: fadeUp .7s ease both; animation-delay: .25s; }
.hero__sub      { animation: fadeUp .7s ease both; animation-delay: .4s; }
.hero__ctas     { animation: fadeUp .7s ease both; animation-delay: .55s; }

/* --- Scroll reveal (JS-triggered) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.visible > *:nth-child(1)  { opacity:1; transform:none; transition-delay:.00s; }
.reveal-stagger.visible > *:nth-child(2)  { opacity:1; transform:none; transition-delay:.08s; }
.reveal-stagger.visible > *:nth-child(3)  { opacity:1; transform:none; transition-delay:.16s; }
.reveal-stagger.visible > *:nth-child(4)  { opacity:1; transform:none; transition-delay:.24s; }
.reveal-stagger.visible > *:nth-child(5)  { opacity:1; transform:none; transition-delay:.32s; }
.reveal-stagger.visible > *:nth-child(6)  { opacity:1; transform:none; transition-delay:.40s; }
.reveal-stagger.visible > *:nth-child(7)  { opacity:1; transform:none; transition-delay:.48s; }
.reveal-stagger.visible > *:nth-child(8)  { opacity:1; transform:none; transition-delay:.56s; }
.reveal-stagger.visible > *:nth-child(9)  { opacity:1; transform:none; transition-delay:.64s; }
.reveal-stagger.visible > *:nth-child(10) { opacity:1; transform:none; transition-delay:.72s; }
/* Steps : arrows et cards tous visibles */
.steps.reveal-stagger.visible > .step        { opacity:1; transform:none; }
.steps.reveal-stagger.visible > .step__arrow { opacity:1; transform:none; }

/* --- Header slide-in --- */
.header { animation: fadeIn .5s ease both; }

/* --- WA float pulse --- */
.wa-float { animation: pulseDot 2.5s ease infinite; }

/* --- Nav active --- */
.nav__link--active {
  color: var(--blue) !important;
  background: rgba(26,111,196,.08);
}

/* --- Logo footer --- */
.logo__img--footer {
  height: 36px;
  filter: none;
  opacity: 1;
}

/* ============================================================
   PAGE HERO (pages internes)
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero__img {
  transform: scale(1);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,20,36,.5) 0%,
    rgba(10,20,36,.75) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  animation: fadeUp .7s ease both;
}

.page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.page-hero__title em {
  font-style: normal;
  color: var(--blue-light);
}

/* ============================================================
   INNER PAGE LAYOUT
   ============================================================ */
.inner-page {
  max-width: 860px;
}

/* --- Content blocks --- */
.content-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.content-block--blue {
  background: linear-gradient(135deg, #1a3a6b 0%, #1a6fc4 100%);
  border: none;
  color: var(--white);
}

.content-block--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.content-block__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.content-block__title--light {
  color: var(--white);
}

/* --- Check list --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
}

.check-list--light li { color: rgba(255,255,255,.9); }
.check-list--light li::before { color: var(--blue-light); }

.check-list--sm li { font-size: .86rem; }
.check-list--sm { gap: 7px; }

/* --- Price grid --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.price-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.price-card__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.price-card__price {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
}

.price-card__price small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--gray-500);
}

.price-note {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.6;
  font-style: italic;
}

/* --- CTA block --- */
.cta-block {
  text-align: center;
  padding: 48px 0 32px;
}

.cta-block__note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ============================================================
   FORMULES AUTO
   ============================================================ */
.formules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

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

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

.formule-card--featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(26,111,196,.15);
}

.formule-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.formule-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.formule-card:hover .formule-card__img { transform: scale(1.04); }

.formule-card__body {
  padding: 28px;
}

.formule-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.formule-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.formule-card__desc {
  font-size: .88rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

/* ============================================================
   TEXTILES
   ============================================================ */
.textile-service {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.textile-service:hover {
  box-shadow: var(--shadow-md);
}

.textile-service--alt {
  background: var(--off-white);
}

.textile-service__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.textile-service__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.textile-service__badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  background: rgba(26,111,196,.1);
  padding: 3px 10px;
  border-radius: 99px;
}

.textile-service__desc {
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.textile-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.textile-price-item {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  min-width: 80px;
}

.textile-price-item span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.textile-price-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */
@media (max-width: 640px) {
  .formules-grid        { grid-template-columns: 1fr; }
  .content-block--row   { grid-template-columns: 1fr; gap: 20px; }
  .content-block        { padding: 24px 20px; }
  .textile-service      { padding: 24px 20px; }
  .price-grid           { grid-template-columns: 1fr 1fr; }
  .page-hero            { height: 44vh; min-height: 260px; }
  .page-hero__content   { padding-bottom: 28px; }
  .textile-price-row    { gap: 8px; }
}

/* ============================================================
   VITRES — TARIFS PAR LOGEMENT
   ============================================================ */
.vitres-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.vitres-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}

.vitres-price-row:last-child { border-bottom: none; }
.vitres-price-row:hover { background: var(--off-white); }

.vitres-price-row--devis { background: var(--off-white); }
.vitres-price-row--devis:hover { background: var(--gray-100); }

.vitres-price-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: .9rem;
}

.vitres-price-left svg { color: var(--blue); flex-shrink: 0; }
.vitres-price-left strong { color: var(--dark); }

.vitres-price-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.vitres-price-val strong { font-size: 1.05rem; }
.vitres-price-val--devis { color: var(--gray-500); font-size: .88rem; font-weight: 500; }

.vitres-mention {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(26,111,196,.05);
  border: 1px solid rgba(26,111,196,.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.vitres-mention svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.vitres-mention p { font-size: .82rem; color: var(--gray-500); line-height: 1.6; font-style: italic; }

/* ============================================================
   TEXTILES HUB — CARDS 3 SOUS-PAGES
   ============================================================ */
.textile-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.textile-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.textile-nav-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.textile-nav-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,111,196,.1), rgba(92,184,255,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background var(--transition);
}

.textile-nav-card:hover .textile-nav-card__icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}

.textile-nav-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.textile-nav-card__desc {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.textile-nav-card__price {
  font-size: .85rem;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.textile-nav-card__price strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--blue);
}

.textile-nav-card__cta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  transition: letter-spacing var(--transition);
}

.textile-nav-card:hover .textile-nav-card__cta { letter-spacing: .03em; }

@media (max-width: 640px) {
  .textile-nav-grid { grid-template-columns: 1fr; }
  .vitres-price-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vitres-price-val { font-size: .9rem; }
}

/* ============================================================
   SEO ZONES BLOCK — discret, lisible, pas agressif
   ============================================================ */
.seo-zones {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  padding: 20px 0;
}

.seo-zones p {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.seo-zones strong {
  color: var(--gray-700);
  font-weight: 500;
}
