/* =====================================================================
   Nettoyer Tapis à Bordeaux — Feuille de style principale
   Direction : "Fresh Premium Clean" — pétrole profond, menthe fraîche,
   crème chaleureuse, touche bordeaux. Mobile-first, accessible (AA).
   ===================================================================== */

:root {
  /* Couleurs */
  --petrol: #0b4949;
  --petrol-700: #0e5a5a;
  --petrol-900: #073333;
  --mint: #1fc9a3;
  --mint-600: #16a888;
  --aqua: #5ae2cd;
  --cream: #fbf6ed;
  --cream-2: #f3ece0;
  --wine: #7f2d3a;
  --ink: #142323;
  --muted: #5a6b6b;
  --line: rgba(11, 73, 73, 0.12);
  --white: #ffffff;

  /* Typo */
  --display: "Fraunces", Georgia, serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Espacements & rayons */
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 18px rgba(11, 73, 73, 0.08);
  --shadow: 0 18px 50px rgba(11, 73, 73, 0.14);
  --shadow-lg: 0 30px 80px rgba(11, 73, 73, 0.22);
  --maxw: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--petrol-900);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mint-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--mint);
}

.section { padding: 84px 0; position: relative; }
.section--tinted { background: var(--cream-2); }
.section--dark { background: var(--petrol-900); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.section--dark .lead { color: rgba(251, 246, 237, 0.78); }

/* ----------------------------- Boutons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--mint); color: var(--petrol-900);
  box-shadow: 0 10px 26px rgba(31, 201, 163, 0.4);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(31, 201, 163, 0.5); }
.btn--ghost {
  background: transparent; color: var(--petrol);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--mint); color: var(--mint-600); transform: translateY(-2px); }
.btn--white { background: var(--cream); color: var(--petrol-900); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn .ico { width: 18px; height: 18px; }

/* --------------------------- En-tête / nav ------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(251, 246, 237, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm); padding: 8px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 13px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--petrol), var(--mint-600));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { font-family: var(--display); font-size: 1.18rem; color: var(--petrol-900); line-height: 1; white-space: nowrap; }
.brand__name small { display: block; font-family: var(--body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mint-600); margin-top: 3px; }

.nav__links { display: none; align-items: center; gap: 26px; }
.nav__links a { font-weight: 600; font-size: 0.96rem; color: var(--petrol-900); position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--mint); transition: width 0.3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: none; }

.nav__phone {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--petrol); color: var(--cream);
  padding: 11px 20px; border-radius: 100px; font-weight: 700;
  box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), background 0.25s;
}
.nav__phone:hover { transform: translateY(-2px); background: var(--petrol-700); }
.nav__phone svg { width: 17px; height: 17px; }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px; border-radius: 10px;
}
.burger span { width: 26px; height: 2.5px; border-radius: 3px; background: var(--petrol-900); transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 90px 28px 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.9rem; color: var(--petrol-900); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 22px; }

/* ------------------------------- Hero ------------------------------ */
.hero { position: relative; padding: 130px 0 70px; overflow: hidden; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; z-index: 0;
}
.hero__blob--1 { width: 460px; height: 460px; top: -120px; right: -120px;
  background: radial-gradient(circle at 30% 30%, var(--aqua), transparent 70%); }
.hero__blob--2 { width: 380px; height: 380px; bottom: -140px; left: -120px;
  background: radial-gradient(circle at 40% 40%, rgba(31, 201, 163, 0.5), transparent 70%); }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 34px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.4rem); margin: 16px 0 18px; }
.hero h1 em { font-style: italic; color: var(--mint-600); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--display); font-size: 1.8rem; color: var(--petrol); }
.hero__trust span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

.hero__visual { position: relative; }
.hero__card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px; position: relative; overflow: hidden;
}
.hero__card--photo { padding: 0; }
.hero__card--photo img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 3 / 2; border-radius: var(--radius); }
.hero__lottie { width: 100%; height: 300px; color: var(--mint-600); }

/* Icônes SVG animées (remplacent les anciennes animations Lottie) */
.ic-anim { width: 100%; height: 100%; display: block; transform-origin: center; transform-box: fill-box; }
[data-lottie] > svg { width: 100%; height: 100%; display: block; }
.ctaband__lottie { color: var(--aqua); }
@keyframes ic-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes ic-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes ic-spin { to { transform: rotate(360deg); } }
@keyframes ic-twinkle { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.9); opacity: 0.82; } }
.ic-float { animation: ic-float 3s ease-in-out infinite; }
.ic-pulse { animation: ic-pulse 2.6s ease-in-out infinite; }
.ic-twinkle { animation: ic-twinkle 2.6s ease-in-out infinite; }
.ic-spin { animation: ic-spin 1.3s linear infinite; transform-origin: 24px 24px; transform-box: view-box; }
.hero__badge {
  position: absolute; background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 0.9rem;
}
.hero__badge .dot { width: 38px; height: 38px; border-radius: 11px; background: var(--cream-2); display: grid; place-items: center; }
.hero__badge--1 { bottom: -16px; left: -10px; }
.hero__badge--2 { top: 18px; right: -14px; }
.hero__badge small { display: block; font-weight: 500; color: var(--muted); font-size: 0.74rem; }

/* ------------------------- Bandeau confiance ----------------------- */
.strip { background: var(--petrol-900); color: var(--cream); padding: 22px 0; }
.strip__row { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; text-align: center; }
.strip__item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.strip__item svg { width: 20px; height: 20px; color: var(--aqua); flex: 0 0 auto; }

/* ------------------------------ Cartes ----------------------------- */
.grid { display: grid; gap: 22px; }
.head { max-width: 640px; margin-bottom: 46px; }
.head h2 { font-size: clamp(2rem, 5vw, 2.9rem); margin: 14px 0 14px; }

.card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__lottie { width: 64px; height: 64px; margin-bottom: 14px; color: var(--mint-600); }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; color: var(--mint-600); }
.card__link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ------------------------------ Process ---------------------------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; flex: 0 0 auto; width: 50px; height: 50px; border-radius: 15px;
  background: linear-gradient(135deg, var(--petrol), var(--mint-600)); color: var(--cream);
  font-family: var(--display); font-size: 1.4rem; display: grid; place-items: center; }
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.16rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* -------------------------- Section Pro (B2B) ---------------------- */
.pro { position: relative; overflow: hidden; }
.pro__grid { display: grid; gap: 40px; align-items: center; }
.pro__list { list-style: none; display: grid; gap: 16px; margin-top: 26px; }
.pro__list li { display: flex; gap: 13px; align-items: flex-start; }
.pro__list svg { width: 24px; height: 24px; color: var(--aqua); flex: 0 0 auto; margin-top: 2px; }
.pro__list b { display: block; color: var(--cream); }
.pro__list span { color: rgba(251, 246, 237, 0.72); font-size: 0.94rem; }
.pro__panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px; backdrop-filter: blur(6px); }
.pro__panel .pill { display: inline-block; background: var(--mint); color: var(--petrol-900); font-weight: 800; font-size: 0.8rem; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.pro__sectors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pro__sectors span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16); padding: 8px 15px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; }

/* ------------------------------- Avis ------------------------------ */
.reviews { display: grid; gap: 22px; }
.review { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.review__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 12px; }
.review p { font-size: 1.04rem; color: var(--ink); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--mint), var(--aqua)); display: grid; place-items: center; font-weight: 800; color: var(--petrol-900); }
.review__author b { display: block; }
.review__author span { font-size: 0.84rem; color: var(--muted); }

/* ----------------------------- Zones ------------------------------- */
.zones { display: flex; flex-wrap: wrap; gap: 12px; }
.zones span { background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; font-weight: 600; font-size: 0.92rem; box-shadow: var(--shadow-sm); transition: 0.3s var(--ease); }
.zones span:hover { background: var(--mint); color: var(--petrol-900); transform: translateY(-2px); }

/* ------------------------------ CTA band --------------------------- */
.ctaband { background: linear-gradient(135deg, var(--petrol), var(--petrol-700)); color: var(--cream); border-radius: 30px; padding: 54px 36px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.ctaband h2 { color: var(--cream); font-size: clamp(1.8rem, 5vw, 2.7rem); margin-bottom: 14px; }
.ctaband p { color: rgba(251,246,237,0.82); max-width: 50ch; margin: 0 auto 28px; }
.ctaband__row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.ctaband__lottie { position: absolute; width: 130px; height: 130px; opacity: 0.4; }
.ctaband__lottie--l { left: -10px; top: -10px; }
.ctaband__lottie--r { right: -10px; bottom: -10px; }

/* ------------------------------ Blog ------------------------------- */
.posts { display: grid; gap: 26px; }
.post {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__media { height: 190px; position: relative; display: grid; place-items: center; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__media--a { background: linear-gradient(135deg, #d7f5ec, #a9e9d9); }
.post__media--b { background: linear-gradient(135deg, #cfeef0, #9fd9dd); }
.post__media--c { background: linear-gradient(135deg, #ece3d2, #d9c8a8); }
.post__media lottie-player, .post__media dotlottie-player { width: 130px; height: 130px; }
.post__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post__tag { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint-600); }
.post h3 { font-size: 1.3rem; margin: 10px 0; }
.post p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.84rem; color: var(--muted); }
.post__meta b { color: var(--mint-600); }

/* Article */
.article { max-width: 760px; margin: 0 auto; padding-top: 130px; }
.article__cover { margin: 0 0 36px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article__cover img { width: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.article__hero { text-align: center; margin-bottom: 40px; }
.article__hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin: 16px 0; }
.article__meta { color: var(--muted); font-size: 0.9rem; }
.article__body h2 { font-size: 1.7rem; margin: 38px 0 14px; }
.article__body h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.article__body p { margin-bottom: 18px; color: var(--ink); }
.article__body ul { margin: 0 0 18px 22px; color: var(--ink); }
.article__body li { margin-bottom: 8px; }
.article__body blockquote { border-left: 4px solid var(--mint); background: var(--cream-2); padding: 18px 22px; border-radius: 0 14px 14px 0; margin: 24px 0; font-style: italic; color: var(--petrol-900); }
.article__cta { background: var(--cream-2); border-radius: var(--radius); padding: 30px; text-align: center; margin: 40px 0; }

/* ----------------------------- Contact ----------------------------- */
.contact__grid { display: grid; gap: 34px; }
.contact__cards { display: grid; gap: 16px; }
.contact__card { display: flex; gap: 16px; align-items: center; background: var(--white); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.contact__card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--cream-2); display: grid; place-items: center; flex: 0 0 auto; }
.contact__card .ic svg { width: 24px; height: 24px; color: var(--mint-600); }
.contact__card b { display: block; font-size: 1.05rem; color: var(--petrol-900); }
.contact__card span { color: var(--muted); font-size: 0.92rem; }
.form { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; color: var(--petrol-900); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: var(--body); font-size: 1rem; background: var(--cream); transition: border 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--mint); }
.field textarea { min-height: 120px; resize: vertical; }
.form__note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ------------------------- Bouton appel collant -------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--white); box-shadow: 0 -8px 30px rgba(11,73,73,0.16);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px;
}
.callbar a { flex: 1; }
.callbar .btn { width: 100%; }
.callbar__fab { display: none; }

/* ------------------------------ Footer ----------------------------- */
.footer { background: var(--petrol-900); color: rgba(251,246,237,0.82); padding: 70px 0 40px; }
.footer__grid { display: grid; gap: 34px; }
.footer h4 { color: var(--cream); font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
/* Liens génériques du footer (bas de page, mentions légales) */
.footer a { color: var(--cream); transition: color 0.2s; }
.footer a:hover { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
/* Liens de navigation/services présentés comme des boutons lisibles :
   contraste maximal (cream plein), cible tactile 44px, fond + décalage au survol (sans reflow) */
.footer__grid > div > a:not(.brand):not(.footer__call) {
  display: flex; align-items: center; width: fit-content;
  min-height: 44px; padding: 8px 14px; margin-left: -14px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.005em; line-height: 1.2;
  border-radius: 10px;
  transition: color 0.18s, background 0.18s, transform 0.18s;
}
.footer__grid > div > a:not(.brand):not(.footer__call):hover {
  color: #fff; background: rgba(90,226,205,0.14);
  text-decoration: none; transform: translateX(3px);
}
.footer__grid > div > a:not(.brand):not(.footer__call):focus-visible {
  outline: 2px solid var(--aqua); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .footer__grid > div > a:not(.brand):not(.footer__call):hover { transform: none; }
}
/* Focus clavier visible (accessibilité WCAG) */
.footer a:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; border-radius: 4px; }
.footer__brand p { margin: 14px 0 18px; max-width: 34ch; }
/* Bouton d'appel : plus grand, plus lisible, états hover/focus marqués */
.footer a.footer__call { display: inline-flex; align-items: center; gap: 10px; background: var(--mint); color: var(--petrol-900); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.01em; padding: 14px 26px; border-radius: 100px; line-height: 1; text-decoration: none; box-shadow: 0 6px 18px rgba(31,201,163,0.28); transition: transform 0.18s var(--ease), background 0.18s, box-shadow 0.18s; }
.footer a.footer__call:hover { background: var(--aqua); color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(90,226,205,0.4); text-decoration: none; }
.footer a.footer__call:focus-visible { outline: 3px solid var(--cream); outline-offset: 3px; }
.footer a.footer__call svg { flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.84rem; }

/* ---------------------- Animations au scroll ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ RESPONSIVE =========================== */
@media (min-width: 680px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 900px) {
  body { font-size: 18px; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
  .callbar { display: none; }
  .callbar__fab {
    display: inline-flex; position: fixed; right: 26px; bottom: 26px; z-index: 95;
    width: 64px; height: 64px; border-radius: 50%; background: var(--mint);
    box-shadow: 0 14px 34px rgba(31,201,163,0.5); align-items: center; justify-content: center;
    animation: pulse 2.4s infinite;
  }
  .callbar__fab svg { width: 28px; height: 28px; color: var(--petrol-900); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 50px; }
  .hero__lottie { height: 380px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .posts { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pro__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; }
  .ctaband { padding: 70px 60px; }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(31,201,163,0.5); }
  50% { box-shadow: 0 14px 34px rgba(31,201,163,0.5), 0 0 0 16px rgba(31,201,163,0.12); }
}

/* Espace bas mobile pour ne pas masquer le contenu sous la callbar */
@media (max-width: 899px) {
  body { padding-bottom: 72px; }
  /* Téléphone du header en icône compacte (le numéro reste dans la barre d'appel + menu) */
  .nav__phone { font-size: 0; gap: 0; padding: 11px; }
  .nav__phone svg { width: 20px; height: 20px; }
}
