/* ==========================================================================
   CHOSTE — Stylesheet v2
   Typo : Plus Jakarta Sans (clean, lisible, esprit nocodefactory + Stripe)
   Inspirations : nocodefactory.fr, stripe.com, linear.app, vercel.com,
                  framer.com, gymshark.com, hubspot.com
   ========================================================================== */

:root {
  --primary: #6d28d9;
  --primary-2: #ec4899;
  --primary-3: #f97316;
  --accent: #22d3ee;
  --accent-2: #3b82f6;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #5a5a6a;
  --muted-2: #8a8a98;
  --line: #ececf2;
  --bg: #fbfbfd;
  --bg-soft: #f4f4f8;
  --shadow-sm: 0 4px 12px rgba(10,10,30,0.04);
  --shadow-md: 0 12px 32px rgba(10,10,30,0.08);
  --shadow-lg: 0 24px 60px rgba(10,10,30,0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --grad: linear-gradient(90deg, #6d28d9, #ec4899, #f97316, #eab308, #22d3ee, #3b82f6, #6d28d9);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 17px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typo display ---------- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.display-xl {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.display-lg {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.display-md {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   GRADIENT MARQUEE BAR (haut de page, façon nocodefactory)
   ========================================================================== */
.top-marquee {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  background-size: 300% 100%;
  animation: gradient-shift 8s ease infinite;
  color: #fff;
  height: 38px;
  display: flex;
  align-items: center;
}
.top-marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.top-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.top-marquee-track > span::after {
  content: '✦';
  font-size: 11px;
  opacity: 0.7;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; color: var(--ink); }
.nav-logo svg, .nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}
.nav-links > li > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad);
  background-size: 200% 100%;
  transition: width .25s ease;
}
.nav-links > li > a:hover { color: var(--primary); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a.active { color: var(--primary); }
.nav-links > li > a.active::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(109,40,217,0.3);
}
.nav-cta::after { display: none !important; }

/* ---------- Dropdown ---------- */
.has-dropdown { position: relative; }
.has-dropdown > a { cursor: pointer; }
.has-dropdown > a .caret {
  display: inline-block;
  margin-left: 4px;
  transition: transform .2s;
  font-size: 10px;
}
.has-dropdown:hover > a .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-dropdown.open > .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { margin: 0; padding: 0; border: 0; }
.nav-dropdown li a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s, transform .2s;
  position: relative;
}
.nav-dropdown li a::after { display: none !important; }

/* ============================================================
   COLORED SERVICE CARDS in dropdown (style nocodefactory.fr)
   ============================================================ */
.nav-dropdown li[data-svc] a {
  padding: 18px 48px 18px 20px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}

/* arrow icon (top-right) — uses currentColor via mask */
.nav-dropdown li[data-svc] a::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='9 7 17 7 17 15'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='7' y1='17' x2='17' y2='7'/><polyline points='9 7 17 7 17 15'/></svg>") center / contain no-repeat;
  opacity: 0.85;
  transition: transform .25s, opacity .25s;
}
.nav-dropdown li[data-svc] a:hover::before {
  transform: translate(3px, -3px);
  opacity: 1;
}

/* Service 1 — Création de Site Web (violet → pink) */
.nav-dropdown li[data-svc="1"] a {
  background: linear-gradient(135deg, rgba(109,40,217,0.10), rgba(236,72,153,0.08));
  color: #6d28d9;
}
.nav-dropdown li[data-svc="1"] a:hover {
  background: linear-gradient(135deg, rgba(109,40,217,0.18), rgba(236,72,153,0.14));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109,40,217,0.15);
}

/* Service 2 — Gestion Google Business (orange → yellow) */
.nav-dropdown li[data-svc="2"] a {
  background: linear-gradient(135deg, rgba(249,115,22,0.11), rgba(234,179,8,0.09));
  color: #ea580c;
}
.nav-dropdown li[data-svc="2"] a:hover {
  background: linear-gradient(135deg, rgba(249,115,22,0.20), rgba(234,179,8,0.16));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249,115,22,0.15);
}

/* Service 3 — Génération de leads (blue → cyan) */
.nav-dropdown li[data-svc="3"] a {
  background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(34,211,238,0.10));
  color: #2563eb;
}
.nav-dropdown li[data-svc="3"] a:hover {
  background: linear-gradient(135deg, rgba(59,130,246,0.20), rgba(34,211,238,0.18));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(59,130,246,0.15);
}

/* Fallback (non-service items) */
.nav-dropdown li:not([data-svc]) a:hover {
  background: rgba(109,40,217,0.06);
  color: var(--primary);
}
/* invisible bridge so the menu stays open while moving cursor down */
.has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

/* Mobile: dropdown becomes inline card stack */
@media (max-width: 900px) {
  .has-dropdown { width: 100%; }
  .has-dropdown > a .caret { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: 0;
    padding: 12px 0 4px 0;
    min-width: 0;
    background: transparent;
    gap: 10px;
  }
  .nav-dropdown li[data-svc] a {
    padding: 20px 52px 20px 22px;
    font-size: 17px;
    line-height: 1.3;
    border-radius: 18px;
  }
  .nav-dropdown li[data-svc] a::before {
    top: 22px;
    right: 22px;
    width: 20px;
    height: 20px;
  }
  .has-dropdown::before { display: none; }
}

/* ==========================================================================
   TRUSTED-BY BAR (sober marquee logo strip)
   ========================================================================== */
.trusted-by {
  padding: 56px 0 8px;       /* espace au-dessus pour séparer des checks */
  position: relative;
  z-index: 5;
}
.trusted-by-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 22px;
}
.trusted-by-viewport {
  position: relative;
  overflow: hidden;
  /* fade edges pour un effet sober */
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.trusted-by-track {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 88px;
  white-space: nowrap;
  padding: 4px 44px;
  animation: trusted-scroll 44s linear infinite;
}
.trusted-by-viewport:hover .trusted-by-track {
  animation-play-state: paused;
}
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trusted-by-track .brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #9a9aab;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s, transform .25s;
  filter: grayscale(100%);
  opacity: 0.85;
  flex-shrink: 0;
}
.trusted-by-track .brand:hover {
  color: var(--ink);
  opacity: 1;
}
.trusted-by-track .brand-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: currentColor;
}
.trusted-by-track .brand-icon.circle { border-radius: 50%; }
.trusted-by-track .brand-icon.diamond { transform: rotate(45deg); border-radius: 3px; }
.trusted-by-track .brand-italic { font-style: italic; font-weight: 600; }
.trusted-by-track .brand-thin { font-weight: 500; letter-spacing: 0.04em; }
.trusted-by-track .brand-mono { font-family: 'Courier New', monospace; letter-spacing: -0.04em; font-weight: 700; }

/* Image-based brand logos (B&W marquee) — natural width, homogeneous gap */
.trusted-by-track .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;        /* base height — slightly smaller */
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: opacity .25s, transform .25s, filter .25s;
}
.trusted-by-track .brand-logo svg,
.trusted-by-track .brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Individual tweaks so visually all logos read at similar weight */
.trusted-by-track .brand-logo[aria-label="OVEO Plomberie"] { height: 48px; }
.trusted-by-track .brand-logo[aria-label="SCS Travaux"]    { height: 44px; }
.trusted-by-track .brand-logo[aria-label="MTM Solution"]   { height: 36px; }
.trusted-by-track .brand-logo[aria-label="STREM Plomberie"]{ height: 38px; }

.trusted-by-track .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .trusted-by-track { gap: 64px; padding: 4px 28px; }
  .trusted-by-track .brand-logo                              { height: 32px; }
  .trusted-by-track .brand-logo[aria-label="OVEO Plomberie"] { height: 40px; }
  .trusted-by-track .brand-logo[aria-label="SCS Travaux"]    { height: 36px; }
  .trusted-by-track .brand-logo[aria-label="MTM Solution"]   { height: 30px; }
  .trusted-by-track .brand-logo[aria-label="STREM Plomberie"]{ height: 32px; }
}

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility 0s .25s;
    z-index: 50;
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity .25s, transform .25s, visibility 0s 0s;
  }
  .nav-links li {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav-links li:last-child { border-bottom: 0; padding-top: 18px; }
  .nav-cta { display: inline-block; }
}

/* ==========================================================================
   GRADIENT TEXT & TEXT EFFECTS
   ========================================================================== */
.gradient-text {
  background: var(--grad);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  display: inline-block;
}

/* Highlight handwritten-style */
.highlight {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  white-space: nowrap;
  z-index: 1;
}
.highlight::before {
  content: '';
  position: absolute;
  inset: 4px -4px;
  background: linear-gradient(120deg, rgba(236,72,153,0.22), rgba(249,115,22,0.22));
  border-radius: 8px;
  transform: skewX(-8deg);
  z-index: -1;
}

/* Underline draw effect */
.draw-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.draw-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 5px;
  background: var(--grad);
  background-size: 300% 100%;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: gradient-shift 5s ease infinite, draw-line 1.1s .4s ease forwards;
}
@keyframes draw-line {
  to { transform: scaleX(1); }
}

/* Strikethrough effect (for "old" prices etc.) */
.strike-effect {
  position: relative;
  color: var(--muted-2);
}
.strike-effect::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 50%;
  height: 2px;
  background: var(--primary-2);
  transform: rotate(-6deg);
}

/* Typewriter rotating text */
.rotator {
  display: inline-block;
  position: relative;
  min-width: 1ch;
  vertical-align: baseline;
  white-space: nowrap;
}
.rotator-word { white-space: nowrap; }
.rotator-word {
  background: var(--grad);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 6s ease infinite;
}
.rotator-cursor {
  display: inline-block;
  width: 4px;
  background: var(--ink);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1.1s step-start infinite;
  border-radius: 2px;
  height: 0.85em;
}
@keyframes blink {
  50% { background: transparent; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, box-shadow .25s, background .25s, color .25s;
  cursor: pointer;
  text-align: center;
  border: 0;
  white-space: nowrap;
}
.btn-large { padding: 16px 30px; font-size: 16px; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(109,40,217,0.35);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--grad);
  background-size: 200% 100%;
  color: #fff;
  animation: gradient-shift 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-gradient::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left .6s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(236,72,153,0.4);
}
.btn-gradient:hover::after { left: 100%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--primary); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(109,40,217,0.08);
  border-radius: 999px;
}
.section-dark .section-eyebrow {
  background: rgba(236,72,153,0.15);
  color: #f9a8d4;
}
.section-title { margin-bottom: 18px; }
.section-subtitle {
  font-size: 1.075rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}
.section-dark .section-subtitle { color: #c9c9d4; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,40,217,0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  border: 1px solid rgba(109,40,217,0.12);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust micro-bar */
.trust-bar {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 14px;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar span::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   BLOBS (decoratifs)
   ========================================================================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: blob-float 24s ease infinite;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { background: var(--primary-2); width: 380px; height: 380px; top: -120px; left: -130px; }
.blob-2 { background: var(--primary); width: 440px; height: 440px; bottom: -180px; right: -140px; animation-delay: -8s; }
.blob-3 { background: var(--accent); width: 280px; height: 280px; top: 25%; right: 25%; opacity: 0.3; animation-delay: -16s; }

@keyframes blob-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-50px) scale(1.1); }
  66% { transform: translate(-30px,30px) scale(0.95); }
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-3-fixed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3-fixed { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  animation: gradient-shift 6s ease infinite;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.section-dark .card {
  background: #141420;
  border-color: #26263a;
}
.section-dark .card .card-text,
.section-dark .card p { color: #b9b9c8; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-icon { transform: rotate(-6deg) scale(1.05); }
.card-icon-pink { background: linear-gradient(135deg, var(--primary-2), var(--primary-3)); }
.card-icon-blue { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.card-icon-orange { background: linear-gradient(135deg, var(--primary-3), #eab308); }
.card-icon-violet { background: linear-gradient(135deg, var(--primary), var(--accent-2)); }
.card-icon-green { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.card-icon-red { background: linear-gradient(135deg, #ef4444, #f97316); box-shadow: 0 8px 22px rgba(239,68,68,0.25); }

/* Pin card — fond doux rouge/orange pour rappeler l'épingle 📍 */
.feature-card.pin-card {
  background: linear-gradient(135deg, #fff5f3 0%, #ffe9e2 60%, #fde4d3 100%);
  border-color: rgba(239,68,68,0.18);
}
.feature-card.pin-card::before {
  background: radial-gradient(circle at center, rgba(239,68,68,0.18), transparent 55%);
}
.feature-card.pin-card .card-title { color: #1a1a1a; }
.feature-card.pin-card:hover {
  border-color: rgba(239,68,68,0.35);
  box-shadow: 0 24px 50px rgba(239,68,68,0.18);
}

/* ==========================================================================
   CASE STUDY — Résultat de l'opération (encart sombre)
   ========================================================================== */
.case-result-card {
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg,#0a0a0a 0%,#1a0a2e 100%);
  position: relative;
  overflow: hidden;
}
.case-result-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(109,40,217,0.5), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236,72,153,0.4), transparent 50%);
  pointer-events: none;
}
.case-result-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.case-result-main { flex: 0 1 auto; min-width: 0; }
.case-result-aside { flex: 0 0 auto; }
.case-result-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
  margin: 4px 4px;
}
.case-result-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c0c0d4;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-result-value {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
}
.case-result-aside-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.case-result-detail { color: #b9b9c8; font-size: 14.5px; margin-top: 8px; }
.case-result-aside .case-result-detail { font-size: 13px; margin-top: 6px; }

@media (max-width: 700px) {
  .case-result-card { padding: 22px 20px; }
  .case-result-row { gap: 14px; flex-direction: column; align-items: flex-start; }
  .case-result-divider { width: 100%; height: 1px; align-self: stretch; margin: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent); }
  .case-result-aside { text-align: left; }
}

/* Phone card — fond doux rose/violet pour rappeler l'appel 📞 */
.feature-card.phone-card {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 60%, #ede9fe 100%);
  border-color: rgba(236,72,153,0.18);
}
.feature-card.phone-card::before {
  background: radial-gradient(circle at center, rgba(236,72,153,0.18), transparent 55%);
}
.feature-card.phone-card .card-title { color: #1a1a1a; }
.feature-card.phone-card:hover {
  border-color: rgba(236,72,153,0.35);
  box-shadow: 0 24px 50px rgba(236,72,153,0.18);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section-dark .card-title { color: #fff; }
.card-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  font-weight: 400;
}

.card-list {
  list-style: none;
  margin-top: 18px;
}
.card-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.section-dark .card-list li { color: #c9c9d4; }
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--grad);
  background-size: 200% 100%;
  border-radius: 50%;
  animation: gradient-shift 4s ease infinite;
}
.card-list li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 10px;
  text-align: center;
}

/* Feature card with side icon */
.feature-row {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(109,40,217,0.2);
}
.feature-row .card-icon { flex-shrink: 0; margin-bottom: 0; }
.feature-row .feature-row-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* CTA card (clickable feature card with gradient background) */
.feature-card.cta-card {
  background: linear-gradient(135deg, #6d28d9 0%, #ec4899 50%, #f97316 100%);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  border-color: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.feature-card.cta-card .card-icon {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
}
.feature-card.cta-card .card-title { color: #fff; }
.feature-card.cta-card .card-text { color: rgba(255,255,255,0.95); font-size: 16px; line-height: 1.55; }
.feature-card.cta-card .cta-card-button {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s, box-shadow .25s;
}
.feature-card.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(236,72,153,0.4);
}
.feature-card.cta-card:hover .cta-card-button {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.feature-card.cta-card::before { display: none; }
.feature-card.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 50%);
  pointer-events: none;
}

/* Inline CTA strip — small CTA inserted between sections */
.cta-strip {
  margin: 0 auto;
  max-width: 1240px; /* = .container max-width, donc même largeur que les grilles d'encarts */
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(236,72,153,0.06));
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.cta-strip p { color: var(--muted); font-size: 14.5px; }
.cta-strip .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Immersive feature card (with hover background reveal) */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(109,40,217,0.12), transparent 50%);
  opacity: 0;
  transition: opacity .5s, transform .8s;
  pointer-events: none;
}
.feature-card.alt-2::before { background: radial-gradient(circle at center, rgba(236,72,153,0.12), transparent 50%); }
.feature-card.alt-3::before { background: radial-gradient(circle at center, rgba(249,115,22,0.12), transparent 50%); }
.feature-card.alt-4::before { background: radial-gradient(circle at center, rgba(34,211,238,0.12), transparent 50%); }
.feature-card.alt-5::before { background: radial-gradient(circle at center, rgba(59,130,246,0.12), transparent 50%); }
.feature-card.alt-6::before { background: radial-gradient(circle at center, rgba(34,197,94,0.12), transparent 50%); }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; transform: rotate(45deg); }
.feature-card .card-icon { transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.feature-card:hover .card-icon { transform: scale(1.12) rotate(-8deg); }
.feature-card-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 10px;
  background: rgba(109,40,217,0.08);
  border-radius: 999px;
}

/* ==========================================================================
   BIG VISUAL CARDS (services hero on home)
   ========================================================================== */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .service-cards { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, color .35s ease;
}
.service-card:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #3b82f6 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -10px rgba(109,40,217,0.45);
}
.service-card.alt-2:hover {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  border-color: transparent;
  box-shadow: 0 24px 50px -10px rgba(236,72,153,0.45);
}
.service-card.alt-3:hover {
  background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
  border-color: transparent;
  box-shadow: 0 24px 50px -10px rgba(249,115,22,0.45);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover strong,
.service-card:hover .service-card-tag,
.service-card:hover .service-card-link,
.service-card.alt-2:hover .service-card-tag,
.service-card.alt-3:hover .service-card-tag,
.service-card.alt-2:hover .service-card-link,
.service-card.alt-3:hover .service-card-link { color: #fff !important; }

/* Trust bar — bold parts en noir pur */
.trust-bar strong {
  color: #000;
  font-weight: 700;
}

/* ==========================================================================
   Hero showcase — mockups flottants (sites-web.html)
   ========================================================================== */
.hero-showcase {
  position: relative;
  margin-top: 56px;
  height: clamp(380px, 54vw, 600px);
  perspective: 2000px;
}
.cs-mockup {
  position: absolute;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  will-change: transform;
}
.cs-mockup--main {
  left: 50%;
  top: 0;
  width: min(700px, 70vw);
  transform: translateX(-50%);
  aspect-ratio: 4 / 3;
  z-index: 3;
  animation: cs-float-main 6s cubic-bezier(0.65,0,0.35,1) infinite alternate;
}
.cs-mockup--side-left {
  left: -4%;
  top: 14%;
  width: min(560px, 56vw);
  aspect-ratio: 4 / 3;
  transform: rotate(-7deg);
  z-index: 2;
  animation: cs-float-left 7s 0.6s cubic-bezier(0.65,0,0.35,1) infinite alternate;
}
.cs-mockup--side-right {
  right: -4%;
  top: 18%;
  width: min(560px, 56vw);
  aspect-ratio: 4 / 3;
  transform: rotate(8deg);
  z-index: 2;
  animation: cs-float-right 7.5s 0.4s cubic-bezier(0.65,0,0.35,1) infinite alternate-reverse;
}
@keyframes cs-float-main {
  0%   { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes cs-float-left {
  0%   { transform: rotate(-7deg) translateY(0); }
  100% { transform: rotate(-7deg) translateY(-12px); }
}
@keyframes cs-float-right {
  0%   { transform: rotate(8deg) translateY(0); }
  100% { transform: rotate(8deg) translateY(-12px); }
}
.cs-mockup__bar {
  height: 28px;
  background: linear-gradient(to bottom, #FAFAFA, #F4F4F5);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.cs-mockup__dot { width: 9px; height: 9px; border-radius: 50%; }
.cs-mockup__dot--r { background: #FB7185; }
.cs-mockup__dot--y { background: #FACC15; }
.cs-mockup__dot--g { background: #4ADE80; }
.cs-mockup__url {
  margin-left: 12px;
  height: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 1;
  max-width: 240px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--muted-2);
}
.cs-mockup__body {
  position: relative;
  height: calc(100% - 28px);
  background: linear-gradient(135deg, #ffffff 0%, #FAFAF7 100%);
  overflow: hidden;
  padding: 16px;
}
.cs-mockup__hero {
  height: 38%;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(109,40,217,0.10), rgba(236,72,153,0.10));
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.cs-mockup__hero::before {
  content: '';
  position: absolute;
  bottom: 26px; left: 12px; width: 60%;
  height: 12px;
  background: var(--ink);
  border-radius: 4px;
}
.cs-mockup__hero::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 12px; right: 50%;
  height: 6px;
  background: var(--primary);
  border-radius: 3px;
}
.cs-mockup__row {
  height: 12px;
  background: var(--line);
  border-radius: 4px;
  margin-bottom: 8px;
}
.cs-mockup__row--w70 { width: 70%; }
.cs-mockup__row--w50 { width: 50%; }
.cs-mockup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.cs-mockup__card {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}
.cs-mockup__card:nth-child(1) { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.cs-mockup__card:nth-child(2) { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
.cs-mockup__card:nth-child(3) { background: linear-gradient(135deg, #FED7AA, #FDBA74); }
.cs-mockup--side-left .cs-mockup__body,
.cs-mockup--side-right .cs-mockup__body { padding: 12px; }
.cs-mockup--side-left .cs-mockup__hero { height: 30%; background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.cs-mockup--side-right .cs-mockup__hero { height: 30%; background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
@media (max-width: 720px) {
  .hero-showcase { height: 280px; }
}
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
}
.service-card.alt-2::before { background: linear-gradient(135deg, var(--primary-3), #eab308); }
.service-card.alt-3::before { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: #fff;
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-card-tag,
.service-card:hover p,
.service-card:hover .service-card-link { color: rgba(255,255,255,0.95); }
.service-card:hover h3 { color: #fff; }

.service-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(109,40,217,0.08);
  border-radius: 999px;
  transition: all .35s;
  align-self: flex-start;
}
.service-card.alt-2 .service-card-tag { color: var(--primary-3); background: rgba(249,115,22,0.08); }
.service-card.alt-3 .service-card-tag { color: var(--accent-2); background: rgba(59,130,246,0.08); }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15.5px;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  transition: gap .25s;
  margin-top: auto;
}
.service-card:hover .service-card-link { gap: 12px; }
.service-card-link::after {
  content: '→';
  transition: transform .25s;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all .3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: var(--grad);
  background-size: 300% 100%;
  z-index: -1;
  animation: gradient-shift 6s ease infinite;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: inherit; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-card.featured .pricing-desc { color: #b9b9c8; }
.pricing-price {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: inherit;
}
.pricing-price small { font-size: 1rem; color: var(--muted-2); font-weight: 500; }
.pricing-card.featured .pricing-price small { color: #b9b9c8; }
.pricing-period {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 28px;
  font-weight: 500;
}
.pricing-card.featured .pricing-period { color: #b9b9c8; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.pricing-card.featured .pricing-features li { color: #ddd; }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 9px;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
}
.pricing-card.featured .pricing-features li::before { color: #ec4899; }

.pricing-note {
  margin-top: 32px;
  padding: 22px 26px;
  background: rgba(109,40,217,0.05);
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: var(--radius);
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 1240px; /* aligné sur .container et .pricing-grid-3 */
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note .pn-icon { font-size: 22px; flex-shrink: 0; }
.pricing-note p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.steps-fixed-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps-fixed-3 { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 36px 26px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  counter-increment: step;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.section-dark .step { background: #141420; border-color: #26263a; }
.step::before {
  content: counter(step,decimal-leading-zero);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.04em;
  animation: gradient-shift 5s ease infinite;
}
.step-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: inherit; }
.section-dark .step-title { color: #fff; }
.step-text { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.section-dark .step-text { color: #b9b9c8; }

/* Vertical timeline alt for big process */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2), var(--primary-3));
}
.timeline-item {
  position: relative;
  padding-left: 76px;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-bullet {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.timeline-item p { color: var(--muted); line-height: 1.6; font-size: 15.5px; }

/* ==========================================================================
   COMPARE BLOCK (avant/après, sans nous / avec nous)
   ========================================================================== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-side {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.compare-bad {
  background: #f8f0f0;
  border: 2px dashed #e2c0c0;
}
.compare-bad h3 { color: #b91c1c; }
.compare-good {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.compare-good::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(236,72,153,0.3), transparent 60%),
              radial-gradient(circle at 0% 100%, rgba(109,40,217,0.4), transparent 60%);
  pointer-events: none;
}
.compare-good > * { position: relative; }
.compare-good h3 { color: #fff; }
.compare h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.compare ul { list-style: none; }
.compare li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
.compare-bad li { color: #5a3a3a; }
.compare-bad li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 10px;
  color: #b91c1c;
  font-weight: 800;
}
.compare-good li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  background: var(--grad);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.compare-good li { color: #ddd; }

/* ==========================================================================
   FACTBOX (clean stats, no mixing)
   ========================================================================== */
.factbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.factbox > div {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.factbox > div:last-child { border-right: 0; }
@media (max-width: 800px) {
  .factbox > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .factbox > div:last-child { border-bottom: 0; }
}
.fact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 12px;
}
.fact-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}
.fact-value .gradient-text { font-size: inherit; }
.fact-detail { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

/* ==========================================================================
   USE CASES (alternating image/content)
   ========================================================================== */
.use-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.use-case:last-child { margin-bottom: 0; }
.use-case.reverse > .use-case-visual { order: 2; }
@media (max-width: 800px) {
  .use-case, .use-case.reverse { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .use-case.reverse > .use-case-visual { order: 0; }
}
.use-case-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.use-case-visual.gradient-1 { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.use-case-visual.gradient-2 { background: linear-gradient(135deg, var(--primary-3), #eab308); }
.use-case-visual.gradient-3 { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.use-case-visual.gradient-4 { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.use-case-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.use-case-visual .icon-large {
  font-size: 5.5rem;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}
.use-case-content h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.use-case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(109,40,217,0.08);
  color: var(--primary);
  margin-bottom: 18px;
}
.use-case-content p { font-size: 16px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }
.use-case-content p:last-child { margin-bottom: 0; }

/* ==========================================================================
   SCENE GALLERY (illustrations bornes en utilisation)
   ========================================================================== */
.scene-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 900px) { .scene-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .scene-gallery { grid-template-columns: 1fr; } }
.scene {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f4f4f8;
  aspect-ratio: 4/3;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  cursor: default;
}
.scene:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.scene svg {
  width: 100%;
  height: 100%;
  display: block;
}
.scene-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.scene-caption .scene-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--grad);
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 8px 24px rgba(109,40,217,0.08); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform .25s;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 1200px; padding-bottom: 24px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  margin: 80px auto;
  padding: 80px 40px;
  border-radius: 36px;
  background: var(--ink);
  text-align: center;
  color: #fff;
  overflow: hidden;
  max-width: 1200px;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(109,40,217,0.5), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(236,72,153,0.4), transparent 50%),
              radial-gradient(circle at 50% 100%, rgba(249,115,22,0.3), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #fff;
}
.cta-band p {
  font-size: 1.075rem;
  color: #d9d9e4;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   CASE STUDY (clean & symmetric)
   ========================================================================== */
.case-study {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case-header {
  padding: 36px 40px 24px;
  background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(236,72,153,0.06));
  border-bottom: 1px solid var(--line);
}
.case-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.case-header h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.case-header p { color: var(--muted); font-size: 15.5px; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
.case-grid > div {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.case-grid > div:last-child { border-right: 0; }
@media (max-width: 800px) {
  .case-grid > div:nth-child(2) { border-right: 0; }
  .case-grid > div:nth-child(1), .case-grid > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.case-stat-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.case-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
  line-height: 1.05;
}
.case-stat-detail { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.case-body {
  padding: 36px 40px;
}
.case-body h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 18px 0 8px;
  color: var(--ink);
}
.case-body h4:first-child { margin-top: 0; }
.case-body p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15.5px;
  margin-bottom: 12px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #b9b9c8;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-logo { color: #fff; margin-bottom: 18px; display: inline-block; }
.footer-logo svg, .footer-logo img { height: 28px; width: auto; }
.footer-tag { font-size: 14px; color: #9696a8; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #9696a8; font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact { font-size: 14.5px; line-height: 1.85; color: #b9b9c8; }
.footer-contact a { color: #b9b9c8; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a3a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6e6e80;
}
.footer-bottom a {
  color: #b9b9c8;
  text-decoration: none;
  border-bottom: 1px solid rgba(185,185,200,0.25);
  transition: color .2s, border-color .2s;
}
.footer-bottom a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid {
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 15.5px;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109,40,217,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.5; }
.form-checkbox input { margin-top: 4px; flex-shrink: 0; }

/* ==========================================================================
   FLOATING CALL
   ========================================================================== */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
}
.floating-call:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(109,40,217,0.4);
}

/* ==========================================================================
   ANIMATIONS ON SCROLL
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: .55s; }
.fade-in-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.muted { color: var(--muted); }
.bold { font-weight: 700; }

/* ==========================================================================
   Hero showcase — mockups flottants (ajout pour sites-web.html)
   ========================================================================== */
.hero-showcase {
  position: relative;
  margin-top: 56px;
  height: clamp(380px, 54vw, 600px);
  perspective: 2000px;
}
.cs-mockup {
  position: absolute;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  will-change: transform;
}
.cs-mockup--main {
  left: 50%;
  top: 0;
  width: min(700px, 70vw);
  transform: translateX(-50%);
  aspect-ratio: 4 / 3;
  z-index: 3;
  animation: cs-float-main 6s cubic-bezier(0.65,0,0.35,1) infinite alternate;
}
.cs-mockup--side-left {
  left: -4%;
  top: 14%;
  width: min(560px, 56vw);
  aspect-ratio: 4 / 3;
  transform: rotate(-7deg);
  z-index: 2;
  animation: cs-float-left 7s 0.6s cubic-bezier(0.65,0,0.35,1) infinite alternate;
}
.cs-mockup--side-right {
  right: -4%;
  top: 18%;
  width: min(560px, 56vw);
  aspect-ratio: 4 / 3;
  transform: rotate(8deg);
  z-index: 2;
  animation: cs-float-right 7.5s 0.4s cubic-bezier(0.65,0,0.35,1) infinite alternate-reverse;
}
@keyframes cs-float-main {
  0%   { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes cs-float-left {
  0%   { transform: rotate(-7deg) translateY(0); }
  100% { transform: rotate(-7deg) translateY(-12px); }
}
@keyframes cs-float-right {
  0%   { transform: rotate(8deg) translateY(0); }
  100% { transform: rotate(8deg) translateY(-12px); }
}
.cs-mockup__bar {
  height: 28px;
  background: linear-gradient(to bottom, #FAFAFA, #F4F4F5);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.cs-mockup__dot { width: 9px; height: 9px; border-radius: 50%; }
.cs-mockup__dot--r { background: #FB7185; }
.cs-mockup__dot--y { background: #FACC15; }
.cs-mockup__dot--g { background: #4ADE80; }
.cs-mockup__url {
  margin-left: 12px;
  height: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 1;
  max-width: 240px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--muted-2);
}
.cs-mockup__body,
.cs-mockup--main .cs-mockup__body,
.cs-mockup--side-left .cs-mockup__body,
.cs-mockup--side-right .cs-mockup__body {
  position: relative;
  height: calc(100% - 28px);
  background: #fff;
  overflow: hidden;
  padding: 0;
}

/* Wrapper du vrai design (avec mise à l'échelle pour fitter dans le mockup) */
.cs-design {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cs-design__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 1080px;
  transform-origin: top left;
  pointer-events: none;
}
.cs-mockup--main .cs-design__inner { transform: scale(0.648); height: calc(100% / 0.648); }
.cs-mockup--side-left .cs-design__inner { transform: scale(0.519); }
.cs-mockup--side-right .cs-design__inner { transform: scale(0.519); }

/* Couleurs de fond des body de mockups pour matcher le bas de chaque design (évite blanc résiduel) */
.cs-mockup--main .cs-mockup__body { background: #091322; }
.cs-mockup--side-left .cs-mockup__body { background: #0a0a14; }
.cs-mockup--side-right .cs-mockup__body { background: #f5efe6; }

/* ===========================================================
   Design 1 — Maison Vivienne (Restaurant gastronomique)
   =========================================================== */
.cs-d1 { background:#0a1628; color:#f5f0e6; font-family:'Plus Jakarta Sans', sans-serif; position:relative; display:flex; flex-direction:column; height:100%; }
.cs-d1 .nav { position:absolute; top:0; left:0; right:0; z-index:10; display:flex; align-items:center; justify-content:space-between; padding:22px 44px; border-bottom:none; background:linear-gradient(180deg, rgba(10,22,40,0.7) 0%, transparent 100%); }
.cs-d1 .nav__logo { font-family:'Playfair Display', serif; font-weight:500; font-size:22px; letter-spacing:0.22em; color:#f5f0e6; }
.cs-d1 .nav__logo span { color:#c9a961; }
.cs-d1 .nav__links { display:flex; gap:32px; }
.cs-d1 .nav__links a { font-size:12px; color:rgba(245,240,230,0.8); font-weight:500; letter-spacing:0.18em; text-transform:uppercase; }
.cs-d1 .nav__cta { padding:10px 22px; border:1px solid #c9a961; color:#c9a961; font-size:11.5px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; }
.cs-d1 .hero { display:grid; grid-template-columns:1fr 1.1fr; min-height:0; flex:1 1 auto; position:relative; }
.cs-d1 .hero__text { padding:70px 50px 14px 44px; display:flex; flex-direction:column; justify-content:flex-start; }
.cs-d1 .hero__eyebrow { font-size:11px; font-weight:500; letter-spacing:0.28em; text-transform:uppercase; color:#c9a961; margin-bottom:14px; display:inline-flex; align-items:center; gap:12px; }
.cs-d1 .hero__eyebrow::before { content:''; width:40px; height:1px; background:#c9a961; }
.cs-d1 .hero__title { font-family:'Playfair Display', serif; font-weight:400; font-size:42px; line-height:1.05; margin-bottom:14px; color:#f5f0e6; }
.cs-d1 .hero__title em { font-style:italic; color:#c9a961; }
.cs-d1 .hero__sub { font-size:13.5px; color:rgba(245,240,230,0.7); line-height:1.6; max-width:400px; margin-bottom:18px; font-weight:300; }
.cs-d1 .hero__ctas { display:flex; gap:16px; align-items:center; }
.cs-d1 .hero__ctas .btn-p { padding:14px 28px; background:#c9a961; color:#0a1628; font-size:11.5px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; }
.cs-d1 .hero__ctas .btn-g { padding:14px 4px; color:#f5f0e6; font-size:11.5px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; border-bottom:1px solid rgba(245,240,230,0.3); }
.cs-d1 .hero__photo { background-color:#1a2940; background-image:linear-gradient(110deg, #0a1628 0%, transparent 30%), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=85&auto=format&fit=crop'); background-size:cover; background-position:center; position:relative; }
.cs-d1 .hero__photo::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, #0a1628 0%, transparent 25%, transparent 80%, rgba(10,22,40,0.4) 100%); }
.cs-d1 .hero__badge { position:absolute; bottom:32px; right:32px; z-index:4; background:rgba(10,22,40,0.78); padding:14px 22px; border:1px solid rgba(201,169,97,0.35); display:flex; flex-direction:column; gap:3px; max-width:230px; }
.cs-d1 .hero__badge .src { font-family:'Playfair Display', serif; font-style:italic; font-size:13.5px; color:#c9a961; }
.cs-d1 .hero__badge .lbl { font-size:10px; color:rgba(245,240,230,0.75); letter-spacing:0.2em; text-transform:uppercase; font-weight:500; }
.cs-d1 .gallery { background:#091322; padding:0 44px 20px; border-top:none; margin:0; flex:0 0 auto; }
.cs-d1 .gallery-head { display:none !important; height:0 !important; margin:0 !important; padding:0 !important; }
.cs-d1 .gallery-head h3 { font-family:'Playfair Display', serif; font-weight:400; font-size:22px; color:#f5f0e6; }
.cs-d1 .gallery-head h3 em { font-style:italic; color:#c9a961; }
.cs-d1 .gallery-head a { font-size:11px; color:#c9a961; letter-spacing:0.2em; text-transform:uppercase; font-weight:500; border-bottom:1px solid #c9a961; padding-bottom:3px; }
.cs-d1 .gallery-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.cs-d1 .dish { aspect-ratio:1.35; background-size:cover; background-position:center; background-color:#1a2940; position:relative; overflow:hidden; }
.cs-d1 .dish::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.92) 100%); }
.cs-d1 .dish__lbl { position:absolute; bottom:14px; left:16px; right:16px; z-index:2; }
.cs-d1 .dish__lbl .name { font-family:'Playfair Display', serif; font-style:italic; font-size:14px; color:#f5f0e6; margin-bottom:2px; }
.cs-d1 .dish__lbl .price { font-size:11px; color:#c9a961; letter-spacing:0.1em; }
.cs-d1 .dish--1 { background-image:url('dish-saint-jacques.jpg'); }
.cs-d1 .dish--2 { background-image:url('dish-ris-de-veau.jpg'); }
.cs-d1 .dish--3 { background-image:url('https://images.unsplash.com/photo-1565958011703-44f9829ba187?w=600&q=85&auto=format&fit=crop'); }

/* ===========================================================
   Design 2 — Pulse Studio (Fitness)
   =========================================================== */
.cs-d2 { background:#0a0a14; color:#fff; font-family:'Plus Jakarta Sans', sans-serif; position:relative; }
.cs-d2 .nav { position:absolute; top:0; left:0; right:0; z-index:10; display:flex; align-items:center; justify-content:space-between; padding:22px 44px; }
.cs-d2 .nav__logo { font-family:'Anton', sans-serif; font-size:24px; letter-spacing:0.12em; color:#fff; display:inline-flex; align-items:center; gap:10px; }
.cs-d2 .nav__logo::before { content:''; width:12px; height:12px; border-radius:50%; background:linear-gradient(135deg, #ff006e, #ffbe0b); box-shadow:0 0 16px #ff006e; }
.cs-d2 .nav__links { display:flex; gap:28px; }
.cs-d2 .nav__links a { font-size:12px; color:rgba(255,255,255,0.9); font-weight:600; letter-spacing:0.12em; text-transform:uppercase; }
.cs-d2 .nav__cta { padding:11px 22px; border-radius:999px; background:linear-gradient(90deg, #ff006e, #ffbe0b); color:#0a0a14; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; box-shadow:0 8px 24px rgba(255,0,110,0.45); }
.cs-d2 .hero { position:relative; min-height:280px; background-color:#0a0a14; background-image:linear-gradient(180deg, rgba(10,10,20,0.45) 0%, rgba(10,10,20,0.35) 30%, rgba(10,10,20,0.85) 100%), url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?w=1600&q=85&auto=format&fit=crop'); background-size:cover; background-position:center; overflow:hidden; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.cs-d2 .hero__content { text-align:left; }
.cs-d2 .hero__blob1 { position:absolute; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, #ff006e 0%, transparent 70%); top:-100px; right:-80px; filter:blur(70px); opacity:0.55; z-index:1; mix-blend-mode:screen; }
.cs-d2 .hero__blob2 { position:absolute; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, #00f5d4 0%, transparent 70%); bottom:-100px; left:-80px; filter:blur(70px); opacity:0.4; z-index:1; mix-blend-mode:screen; }
.cs-d2 .hero__content { position:relative; z-index:5; padding:24px 44px 64px; max-width:740px; }
.cs-d2 .hero__eyebrow { display:inline-flex; align-items:center; gap:10px; padding:6px 12px; border-radius:999px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); font-size:10.5px; font-weight:700; color:#fff; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:10px; }
.cs-d2 .hero__eyebrow::before { content:''; width:8px; height:8px; border-radius:50%; background:#ffbe0b; box-shadow:0 0 14px #ffbe0b; }
.cs-d2 .hero__title { font-family:'Anton', sans-serif; font-size:46px; line-height:0.9; letter-spacing:0.005em; margin-bottom:10px; color:#fff; text-transform:uppercase; }
.cs-d2 .hero__title-gr { background:linear-gradient(90deg, #ff006e, #ffbe0b, #00f5d4, #ff006e); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:cs-d2-grad 5s linear infinite; }
@keyframes cs-d2-grad { 0% { background-position:0% 50%; } 100% { background-position:200% 50%; } }
.cs-d2 .hero__sub { font-size:13.5px; color:rgba(255,255,255,0.88); line-height:1.5; max-width:520px; margin-bottom:14px; }
.cs-d2 .hero__sub strong { color:#ffbe0b; font-weight:700; }
.cs-d2 .hero__ctas { display:flex; gap:14px; }
.cs-d2 .hero__ctas .btn-p { padding:16px 32px; border-radius:999px; background:linear-gradient(90deg, #ff006e, #ffbe0b); color:#0a0a14; font-size:13px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; box-shadow:0 14px 36px rgba(255,0,110,0.45); }
.cs-d2 .hero__ctas .btn-g { padding:16px 26px; border-radius:999px; color:#fff; font-size:13px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; border:1.5px solid rgba(255,255,255,0.3); }
.cs-d2 .stats-bar { position:absolute; bottom:0; left:0; right:0; z-index:5; display:grid; grid-template-columns:repeat(3, 1fr); background:rgba(10,10,20,0.65); border-top:1px solid rgba(255,255,255,0.1); }
.cs-d2 .stat { padding:14px 24px; display:flex; align-items:baseline; gap:14px; border-right:1px solid rgba(255,255,255,0.08); }
.cs-d2 .stat:last-child { border-right:none; }
.cs-d2 .stat__num { font-family:'Anton', sans-serif; font-size:36px; line-height:1; letter-spacing:0.02em; }
.cs-d2 .stat--1 .stat__num { color:#ff006e; }
.cs-d2 .stat--2 .stat__num { color:#ffbe0b; }
.cs-d2 .stat--3 .stat__num { color:#00f5d4; }
.cs-d2 .stat__lbl { font-size:11px; color:rgba(255,255,255,0.75); letter-spacing:0.12em; text-transform:uppercase; font-weight:600; line-height:1.3; }
.cs-d2 .stat__lbl small { display:block; color:rgba(255,255,255,0.5); font-size:10px; letter-spacing:0.08em; text-transform:none; font-weight:500; margin-top:2px; }
.cs-d2 .schedule { background:#0a0a14; padding:38px 44px; border-top:1px solid rgba(255,255,255,0.05); }
.cs-d2 .schedule-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:22px; }
.cs-d2 .schedule-head h3 { font-family:'Anton', sans-serif; font-size:28px; letter-spacing:0.04em; text-transform:uppercase; color:#fff; }
.cs-d2 .schedule-head h3 .gr { background:linear-gradient(90deg, #ff006e, #ffbe0b); -webkit-background-clip:text; background-clip:text; color:transparent; }
.cs-d2 .schedule-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.cs-d2 .session { padding:20px 22px; border-radius:14px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); position:relative; overflow:hidden; }
.cs-d2 .session::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; }
.cs-d2 .session--1::before { background:linear-gradient(180deg, #ff006e, transparent); }
.cs-d2 .session--2::before { background:linear-gradient(180deg, #ffbe0b, transparent); }
.cs-d2 .session--3::before { background:linear-gradient(180deg, #00f5d4, transparent); }
.cs-d2 .session__time { font-family:'Anton', sans-serif; font-size:18px; letter-spacing:0.05em; color:rgba(255,255,255,0.6); margin-bottom:6px; }
.cs-d2 .session__name { font-family:'Anton', sans-serif; font-size:24px; letter-spacing:0.04em; color:#fff; margin-bottom:8px; }

/* ===========================================================
   Design 3 — Lavandes (Aesthetic Provence)
   =========================================================== */
.cs-d3 { background:#f5efe6; color:#3d3325; font-family:'Plus Jakarta Sans', sans-serif; position:relative; }
.cs-d3 .nav { position:absolute; top:0; left:0; right:0; z-index:10; display:flex; align-items:center; justify-content:space-between; padding:24px 44px; background:linear-gradient(180deg, rgba(245,239,230,0.85) 0%, rgba(245,239,230,0.3) 70%, transparent 100%); }
.cs-d3 .nav__logo { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:24px; letter-spacing:0.22em; text-transform:uppercase; }
.cs-d3 .nav__links { display:flex; gap:28px; }
.cs-d3 .nav__links a { font-size:11.5px; color:#5e5240; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; }
.cs-d3 .nav__cta { width:34px; height:34px; border-radius:50%; background:#7d8c63; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:13px; }
.cs-d3 .hero { display:grid; grid-template-columns:1fr 1fr; min-height:280px; position:relative; }
.cs-d3 .hero__text { padding:46px 44px 8px; display:flex; flex-direction:column; justify-content:center; }
.cs-d3 .hero__eyebrow { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:14px; color:#7d8c63; margin-bottom:10px; display:inline-flex; align-items:center; gap:12px; }
.cs-d3 .hero__eyebrow::before { content:''; width:28px; height:1px; background:#7d8c63; }
.cs-d3 .hero__title { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:42px; line-height:1.02; color:#3d3325; margin-bottom:10px; }
.cs-d3 .hero__title em { font-style:italic; color:#7d8c63; }
.cs-d3 .hero__sub { font-size:13px; color:#6b5d47; line-height:1.55; max-width:380px; margin-bottom:14px; }
.cs-d3 .hero__ctas { display:flex; gap:22px; align-items:center; }
.cs-d3 .hero__ctas .btn-p { padding:14px 28px; border-radius:999px; background:#3d3325; color:#f5efe6; font-size:11.5px; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; }
.cs-d3 .hero__ctas .btn-l { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:17px; color:#7d8c63; border-bottom:1px solid #7d8c63; padding-bottom:2px; }
.cs-d3 .hero__photo { background-color:#a89d6f; background-image:url('lavande-provence.jpg'); background-size:cover; background-position:center; position:relative; }
.cs-d3 .hero__photo::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, #f5efe6 0%, transparent 14%); }
.cs-d3 .hero__caption { position:absolute; bottom:28px; right:32px; z-index:4; background:rgba(245,239,230,0.92); padding:12px 18px; font-family:'Cormorant Garamond', serif; font-style:italic; font-size:13px; color:#5e5240; border-left:2px solid #7d8c63; }
.cs-d3 .hero__caption strong { font-style:normal; font-weight:500; color:#3d3325; }
.cs-d3 .strip { background:#ede4d0; padding:7px 44px; display:flex; align-items:center; justify-content:space-between; gap:24px; border-top:none; border-bottom:1px solid rgba(61,51,37,0.08); }
.cs-d3 .strip span { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:15px; color:#5e5240; }
.cs-d3 .strip span strong { font-weight:600; font-style:normal; color:#3d3325; }
.cs-d3 .grid-head { padding:8px 44px 4px; text-align:center; }
.cs-d3 .grid-head .lbl { font-family:'Cormorant Garamond', serif; font-style:italic; font-size:12px; color:#7d8c63; }
.cs-d3 .grid-head h3 { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:20px; color:#3d3325; margin-top:1px; }
.cs-d3 .grid-head h3 em { font-style:italic; color:#7d8c63; }
.cs-d3 .grid { padding:0 44px 14px; display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.cs-d3 .prod { text-align:center; }
.cs-d3 .prod__img { aspect-ratio:1.35; border-radius:8px; margin-bottom:8px; background-size:cover; background-position:center; background-color:#d8c9a8; position:relative; overflow:hidden; box-shadow:0 8px 20px rgba(61,51,37,0.08); }
.cs-d3 .prod--1 .prod__img { background-image:url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?w=600&q=85&auto=format&fit=crop'); }
.cs-d3 .prod--2 .prod__img { background-image:url('https://images.unsplash.com/photo-1556228720-195a672e8a03?w=600&q=85&auto=format&fit=crop'); }
.cs-d3 .prod--3 .prod__img { background-image:url('https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?w=600&q=85&auto=format&fit=crop'); }
.cs-d3 .prod__tag { position:absolute; top:12px; left:12px; padding:5px 10px; background:rgba(245,239,230,0.92); font-family:'Cormorant Garamond', serif; font-style:italic; font-size:11.5px; color:#7d8c63; border-radius:3px; }
.cs-d3 .prod__name { font-family:'Cormorant Garamond', serif; font-style:italic; font-weight:400; font-size:18px; color:#3d3325; margin-bottom:4px; }
.cs-d3 .prod__price { font-size:12px; color:#7d8c63; letter-spacing:0.12em; font-weight:500; }

/* (Les overrides "portrait" pour cs-d2 ont été supprimées :
   les mockups latéraux sont maintenant en format paysage 5/4 — cs-d2 utilise sa version paysage native) */

/* === Footer CTA Pulse Studio === */
.cs-d2 .footer-cta {
  background:linear-gradient(135deg, #1a0f2e 0%, #0a0a14 100%);
  border-top:1px solid rgba(255,255,255,0.08);
  padding:40px 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
  overflow:hidden;
}
.cs-d2 .footer-cta::before {
  content:'';
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, #ff006e, transparent 70%);
  top:-90px;
  right:-60px;
  filter:blur(50px);
  opacity:0.55;
}
.cs-d2 .footer-cta::after {
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, #00f5d4, transparent 70%);
  bottom:-70px;
  left:-50px;
  filter:blur(50px);
  opacity:0.4;
}
.cs-d2 .footer-cta__text { position:relative; z-index:2; }
.cs-d2 .footer-cta h3 {
  font-family:'Anton', sans-serif;
  font-size:34px;
  letter-spacing:0.04em;
  color:#fff;
  text-transform:uppercase;
  margin-bottom:6px;
}
.cs-d2 .footer-cta h3 .gr {
  background:linear-gradient(90deg, #ff006e, #ffbe0b);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.cs-d2 .footer-cta p {
  font-size:14px;
  color:rgba(255,255,255,0.75);
}
.cs-d2 .footer-cta__btn {
  padding:16px 28px;
  border-radius:999px;
  background:linear-gradient(90deg, #ff006e, #ffbe0b);
  color:#0a0a14;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  white-space:nowrap;
  position:relative;
  z-index:2;
  box-shadow:0 12px 30px rgba(255,0,110,0.4);
}
/* (Overrides footer-cta côté supprimés : format paysage natif) */

@media (max-width: 720px) {
  .hero-showcase { height: 280px; }
}

/* ==========================================================================
   MOBILE OPTIMISATION GLOBALE — fluidité et confort smartphone
   ========================================================================== */

/* Tablette / petit laptop */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 40px; }
  .grid-2,
  .grid-3,
  .grid-4 { gap: 18px; }
  .feature-card { padding: 28px 22px; }
  .card { padding: 26px; }
  .hero { padding: 70px 0 70px; }
  .hero-subtitle { margin-bottom: 28px; }
  .trust-bar { gap: 20px 24px; margin-top: 32px; font-size: 13px; }
}

/* Smartphone */
@media (max-width: 640px) {
  html { -webkit-tap-highlight-color: rgba(109,40,217,0.08); }
  body { font-size: 15.5px; line-height: 1.55; }
  .container { padding: 0 16px; }

  /* Sections compactes */
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0 28px; }
  .section-header { margin-bottom: 32px; }
  .section-eyebrow { margin-bottom: 14px; font-size: 11px; padding: 5px 12px; }
  .section-subtitle { font-size: 15.5px; }

  /* Typo display ré-équilibrée */
  .display-xl { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.05; letter-spacing: -0.025em; }
  .display-lg { font-size: clamp(1.75rem, 7.5vw, 2.2rem); line-height: 1.1; }
  .display-md { font-size: clamp(1.45rem, 6vw, 1.75rem); }
  h2, h3 { letter-spacing: -0.02em; }

  /* Hero plus aéré sur petit écran */
  .hero { padding: 56px 0 48px; }
  .hero-eyebrow { margin-bottom: 20px; font-size: 12px; padding: 6px 12px; }
  .hero-title { margin-bottom: 20px; }
  .hero-subtitle { font-size: 15.5px; line-height: 1.55; margin-bottom: 24px; }
  .hero-subtitle br { display: none; }

  /* Boutons : confort tactile */
  .btn {
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
  }
  .btn-large { min-height: 54px; padding: 15px 22px; font-size: 16px; }
  .hero-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .ctas .btn { width: 100%; justify-content: center; }
  .cta-strip { flex-direction: column; align-items: stretch; padding: 24px 22px; gap: 18px; }
  .cta-strip h3 { font-size: 1.2rem; }
  .cta-strip .ctas { width: 100%; }

  /* Trust bar */
  .trust-bar { gap: 10px 16px; margin-top: 24px; flex-direction: column; align-items: center; }
  .trust-bar span { font-size: 13px; }

  /* Grilles → 1 colonne, gaps réduits */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr !important; gap: 16px; }
  .fade-in-stagger { gap: 16px; }

  /* Cards */
  .feature-card { padding: 24px 20px; border-radius: 22px; }
  .feature-card .card-icon { width: 50px; height: 50px; margin-bottom: 16px; font-size: 24px; }
  .feature-card .card-icon svg { width: 26px; height: 26px; }
  .card { padding: 22px; border-radius: 22px; }
  .card-title { font-size: 1.12rem; }
  .card-text { font-size: 14.5px; line-height: 1.6; }
  .feature-card-stat { font-size: 12.5px; padding: 4px 10px; }

  /* Pricing */
  .pricing-card { padding: 26px 22px; }
  .pricing-price { font-size: 2.2rem; }
  .pricing-features li { font-size: 14.5px; }
  .pricing-note { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .pricing-note .pn-icon { font-size: 22px; }

  /* Steps */
  .steps,
  .steps-fixed-3 { grid-template-columns: 1fr !important; gap: 16px; }
  .step { padding: 22px 20px; }

  /* Compare (avant/après) */
  .compare { grid-template-columns: 1fr !important; gap: 16px; }
  .compare-side { padding: 22px 20px; }

  /* Timeline */
  .timeline-item { padding: 20px 18px 20px 56px; }
  .timeline-item h3 { font-size: 1.05rem; }
  .timeline-bullet { left: 14px; width: 30px; height: 30px; font-size: 13px; }

  /* FAQ — état fermé bien plat (pas de padding-bottom qui dépasse) */
  .faq-item { border-radius: 14px; }
  .faq-question { font-size: 15px; padding: 16px 18px; line-height: 1.4; }
  .faq-answer { padding: 0 18px; font-size: 14.5px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }

  /* Cas concret — grilles 2 colonnes pour rester lisible */
  .case-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .case-stat-value { font-size: 1.45rem; }
  .case-stat-label { font-size: 11px; }
  .case-stat-detail { font-size: 12px; }
  .case-header { padding: 22px 20px; }
  .case-header h3 { font-size: 1.25rem; }
  .case-body { padding: 22px 20px; }
  .case-body h4 { font-size: 0.95rem; margin-top: 16px; }
  .case-tag { font-size: 11.5px; padding: 5px 11px; }

  /* CTA band */
  .cta-band { padding: 52px 22px; }
  .cta-band h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cta-band p { font-size: 15px; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 12.5px; }

  /* Hero showcase mobile (sites-web) — entièrement masqué.
     Sur mobile on retire les mockups : ils rendaient mal, et la page démarre
     plus directement avec le hero text + CTA. */
  .hero-showcase { display: none !important; }

  /* Floating call : ne masque pas le contenu en bas */
  .floating-call {
    bottom: 14px;
    right: 14px;
    padding: 12px 18px;
    font-size: 14px;
  }
  body { padding-bottom: 60px; }

  /* Navbar — logo plus compact */
  .nav-inner { padding: 12px 16px; }
  .nav-logo img { height: 28px; }

  /* Trusted-by ralenti et plus aéré */
  .trusted-by { padding: 32px 0 4px; }
  .trusted-by-track { gap: 36px; }
  .trusted-by-track .brand { font-size: 15px; }

  /* Encart résultat sur cas concret — déjà géré par .case-result-* (rétro-compat. supprimée) */

  /* Pin card adoucie */
  .feature-card.pin-card { padding: 24px 20px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr !important; }
  input, textarea, select { font-size: 16px !important; } /* anti zoom iOS */
}

/* Utilitaires de visibilité responsive */
.mob-hide { display: inline; }
.mob-only { display: none; }
.mob-hide-block { display: block; }
.mob-only-block { display: none; }
br.mob-only-br { display: none; }
@media (max-width: 640px) {
  .mob-hide { display: none !important; }
  .mob-only { display: inline !important; }
  .mob-hide-block { display: none !important; }
  .mob-only-block { display: block !important; }
  br.mob-only-br { display: inline !important; }
}

/* Sécurité : sur mobile, tout titre h1/h2 contenant un rotator typewriter
   doit afficher le rotator seul sur sa ligne. On le passe en block sur
   les petits écrans. Les pages qui utilisent déjà la pattern
   mob-hide/mob-only-block restent inchangées (rotator unique dans son span). */
@media (max-width: 640px) {
  h1.hero-title > .rotator,
  h1.display-xl > .rotator,
  h2.section-title > .rotator {
    display: block;
  }
}

/* Très petits écrans (≤ 380px) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .feature-card { padding: 22px 18px; }
  .display-xl { font-size: 1.85rem; }
  .display-lg { font-size: 1.55rem; }
  .case-grid { grid-template-columns: 1fr !important; }
  .pricing-price { font-size: 2rem; }
}

/* Confort tactile (toutes les tailles tactiles) */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, .faq-question, .floating-call { -webkit-tap-highlight-color: transparent; }
  /* Désactiver les hover-translate sur mobile pour éviter les "stuck states" */
  .feature-card:hover,
  .card:hover,
  .feature-row:hover,
  .pricing-card:hover { transform: none; }
}

/* ==========================================================================
   PRICING GRID 3 — 3 cards desktop, stack mobile
   ========================================================================== */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-grid-3 > .pricing-card { display: flex; flex-direction: column; }
.pricing-grid-3 > .pricing-card .pricing-features { flex: 1 1 auto; }
.pricing-grid-3 > .pricing-card.featured { transform: scale(1.04); z-index: 2; }
.pricing-grid-3 > .pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

@media (max-width: 980px) {
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 520px; gap: 20px; }
  .pricing-grid-3 > .pricing-card.featured { transform: none; order: -1; }
  .pricing-grid-3 > .pricing-card.featured:hover { transform: translateY(-6px); }
}

/* ==========================================================================
   COMPARE TABLE — comparatif marché
   ========================================================================== */
.compare-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table th,
.compare-table td {
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  background: #f7f7fa;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  border-bottom: 2px solid var(--line);
}
.compare-table thead th small { display: block; color: var(--muted-2); font-weight: 500; font-size: 11.5px; margin-top: 3px; }
.compare-table .ct-feature {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  background: #fafafd;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.compare-table .ct-us {
  background: linear-gradient(180deg, rgba(109,40,217,0.06) 0%, rgba(236,72,153,0.04) 100%);
  font-weight: 600;
  position: relative;
}
.compare-table thead th.ct-us {
  background: linear-gradient(180deg, rgba(109,40,217,0.12) 0%, rgba(236,72,153,0.08) 100%);
  border-bottom-color: var(--primary);
}
.ct-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
}
.ct-pill-best { background: var(--grad); background-size: 200% 100%; animation: gradient-shift 5s ease infinite; }
.ct-yes { color: #16a34a; font-weight: 700; }
.ct-no { color: #94a3b8; font-weight: 500; }
.ct-half { color: #b45309; font-weight: 500; }
.compare-table .ct-row-price td { font-size: 16px; padding-top: 18px; padding-bottom: 6px; border-bottom: none; }
.compare-table .ct-row-total td {
  font-size: 17px;
  padding-top: 8px;
  padding-bottom: 20px;
  background: #fafafd;
}
.compare-table .ct-row-total td.ct-us {
  background: linear-gradient(180deg, rgba(109,40,217,0.10) 0%, rgba(236,72,153,0.07) 100%);
}
.compare-table .ct-row-total td small { display: block; color: var(--muted-2); font-weight: 500; font-size: 11.5px; margin-top: 4px; }

.compare-callouts {
  max-width: 1180px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.cc-card-best {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(109,40,217,0.08) 0%, rgba(236,72,153,0.08) 100%);
  position: relative;
}
.cc-card-best::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.cc-card-icon { font-size: 26px; margin-bottom: 8px; }
.cc-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.cc-card p { font-size: 14px; line-height: 1.55; color: var(--ink-2); }

.compare-disclaimer {
  max-width: 1180px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted-2);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .compare-callouts { grid-template-columns: 1fr; }
  .compare-table-wrap { border-radius: var(--radius); }
}

/* ==========================================================================
   V2 — FEATURED CARD : violet en haut, orange en bas, 50/50 vertical, breathing
   ========================================================================== */
@keyframes featured-pulse-soft {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes featured-breath {
  0%, 100% { filter: saturate(1.12) brightness(1); }
  50%      { filter: saturate(1.45) brightness(1.15); }
}
.pricing-grid-3 > .pricing-card.featured::before {
  background: linear-gradient(90deg, #6d28d9, #ec4899, #f97316, #ec4899, #6d28d9);
  background-size: 400% 100%;
  animation: gradient-shift 7s ease infinite;
  filter: none;
  opacity: 1;
}
.pricing-grid-3 > .pricing-card.featured {
  background: var(--ink);
}
.pricing-grid-3 > .pricing-card.featured .pricing-badge {
  background: linear-gradient(120deg, #a855f7 0%, #c084fc 40%, #fb923c 100%);
  background-size: 230% 100%;
  animation: featured-pulse-soft 14s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(168,85,247,0.45);
}
.pricing-grid-3 > .pricing-card.featured .pricing-badge {
  background: linear-gradient(120deg, #a855f7 0%, #c084fc 40%, #fb923c 100%);
  background-size: 230% 100%;
  animation: featured-pulse-soft 14s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(168,85,247,0.45);
}
.pricing-grid-3 > .pricing-card.featured .pricing-features li::before {
  color: #fb923c;
}
.pricing-grid-3 > .pricing-card.featured .pricing-period strong {
  color: #fdba74 !important;
}
.pricing-grid-3 > .pricing-card.featured .pricing-features li strong { color: #fff; }

/* ==========================================================================
   V2 — COMPARE TABLE : colonne CHOSTE surbrillance FLUIDE (pas de bords durs)
   ========================================================================== */
.compare-table .ct-us {
  background: linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(236,72,153,0.12) 50%, rgba(251,146,60,0.10) 100%);
  position: relative;
  /* aucun box-shadow inset, aucune bordure latérale dure */
}
.compare-table thead th.ct-us {
  background: linear-gradient(180deg, rgba(139,92,246,0.28) 0%, rgba(236,72,153,0.20) 100%);
  border-bottom: 1px solid var(--line); /* aligné avec les autres colonnes */
}
.compare-table tbody td.ct-us {
  /* surbrillance via background uniquement, pas de shadow */
}
.compare-table .ct-row-total td.ct-us {
  background: linear-gradient(180deg, rgba(139,92,246,0.22) 0%, rgba(236,72,153,0.18) 50%, rgba(251,146,60,0.14) 100%);
}
/* prix « ~286€ » : couleur AVANTAGEUSE (vert vif) */
.compare-table .ct-row-total td.ct-us strong.ct-best-price {
  color: #16a34a;
  text-shadow: 0 0 1px rgba(22,163,74,0.18);
}

/* ==========================================================================
   V2 — CALLOUTS hover animation
   ========================================================================== */
.cc-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}
.cc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(109,40,217,0.18);
  border-color: rgba(109,40,217,0.35);
}
.cc-card-best { transition: transform .35s ease, box-shadow .35s ease; }
.cc-card-best:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 50px rgba(236,72,153,0.22);
}
.cc-card-icon {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  display: inline-block;
}
.cc-card:hover .cc-card-icon { transform: rotate(-8deg) scale(1.12); }

/* ==========================================================================
   V2 — TYPEWRITER big (titre home complet)
   ========================================================================== */
.typewriter-line {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
}
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background: currentColor;
  margin-left: 4px;
  vertical-align: middle;
  animation: tw-blink 1s steps(1) infinite;
  height: 0.95em;
  border-radius: 2px;
}
@keyframes tw-blink { 50% { opacity: 0; } }

/* ==========================================================================
   V2 — PRICING SECTION pour Gestion Google (2 cards)
   ========================================================================== */
.pricing-grid-2-google {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-grid-2-google > .pricing-card { display: flex; flex-direction: column; }
.pricing-grid-2-google > .pricing-card .pricing-features { flex: 1 1 auto; }
.pricing-grid-2-google > .pricing-card.featured { transform: scale(1.03); z-index: 2; }
.pricing-grid-2-google > .pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-grid-2-google > .pricing-card.featured::before {
  background: linear-gradient(90deg, #6d28d9, #ec4899, #f97316, #ec4899, #6d28d9);
  background-size: 400% 100%;
  animation: gradient-shift 7s ease infinite;
  filter: none;
  opacity: 1;
}
.pricing-grid-2-google > .pricing-card.featured {
  background: var(--ink);
}
.pricing-grid-2-google > .pricing-card.featured .pricing-badge {
  background: linear-gradient(120deg, #a855f7 0%, #c084fc 40%, #fb923c 100%);
  background-size: 230% 100%;
  animation: featured-pulse-soft 14s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(168,85,247,0.45);
}
.pricing-grid-2-google > .pricing-card.featured .pricing-badge {
  background: linear-gradient(120deg, #a855f7 0%, #c084fc 40%, #fb923c 100%);
  background-size: 230% 100%;
  animation: featured-pulse-soft 14s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(168,85,247,0.45);
}
.pricing-grid-2-google > .pricing-card.featured .pricing-features li::before { color: #fb923c; }
.pricing-grid-2-google > .pricing-card.featured .pricing-period strong { color: #fdba74 !important; }
@media (max-width: 760px) {
  .pricing-grid-2-google { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-grid-2-google > .pricing-card.featured { transform: none; order: -1; }
  .pricing-grid-2-google > .pricing-card.featured:hover { transform: translateY(-6px); }
}

/* ----- Combo Site+Google : badge -15% + prix barré + prix final ----- */
.pricing-badge-combo {
  background: linear-gradient(120deg, #06b6d4 0%, #6366f1 50%, #a855f7 100%) !important;
  background-size: 230% 100% !important;
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
  animation: gradient-shift 6s ease infinite !important;
  white-space: nowrap;
}
.price-strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(15,23,42,0.45);
  color: var(--muted-2);
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.7;
}
.price-final {
  background: linear-gradient(120deg, #6366f1 0%, #a855f7 45%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
@media (max-width: 480px) {
  .price-strike { font-size: 1.2rem; margin-right: 6px; }
}

/* ==========================================================================
   V2 — Petites attentions visuelles
   ========================================================================== */
/* Glow doux sur le bouton primary du hero pour attirer l'œil */
.hero .btn-gradient.btn-large {
  box-shadow: 0 12px 32px rgba(109,40,217,0.25);
  transition: box-shadow .4s ease, transform .25s ease;
}
.hero .btn-gradient.btn-large:hover {
  box-shadow: 0 18px 48px rgba(236,72,153,0.35);
  transform: translateY(-2px);
}
/* Pulse subtil sur les "1er mois offert" pour attirer l'œil */
.gift-pulse {
  display: inline-block;
  animation: gift-pulse-anim 3.5s ease-in-out infinite;
}
@keyframes gift-pulse-anim {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* ==========================================================================
   V2 — CONTACT : bouton submit en cours d'envoi (spinner)
   ========================================================================== */
#contact-form button[type="submit"] {
  position: relative;
  min-height: 56px;
}
#contact-form button[type="submit"][disabled] {
  opacity: 0.85;
  cursor: progress;
}
#contact-form .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
#contact-form .spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: form-spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   V2 — CONTACT : carte de remerciement après envoi
   ========================================================================== */
.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 36px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(109,40,217,0.12),
    0 6px 20px rgba(0,0,0,0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.22,1,.36,1);
}
.thanks-card.thanks-in {
  opacity: 1;
  transform: translateY(0);
}
.thanks-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6d28d9, #ec4899, #f97316);
}
.thanks-check {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #6d28d9 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(109,40,217,0.28);
  animation: thanks-pop 0.55s cubic-bezier(.34,1.56,.64,1) 0.1s both;
}
.thanks-check svg { color: #fff; }
.thanks-check-circle {
  stroke: rgba(255,255,255,0.35);
  stroke-dasharray: 182;
  stroke-dashoffset: 182;
  animation: thanks-circle 0.65s ease-out 0.2s forwards;
}
.thanks-check-path {
  stroke: #fff;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: thanks-tick 0.45s cubic-bezier(.65,0,.35,1) 0.55s forwards;
}
@keyframes thanks-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes thanks-circle { to { stroke-dashoffset: 0; } }
@keyframes thanks-tick   { to { stroke-dashoffset: 0; } }

.thanks-title {
  font-size: 1.95rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
  background: linear-gradient(135deg, #6d28d9 0%, #ec4899 60%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.thanks-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-lead strong { color: var(--ink); font-weight: 700; }

.thanks-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 26px;
  padding: 18px 20px;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: 16px;
}
.thanks-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.thanks-meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  font-weight: 600;
}
.thanks-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.thanks-tip {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 26px;
}
.thanks-phone {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #6d28d9 0%, #ec4899 100%);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thanks-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(236,72,153,0.3);
}

/* === Prompt « Prendre RDV ? » post-submit ============================== */
.thanks-rdv {
  position: relative;
  margin: 18px auto 22px;
  padding: 26px 26px 24px;
  max-width: 560px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(236,72,153,0.06) 50%, rgba(249,115,22,0.06));
  border: 1.5px solid rgba(139,92,246,0.25);
  text-align: center;
  overflow: hidden;
  animation: thanksRdvIn 0.6s cubic-bezier(.2,.8,.2,1) both;
  transition: transform 0.45s ease, opacity 0.45s ease, max-height 0.45s ease, margin 0.45s ease, padding 0.45s ease, border 0.45s ease;
}
.thanks-rdv::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #6d28d9, #ec4899 50%, #f97316);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
@keyframes thanksRdvIn {
  0%   { opacity: 0; transform: translateY(12px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.thanks-rdv-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(139,92,246,0.25));
}
.thanks-rdv-question {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.thanks-rdv-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.5;
}
.thanks-rdv-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.thanks-rdv-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #6d28d9, #ec4899 55%, #f97316);
  background-size: 200% 100%;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(139,92,246,0.32);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-position 0.5s ease;
  white-space: nowrap;
}
.thanks-rdv-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(236,72,153,0.4);
  background-position: 100% 0;
}
.thanks-rdv-no {
  background: transparent;
  border: none;
  color: var(--muted-2);
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.thanks-rdv-no:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.04);
}
.thanks-rdv.thanks-rdv-dismissed {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  overflow: hidden;
}
@media (max-width: 600px) {
  .thanks-rdv { padding: 22px 18px 20px; border-radius: 18px; }
  .thanks-rdv-question { font-size: 1.05rem; }
  .thanks-rdv-yes { width: 100%; }
  .thanks-rdv-no { width: 100%; }
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.thanks-actions .btn-outline {
  background: transparent;
  border: 1.5px solid rgba(139,92,246,0.4);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.thanks-actions .btn-outline:hover {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.7);
  transform: translateY(-1px);
}
.thanks-actions .btn-ghost {
  background: transparent;
  border: none;
  color: var(--muted-2);
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.thanks-actions .btn-ghost:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.04);
}

@media (max-width: 600px) {
  .thanks-card { padding: 36px 22px 30px; border-radius: 22px; }
  .thanks-title { font-size: 1.55rem; }
  .thanks-lead { font-size: 0.98rem; }
  .thanks-meta { grid-template-columns: 1fr; gap: 12px; }
  .thanks-check { width: 70px; height: 70px; }
  .thanks-check svg { width: 54px; height: 54px; }
  .thanks-actions .btn-outline,
  .thanks-actions .btn-ghost { width: 100%; text-align: center; }
}

/* ============================================================
   STATS — "By the numbers" (halo radial + hover fluide style V2)
   ============================================================ */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.stat-card {
  position: relative;
  text-align: center;
  padding: 28px 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  /* === Animation fluide style .feature-card (cubic-bezier + .4s) === */
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
/* Halo radial doux centré au repos uniquement (statique, ne joue pas dans le hover) */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(109,40,217,0.08) 0%,
      rgba(236,72,153,0.05) 30%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.stat-card > * { position: relative; z-index: 1; }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}
.stat-label {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .stats-cards { gap: 16px; }
  .stat-card { padding: 24px 16px 24px; border-radius: 18px; }
}

/* ============================================================
   APPLE-STYLE CARDS — déprécié, on utilise .feature-card V2.
   Conservé en alias pour compat HTML existante : map apple-* → feature-*.
   ============================================================ */
.apple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 960px) { .apple-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .apple-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   SECTION DIVIDER — démarcation fluide entre 2 sections
   ============================================================ */
.section-divider {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.section-divider::before {
  content: "";
  width: clamp(120px, 18vw, 240px);
  height: 2px;
  border-radius: 99px;
  background: var(--grad);
  background-size: 200% 100%;
  animation: gradient-shift 5s ease infinite;
  opacity: 0.55;
}
.section-divider::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid;
  border-image: var(--grad) 1;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.9), 0 0 0 7px rgba(109,40,217,0.10);
}
.section-divider.section-divider--soft-to-light {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
@media (max-width: 600px) { .section-divider { height: 60px; } }

/* ============================================================
   FORM SERVICE CHIPS (multi-select, V2 styled)
   ============================================================ */
.service-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 540px) { .service-chips { grid-template-columns: 1fr; } }
.service-chips label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  user-select: none;
}
.service-chips input { position: absolute; opacity: 0; pointer-events: none; }
.service-chips .chip-ico {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.service-chips .chip-content {
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.3;
}
.service-chips .chip-content small {
  display: block;
  font-weight: 400;
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.service-chips label:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-chips label:has(input:checked) {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(109,40,217,0.07), rgba(236,72,153,0.05));
  box-shadow: 0 4px 18px rgba(109,40,217,0.14);
}
.service-chips label:has(input:checked) .chip-content { color: var(--primary); }
.service-chips label:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--grad);
  background-size: 200% 100%;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gradient-shift 4s ease infinite;
}
.service-chips-label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-chips-hint {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted-2);
  margin-top: 8px;
  letter-spacing: 0.005em;
}

/* Variante compacte 3 colonnes pour le formulaire de contact */
.service-chips--compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .service-chips--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .service-chips--compact { grid-template-columns: 1fr; } }
.service-chips--compact label {
  padding: 12px 14px 12px 14px;
  gap: 10px;
  border-radius: 12px;
}
.service-chips--compact .chip-ico { font-size: 18px; }
.service-chips--compact .chip-content { font-size: 13.5px; }
.service-chips--compact .chip-content small { font-size: 11.5px; margin-top: 1px; }
.service-chips--compact label:has(input:checked)::after {
  width: 18px;
  height: 18px;
  top: 8px;
  right: 8px;
  font-size: 11px;
}

/* ============================================================
   CTA microcopy & accent "MON" — souligné simple, plus petit
   ============================================================ */
.accent-mon {
  display: inline-block;
  position: relative;
  font-size: 0.85em;
  vertical-align: 1px;
  letter-spacing: 0.02em;
}
.accent-mon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.85;
}

.cta-microcopy {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.01em;
}
.cta-microcopy strong { color: var(--muted); font-weight: 700; }

/* ============================================================
   BTN-SOFT — bouton noir simple, texte blanc.
   Utilisé pour les CTA latéraux des fiches prix.
   ============================================================ */
.btn-soft {
  background: var(--ink);
  color: #fff;
  border: 0;
  font-weight: 700;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-soft:hover {
  background: #1f1f2e;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10,10,30,0.25);
}

/* Compat : si .btn-outline-grad est encore référencé, on l'alias sur .btn-soft */
.btn-outline-grad {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--line);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease,
              color .3s ease, border-color .3s ease, background .35s ease;
  background-image: none;
  background-clip: border-box;
  animation: none;
}
.btn-outline-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  animation: gradient-shift 5s ease infinite;
}
.btn-outline-grad > * { position: relative; z-index: 1; }
.btn-outline-grad:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(236,72,153,0.30);
  background: transparent;
  background-image: none;
}
.btn-outline-grad:hover::before { opacity: 1; }

/* ============================================================
   "CHAUD" word effect — fun banger
   ============================================================ */
.chaud-word {
  position: relative;
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.005em;
  background: linear-gradient(90deg, #f97316 0%, #ef4444 35%, #eab308 70%, #f97316 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chaud-burn 2.6s ease-in-out infinite;
  text-shadow: 0 0 24px rgba(249,115,22,0.30);
  transform-origin: center;
}
.chaud-word::after {
  content: "🔥";
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72em;
  -webkit-text-fill-color: initial;
  animation: chaud-shake 1.7s ease-in-out infinite;
  vertical-align: 0.05em;
  filter: drop-shadow(0 0 12px rgba(249,115,22,0.45));
}
@keyframes chaud-burn {
  0%, 100% { background-position: 0% 50%; filter: brightness(1) saturate(1); }
  50%      { background-position: 100% 50%; filter: brightness(1.2) saturate(1.15); }
}
@keyframes chaud-shake {
  0%, 100% { transform: rotate(-7deg) scale(1); }
  20%      { transform: rotate(8deg)  scale(1.12); }
  40%      { transform: rotate(-5deg) scale(0.95); }
  60%      { transform: rotate(7deg)  scale(1.1); }
  80%      { transform: rotate(-3deg) scale(1.02); }
}

/* ============================================================
   Section dark — "Comment ça marche" steps (anim style step V2)
   ============================================================ */
.section-dark .steps-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: stepv3;
}
@media (max-width: 900px) { .section-dark .steps-v3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .section-dark .steps-v3 { grid-template-columns: 1fr; } }
.section-dark .step-v3 {
  counter-increment: stepv3;
  position: relative;
  padding: 30px 24px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  /* === Animation fluide style .feature-card (cubic-bezier + .4s) === */
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.section-dark .step-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.30);
}
.section-dark .step-v3::before {
  content: counter(stepv3, decimal-leading-zero);
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
  animation: gradient-shift 7s ease infinite;
}
.section-dark .step-v3 h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.section-dark .step-v3 p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CASE STUDY — variante split (main à gauche, aside à droite)
   ============================================================ */
.case-result-row.case-result-row--split {
  justify-content: space-between;
  align-items: stretch;
  gap: 44px;
}
.case-result-row.case-result-row--split .case-result-main {
  text-align: left;
  flex: 1 1 auto;
}
.case-result-row.case-result-row--split .case-result-aside {
  text-align: right;
  flex: 0 0 auto;
  align-self: center;
}
@media (max-width: 780px) {
  .case-result-row.case-result-row--split { gap: 18px; flex-direction: column; }
  .case-result-row.case-result-row--split .case-result-main { text-align: left; }
  .case-result-row.case-result-row--split .case-result-aside { text-align: left; align-self: flex-start; }
}

/* ============================================================
   GOOGLE STAT BIG CARD — encart "Pourquoi votre Google compte"
   (cards avec gros chiffres + mots surlignés, peu de texte)
   ============================================================ */
.google-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) { .google-why-grid { grid-template-columns: 1fr; max-width: 560px; } }
.google-why-card {
  position: relative;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  /* === Animation fluide style .feature-card (cubic-bezier + .4s) === */
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
/* Halo radial doux centré au repos uniquement */
.google-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%,
      rgba(109,40,217,0.08) 0%,
      rgba(236,72,153,0.05) 30%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.google-why-card > * { position: relative; z-index: 1; }
.google-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.google-why-card .gwc-num {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  margin-bottom: 14px;
}
.google-why-card .gwc-text {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
}
.google-why-card .gwc-text strong {
  font-weight: 700;
  color: var(--ink);
}
/* Reprise du highlight de l'accueil ("l'essentiel") : pill rose/orange skewé */
.google-why-card .gwc-text .gwc-hl {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  white-space: nowrap;
  font-weight: 700;
  z-index: 1;
}
.google-why-card .gwc-text .gwc-hl::before {
  content: "";
  position: absolute;
  inset: 4px -4px;
  background: linear-gradient(120deg, rgba(236,72,153,0.22), rgba(249,115,22,0.22));
  border-radius: 8px;
  transform: skewX(-8deg);
  z-index: -1;
}

/* ============================================================
   Pricing : microcopy gris standard sous chaque CTA prix
   ============================================================ */
.pricing-card .cta-microcopy {
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}
.pricing-card .cta-microcopy strong { color: var(--muted); font-weight: 700; }
.pricing-card.featured .cta-microcopy { color: rgba(255,255,255,0.55); }
.pricing-card.featured .cta-microcopy strong { color: rgba(255,255,255,0.78); }

/* ==========================================================================
   MOBILE APPLE-GRADE OPTIMISATION — 2026-05-21
   Adapt mobile experience to apple.com-style: respiration, typo, touch targets,
   full-screen menu, sticky bottom CTA bar, scroll-snap services.
   PORTÉE : uniquement @media (max-width: 768px) et plus petit.
   ⚠️  DESKTOP STRICTEMENT INTOUCHÉ — toutes les règles ici sont sous media query.
   ========================================================================== */

/* ---------- Safe-area iPhone X+ (notch / home indicator) ---------- */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .navbar { padding-top: env(safe-area-inset-top); }
  }
}

/* ---------- Mobile : respiration & subtilité (≤768px) ---------- */
@media (max-width: 768px) {
  /* Top marquee : moins envahissant */
  .top-marquee { height: 32px; }
  .top-marquee-track { font-size: 12.5px; gap: 40px; }

  /* Blobs hero plus subtils — Apple = blanc dominant */
  .hero .blob { opacity: 0.22; filter: blur(110px); }
  .blob-1 { width: 280px; height: 280px; }
  .blob-2 { width: 320px; height: 320px; }
  .blob-3 { display: none; }

  /* Touch targets ≥44px (Apple HIG) */
  .nav-dropdown li a,
  .footer-col a,
  .nav-cta { min-height: 44px; }

  /* Anti tap-highlight harsh sur mobile */
  a, button { -webkit-tap-highlight-color: rgba(109,40,217,0.10); }
}

/* ---------- Mobile : typographie plus impactante façon Apple ---------- */
@media (max-width: 768px) {
  body { font-size: 17px; line-height: 1.55; }

  .display-xl {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .display-lg {
    font-size: clamp(2rem, 7vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  .display-md {
    font-size: clamp(1.55rem, 5.5vw, 1.95rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.5;
  }

  /* Section padding rythme Apple (un peu plus de respiration) */
  .section { padding: 72px 0; }
  .section-tight { padding: 44px 0 32px; }
}

/* ---------- Mobile : hamburger Apple-style (3 traits → X animé) ---------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 110;
    border-radius: 12px;
    transition: background .25s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .nav-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.65,.05,.36,1), opacity .25s ease;
  }
  .nav-toggle span:nth-child(1) { top: 16px; }
  .nav-toggle span:nth-child(2) { top: 21px; }
  .nav-toggle span:nth-child(3) { top: 26px; }
  .nav-toggle.is-open { background: rgba(0,0,0,0.04); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

/* ---------- PATTERN APPLE #1 — Menu hamburger PLEIN ÉCRAN ---------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    flex-direction: column !important;
    gap: 0 !important;
    padding: 96px 28px max(40px, env(safe-area-inset-bottom)) !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(0) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: opacity .35s ease, visibility 0s .35s !important;
    z-index: 105;
  }
  .nav-links.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transition: opacity .35s ease, visibility 0s 0s !important;
  }

  /* Liens massifs, ordre lisible, séparateurs fins */
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    padding: 0 !important;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease;
  }
  .nav-links.open > li { opacity: 1; transform: translateY(0); }
  .nav-links.open > li:nth-child(1) { transition-delay: .08s; }
  .nav-links.open > li:nth-child(2) { transition-delay: .14s; }
  .nav-links.open > li:nth-child(3) { transition-delay: .20s; }
  .nav-links.open > li:nth-child(4) { transition-delay: .26s; }
  .nav-links.open > li:nth-child(5) { transition-delay: .32s; }

  .nav-links > li > a {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 22px 4px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: var(--ink) !important;
    min-height: 64px !important;
  }
  .nav-links > li > a::after { display: none !important; }

  /* CTA Devis : pill noire en bas, bien finie */
  .nav-links > li:last-child {
    border-bottom: none !important;
    margin-top: 22px;
    padding-top: 14px !important;
  }
  .nav-links > li > a.nav-cta {
    background: var(--ink) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 18px 28px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    min-height: 56px !important;
    justify-content: center;
  }
  .nav-links > li > a.nav-cta:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.18); }

  /* Sous-menu services en cartes inline (déjà géré) — on raffine */
  .has-dropdown > a .caret { display: none !important; }
  .nav-dropdown {
    padding: 12px 0 6px !important;
    gap: 10px !important;
  }
  .nav-dropdown li[data-svc] a {
    padding: 18px 52px 18px 18px !important;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 600 !important;
    min-height: 56px !important;
    border-radius: 16px !important;
  }

  /* Scroll-lock du body quand le menu est ouvert (iOS-safe via JS) */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    left: 0;
    right: 0;
  }
}

/* ---------- PATTERN APPLE #2 — Sticky bottom CTA bar (injectée en JS) ---------- */
@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-top: 1px solid rgba(0,0,0,0.06);
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
  }
  .mobile-cta-bar.visible { transform: translateY(0); }
  .mobile-cta-bar.hidden-by-menu { transform: translateY(120%); }

  .mobile-cta-bar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .25s ease;
    white-space: nowrap;
  }
  .mobile-cta-bar a:active { transform: scale(0.97); }

  .mobile-cta-bar .mcb-call {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 6px 18px rgba(22,163,74,0.30);
  }
  .mobile-cta-bar .mcb-quote {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 6px 18px rgba(10,10,30,0.28);
  }
  .mobile-cta-bar svg { display: inline-block; }

  /* Floating call existant remplacé par la barre */
  .floating-call { display: none !important; }

  /* Ne pas masquer le bas du contenu */
  body { padding-bottom: 84px !important; }
}

/* ---------- PATTERN APPLE #2b — Scroll-snap horizontal sur les 3 services ---------- */
@media (max-width: 768px) {
  .service-cards.snap-mobile,
  .grid-3-fixed.snap-mobile {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    padding: 4px 16px 22px;
    margin-left: -16px;
    margin-right: -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-cards.snap-mobile::-webkit-scrollbar,
  .grid-3-fixed.snap-mobile::-webkit-scrollbar { display: none; }

  .service-cards.snap-mobile > *,
  .grid-3-fixed.snap-mobile > * {
    flex: 0 0 84%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
  }

  /* Indicateur visuel discret « ← swipe → » */
  .service-cards.snap-mobile::after {
    content: '';
    display: none;
  }
  .snap-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .snap-hint::before { content: '←'; }
  .snap-hint::after { content: '→'; }
}

/* ---------- Mobile : tweaks divers pour fluidité Apple ---------- */
@media (max-width: 768px) {
  /* La navbar reste sticky mais on supprime la légère bordure pour effet plus pur */
  .navbar { border-bottom: 1px solid rgba(0,0,0,0.04); }

  /* Hero CTAs : déjà stack column en ≤640px — on s'assure du tap target */
  .hero-ctas .btn { min-height: 54px; }
}

/* ---------- Très petits écrans iPhone SE / 4 (≤ 380px) ---------- */
@media (max-width: 380px) {
  .display-xl { font-size: 2.05rem !important; }
  .nav-links > li > a { font-size: 22px !important; padding: 18px 4px !important; }
  .nav-links > li > a.nav-cta { font-size: 16px !important; }
  .mobile-cta-bar a { font-size: 14px; min-height: 48px; padding: 12px 14px; }
  .mobile-cta-bar { gap: 8px; padding-left: 12px; padding-right: 12px; }
}

/* ---------- Reduced motion : on désactive les transitions menu/CTA bar ---------- */
@media (prefers-reduced-motion: reduce) {
  @media (max-width: 768px) {
    .nav-links,
    .nav-links > li,
    .mobile-cta-bar { transition: none !important; }
    .nav-toggle span { transition: none !important; }
  }
}


/* ==========================================================================
   MOBILE FINE-TUNING — 2026-05-21 (lot 2)
   Logo wordmark, sticky CTA compact, trust-bar 2+1, stats 2x2 / 3 en 2+1,
   cta-band marges, badges centrés, etc.
   PORTÉE : uniquement mobile ≤768px.
   ========================================================================== */

/* --- Logo wordmark (CSS-only swap, mobile-only) --- */
@media (max-width: 768px) {
  .nav-logo img { display: none !important; }
  .nav-logo {
    display: inline-block;
    width: 110px;
    height: 32px;
    background: url('logo-choste-wordmark.png') left center/contain no-repeat;
  }
  .nav-logo img[alt] { content: ''; }
}
@media (max-width: 380px) {
  .nav-logo { width: 96px; height: 28px; }
}

/* --- Sticky CTA bar plus compacte --- */
@media (max-width: 768px) {
  .mobile-cta-bar {
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-cta-bar a { min-height: 46px; padding: 10px 14px; font-size: 14.5px; }
  body { padding-bottom: 70px !important; }
}
@media (max-width: 380px) {
  .mobile-cta-bar a { min-height: 44px; padding: 9px 12px; font-size: 13.5px; }
  body { padding-bottom: 66px !important; }
}

/* --- Étendre les utilitaires mob-* jusqu'à 768px (au lieu de 640px par défaut) --- */
@media (max-width: 768px) {
  .mob-hide { display: none !important; }
  .mob-only { display: inline !important; }
  .mob-hide-block { display: none !important; }
  .mob-only-block { display: block !important; }
}

/* --- Trust-bar hero : 2 sur 1re ligne + 1 centré sur 2nde --- */
@media (max-width: 768px) {
  .trust-bar {
    display: grid !important;
    grid-template-columns: auto auto !important;
    justify-content: center;
    column-gap: 22px;
    row-gap: 10px;
    flex-direction: row !important;
    align-items: center;
    margin-top: 32px;
    text-align: left;
  }
  .trust-bar span:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* --- Stats-cards (4 chiffres) → 2x2 sur mobile --- */
@media (max-width: 768px) {
  .stats-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* --- Case-grid (4 chiffres) → 2x2 sur mobile --- */
@media (max-width: 768px) {
  .case-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* --- 3 chiffres (google-why-grid) → 2 + 1 large dessous --- */
@media (max-width: 768px) {
  .google-why-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    max-width: none;
  }
  .google-why-grid > :nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* --- CTA-band : marges latérales blanches sur mobile --- */
@media (max-width: 768px) {
  .cta-band {
    margin-left: 16px !important;
    margin-right: 16px !important;
    margin-top: 56px !important;
    margin-bottom: 56px !important;
    border-radius: 28px !important;
    padding: 48px 24px !important;
  }
}
@media (max-width: 380px) {
  .cta-band {
    margin-left: 12px !important;
    margin-right: 12px !important;
    padding: 40px 20px !important;
  }
}

/* --- Pricing badge "Le plus populaire" : nowrap + centré --- */
@media (max-width: 768px) {
  .pricing-badge {
    white-space: nowrap;
    font-size: 11.5px !important;
    padding: 5px 14px !important;
    top: -12px !important;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 380px) {
  .pricing-badge {
    font-size: 10.5px !important;
    padding: 4px 12px !important;
  }
}

/* ==========================================================================
   PAGE HOME — adaptations mobile (CSS only)
   ========================================================================== */

/* Hero title raccourci + un peu plus gros */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.5rem, 9.5vw, 3.4rem) !important; line-height: 1.02 !important; }
}

/* Cards services en état "hover-coloré" h24 sur mobile */
@media (max-width: 768px) {
  .service-cards .service-card {
    /* Force le state coloré comme si on hoverait */
    transform: translateY(-2px);
  }
  /* Si le service-card a une classe :hover state existante, on l'active visuellement */
  .service-cards .service-card { box-shadow: var(--shadow-md); border-color: transparent; }
  .service-cards .service-card.alt-2,
  .service-cards .service-card.alt-3,
  .service-cards .service-card:first-child { /* will be defined per card below */ }
}

/* Le vrai problème — titre + sous-titre adaptés */
@media (max-width: 768px) {
  /* Police légèrement plus modeste pour faire tenir "Chaque jour, vos concurrents" */
  section.section-soft .section-header .display-lg {
    font-size: clamp(1.75rem, 6.4vw, 2.15rem) !important;
    line-height: 1.1 !important;
  }
}

/* Pourquoi nous — 2 par ligne */
@media (max-width: 768px) {
  /* Cible le 2e grid-3 de la home (Pourquoi nous a 6 cards) */
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .feature-card {
    padding: 20px 16px !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .card-title {
    font-size: 0.98rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .card-text {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .card-icon {
    width: 42px !important; height: 42px !important;
    margin-bottom: 12px !important;
    font-size: 22px !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .feature-card-stat {
    font-size: 11.5px !important;
    padding: 3px 9px !important;
    margin-top: 10px !important;
  }
}

/* Pour qui — cacher "Recruteurs & institutions", 2x2 + Et vous solo */
@media (max-width: 768px) {
  /* Cibler la section "Pour qui" (la 2e section-soft de la home, dont le grid-3 contient 6 cards dont une cta-card) */
  section.section-soft .grid-3.fade-in-stagger {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  /* Hide Recruteurs (3e card de "Pour qui") */
  section.section-soft .grid-3.fade-in-stagger > .feature-card.alt-3:has(.card-icon-orange) {
    display: none !important;
  }
  /* La cta-card "Et vous ?" prend toute la largeur */
  section.section-soft .grid-3.fade-in-stagger > .cta-card {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   PAGE SITES-WEB — adaptations mobile
   ========================================================================== */

/* Hero title plus impactant */
@media (max-width: 768px) {
  body.is-sites-web .hero-title { font-size: clamp(2.3rem, 9vw, 3rem) !important; line-height: 1.05 !important; }
}

/* "Tout est inclus" — panaché : on garde 1 col par défaut mobile,
   mais on permet des cards qui s'étalent 2 par ligne via une classe utility */
@media (max-width: 768px) {
  body.is-sites-web .feature-card.row-pair {
    /* Forcera l'élément à prendre 1 colonne au lieu de toute la largeur si parent grid */
  }
  /* Le grid devient 2 colonnes par défaut sur mobile pour "Tout est inclus" */
  body.is-sites-web .grid-mix {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  body.is-sites-web .grid-mix > .row-solo {
    grid-column: 1 / -1;
  }
}

/* Pricing cards en scroll-snap horizontal sur mobile (sites-web) */
@media (max-width: 768px) {
  .pricing-grid-3 {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    padding: 18px 16px 20px;
    margin-left: -16px;
    margin-right: -16px;
    gap: 14px !important;
    max-width: none !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch !important;
  }
  .pricing-grid-3::-webkit-scrollbar { display: none; }
  .pricing-grid-3 > .pricing-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
    min-width: 0;
    transform: none !important;
    order: 0 !important;
  }
  .pricing-grid-3 > .pricing-card.featured {
    transform: none !important;
    order: -1 !important; /* mettre la featured en premier au swipe */
  }
}

/* Comment choisir — texte allégé (CSS uniquement : on cache des phrases via class mob-hide) */
/* Le HTML utilise déjà mob-hide pour cela : on s'assure que cela s'applique */

/* Tableau comparatif → cards mobile (le tableau est caché, les cards montrées) */
@media (max-width: 768px) {
  .compare-table-wrap { display: none !important; }
  .compare-mobile-cards {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
  }
  /* Mobile : on pousse notre carte CHOSTE en dernière position */
  .compare-mobile-cards .cmp-card.is-us { order: 99; }
  .compare-mobile-cards .cmp-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px 20px;
    margin-bottom: 14px;
    position: relative;
  }
  .compare-mobile-cards .cmp-card.is-us {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(109,40,217,0.06), rgba(236,72,153,0.05));
    box-shadow: 0 12px 30px rgba(109,40,217,0.10);
  }
  .compare-mobile-cards .cmp-card.is-us::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--grad);
    background-size: 200% 100%;
    animation: gradient-shift 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
  }
  .compare-mobile-cards .cmp-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .compare-mobile-cards .cmp-card.is-us .cmp-name {
    background: var(--grad);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-shift 6s ease infinite;
  }
  .compare-mobile-cards .cmp-tag {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .compare-mobile-cards .cmp-total {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 6px;
  }
  .compare-mobile-cards .cmp-total small { font-size: 12px; color: var(--muted-2); font-weight: 500; display: block; margin-top: 2px; }
  .compare-mobile-cards .cmp-card.is-us .cmp-total { color: #16a34a; }
  .compare-mobile-cards .cmp-list { margin-top: 12px; padding: 0; list-style: none; }
  .compare-mobile-cards .cmp-list li { font-size: 13.5px; line-height: 1.5; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; gap: 8px; align-items: flex-start; }
  .compare-mobile-cards .cmp-list li:last-child { border-bottom: 0; }
  .compare-mobile-cards .cmp-list li::before { flex-shrink: 0; }
  .compare-mobile-cards .cmp-list li.ok::before { content: '✓'; color: #16a34a; font-weight: 800; }
  .compare-mobile-cards .cmp-list li.no::before { content: '✕'; color: #94a3b8; font-weight: 700; }
  .compare-mobile-cards .cmp-list li.half::before { content: '~'; color: #b45309; font-weight: 700; }
}
@media (min-width: 769px) {
  .compare-mobile-cards { display: none !important; }
}

/* ==========================================================================
   MOBILE — Agrandissement encarts "Pour qui ?" sur la home (index.html)
   pour que les bulles emoji ne soient plus aplaties.
   (Le bloc gestion-google "Ce qu'on fait" est géré plus bas, là où vit
    déjà la règle .grid-mix dédiée à cette page.)
   ========================================================================== */
@media (max-width: 768px) {
  body:not(.is-gestion-google):not(.is-sites-web):not(.is-leads) section.section-soft .grid-3.fade-in-stagger .feature-card {
    padding: 22px 18px !important;
  }
  body:not(.is-gestion-google):not(.is-sites-web):not(.is-leads) section.section-soft .grid-3.fade-in-stagger .card-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 15px !important;
    font-size: 26px !important;
    margin-bottom: 14px !important;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
  }
  body:not(.is-gestion-google):not(.is-sites-web):not(.is-leads) section.section-soft .grid-3.fade-in-stagger .card-title {
    font-size: 1.02rem !important;
    line-height: 1.25 !important;
  }
}

/* 3 callouts comparison : sur mobile, le best (contour coloré) seul + 2 autres en bas */
@media (max-width: 768px) {
  .compare-callouts {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .compare-callouts > .cc-card-best {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   PAGE GESTION GOOGLE — adaptations mobile
   ========================================================================== */

@media (max-width: 768px) {
  body.is-gestion-google .hero-title { font-size: clamp(2.3rem, 9vw, 3rem) !important; }
  body.is-gestion-google .hero-subtitle { font-size: 15px !important; line-height: 1.5 !important; }
}

/* Pricing 2 google → scroll-snap façon Apple */
@media (max-width: 768px) {
  .pricing-grid-2-google {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    padding: 18px 16px 20px;
    margin-left: -16px;
    margin-right: -16px;
    gap: 14px !important;
    max-width: none !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pricing-grid-2-google::-webkit-scrollbar { display: none; }
  .pricing-grid-2-google > .pricing-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
    min-width: 0;
    transform: none !important;
  }
  .pricing-grid-2-google > .pricing-card.featured { order: -1; }
}

/* Premier mois 0€ : encart plus impactant — texte simplifié via mob-hide */
@media (max-width: 768px) {
  .pricing-note .pn-icon { font-size: 26px !important; }
  .pricing-note strong:first-of-type { font-size: 1.2rem !important; }
}

/* ==========================================================================
   PAGE GENERATION-LEADS — adaptations mobile
   ========================================================================== */

@media (max-width: 768px) {
  body.is-leads .hero-title { font-size: clamp(2.3rem, 9vw, 3rem) !important; }
}

/* "Comment ça marche" — chiffres plus gros */
@media (max-width: 768px) {
  .timeline-bullet { width: 36px !important; height: 36px !important; font-size: 16px !important; left: 12px !important; }
  .timeline-item { padding-left: 64px !important; }
  .step .step-num,
  .steps-fixed-3 .step-num {
    font-size: 2.4rem !important;
  }
}

/* Cas concret — résultat plus gros, investissement plus petit */
@media (max-width: 768px) {
  .case-result-row { gap: 12px !important; flex-direction: column !important; }
  .case-result-main { order: 1; width: 100%; }
  .case-result-aside { order: 2; width: 100%; opacity: 0.85; }
  .case-result-value { font-size: 1.9rem !important; line-height: 1.1; }
  .case-result-aside-value { font-size: 1.05rem !important; opacity: 0.85; }
  .case-result-label { font-size: 10.5px !important; }
  .case-result-detail { font-size: 12.5px !important; }
}

/* ==========================================================================
   PAGE CONTACT — adaptations mobile
   ========================================================================== */

@media (max-width: 768px) {
  /* Les 3 canaux : téléphone + RDV en 1re ligne, mail seul en 2nde */
  .contact-channels {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .contact-channels > .ch-mail {
    grid-column: 1 / -1;
  }

  /* Form : cases à cocher service en 2 par ligne */
  .form-service-choices,
  .form-group.service-choices {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ==========================================================================
   Snap hint : on garde le hint visuel discret pour pricing aussi
   ========================================================================== */
@media (max-width: 768px) {
  .snap-pricing-hint {
    text-align: center;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .snap-pricing-hint::before { content: '← '; }
  .snap-pricing-hint::after  { content: ' →'; }
}


/* --- Service cards (home) en état hover h24 sur mobile --- */
@media (max-width: 768px) {
  .service-cards .service-card {
    background: linear-gradient(135deg, #6d28d9 0%, #3b82f6 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 14px 30px -8px rgba(109,40,217,0.35) !important;
    transform: none !important;
  }
  .service-cards .service-card.alt-2 {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    box-shadow: 0 14px 30px -8px rgba(236,72,153,0.35) !important;
  }
  .service-cards .service-card.alt-3 {
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%) !important;
    box-shadow: 0 14px 30px -8px rgba(249,115,22,0.35) !important;
  }
  .service-cards .service-card h3,
  .service-cards .service-card p,
  .service-cards .service-card strong,
  .service-cards .service-card .service-card-tag,
  .service-cards .service-card .service-card-link {
    color: #fff !important;
  }
  .service-cards .service-card::before { opacity: 0 !important; }
}

/* --- Cas concret leads : ordre corrigé (investissement haut petit, résultat bas gros) --- */
@media (max-width: 768px) {
  .case-result-aside {
    order: 1 !important;
    width: 100%;
    opacity: 0.8;
    padding: 12px 14px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .case-result-main {
    order: 2 !important;
    width: 100%;
    margin-top: 6px;
  }
  .case-result-value {
    font-size: 2.1rem !important;
    line-height: 1.05;
  }
  .case-result-aside-value {
    font-size: 1rem !important;
    font-weight: 700 !important;
  }
  .case-result-aside .case-result-label,
  .case-result-aside .case-result-detail {
    opacity: 0.85;
  }
  .case-result-divider { display: none !important; }
}

/* --- Contact form chips : 2 par ligne maintenu jusqu'à 768px (override 540px → 1col) --- */
@media (max-width: 768px) {
  .service-chips,
  .service-chips--compact {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}
@media (max-width: 380px) {
  .service-chips,
  .service-chips--compact { gap: 6px !important; }
  .service-chips .chip-content { font-size: 13px; }
  .service-chips .chip-content small { font-size: 11px; }
}

/* --- Contact channels mobile : phone+RDV ligne 1, mail ligne 2 (le HTML est déjà dans le bon ordre) --- */
@media (max-width: 768px) {
  /* Override le grid-3 par défaut */
  .grid-3.contact-channels {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .grid-3.contact-channels > .ch-mail {
    grid-column: 1 / -1;
  }
  /* Tap targets et un peu plus compact */
  .grid-3.contact-channels .feature-card {
    padding: 18px 14px !important;
  }
  .grid-3.contact-channels .feature-card .card-icon {
    width: 40px !important; height: 40px !important;
    font-size: 22px !important;
    margin: 0 auto 12px !important;
  }
  .grid-3.contact-channels .card-title {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }
  .grid-3.contact-channels .card-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}

/* ==========================================================================
   MOBILE FINE-TUNING — 2026-05-21 (lot 3 — itération user)
   Bouton vert → dégradé, menu service sans slide, retouches cards/textes,
   effet flamme CHAUUUUUD, ajustements layout.
   PORTÉE : uniquement mobile ≤768px.
   ========================================================================== */

/* --- Sticky bottom : bouton Appeler en dégradé vert (au lieu de #16a34a uni) --- */
@media (max-width: 768px) {
  .mobile-cta-bar .mcb-call {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 45%, #4ade80 100%) !important;
    background-size: 200% 100%;
    box-shadow: 0 6px 20px rgba(22,163,74,0.35) !important;
  }
  .mobile-cta-bar .mcb-call:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(22,163,74,0.45) !important;
  }
}

/* --- Menu mobile : pas d'effet slide quand on clique sur un service --- */
@media (max-width: 768px) {
  .nav-dropdown li[data-svc] a,
  .nav-dropdown li[data-svc] a:hover,
  .nav-dropdown li[data-svc] a:active,
  .nav-dropdown li[data-svc] a:focus {
    transform: none !important;
    transition: background .2s ease !important;
  }
  .nav-dropdown li[data-svc] a:hover::before {
    transform: none !important;
  }
}

/* --- Trust-bar : "Sans engagement" en gras complet (pas juste "Sans") --- */
/* Géré via HTML edit */

/* --- Service cards (home) titres plus gros --- */
@media (max-width: 768px) {
  .service-cards .service-card h3,
  .service-cards .service-card .card-title {
    font-size: 1.45rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
    margin-bottom: 12px !important;
  }
}

/* --- "Le vrai problème" : "devraient" en noir sans effet --- */
@media (max-width: 768px) {
  .word-no-effect,
  .word-no-effect * {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--ink) !important;
    color: var(--ink) !important;
    animation: none !important;
  }
}

/* --- Section "Pourquoi nous" : cards carré, allégées --- */
@media (max-width: 768px) {
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .feature-card {
    aspect-ratio: 1 / 1.02;
    padding: 18px 14px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .card-text {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    flex-grow: 1;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .feature-card-stat {
    font-size: 11px !important;
    margin-top: 8px !important;
    line-height: 1.3;
  }
}

/* --- Section "Pour qui" home : cards centrées, hauteur libre pour éviter clipping --- */
@media (max-width: 768px) {
  section.section-soft .grid-3.fade-in-stagger > .feature-card:not(.cta-card) {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 22px 16px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }
  section.section-soft .grid-3.fade-in-stagger > .feature-card:not(.cta-card) .card-icon {
    margin: 0 auto 12px !important;
    flex-shrink: 0;
  }
  section.section-soft .grid-3.fade-in-stagger > .feature-card:not(.cta-card) .card-title {
    margin-bottom: 8px !important;
    overflow: visible !important;
    word-break: normal !important;
  }
  section.section-soft .grid-3.fade-in-stagger > .feature-card:not(.cta-card) .card-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    overflow: visible !important;
  }
}

/* --- En une phrase : stats-cards textes plus compacts --- */
@media (max-width: 768px) {
  .stats-cards .stat-card {
    padding: 16px 12px !important;
  }
  .stats-cards .stat-num {
    font-size: 1.65rem !important;
    line-height: 1.05;
    white-space: nowrap;
  }
  .stats-cards .stat-label {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin-top: 6px;
  }
  .stats-cards .stat-label br { display: none; }
  /* on remet les BR via mob-only-block dans le HTML */
}

/* ==========================================================================
   PAGE SITES-WEB (lot 2)
   ========================================================================== */

/* "Tout est inclus" cards duo : carré */
@media (max-width: 768px) {
  body.is-sites-web .grid-mix > .feature-card:not(.row-solo) {
    aspect-ratio: 1 / 1.08;
    padding: 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  body.is-sites-web .grid-mix > .feature-card:not(.row-solo) .card-icon {
    width: 38px !important; height: 38px !important;
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }
  body.is-sites-web .grid-mix > .feature-card:not(.row-solo) .card-title {
    font-size: 0.95rem !important;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  body.is-sites-web .grid-mix > .feature-card:not(.row-solo) .card-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    flex-grow: 1;
  }
  body.is-sites-web .grid-mix > .feature-card:not(.row-solo) .feature-card-stat {
    font-size: 10.5px !important;
    padding: 3px 8px !important;
    margin-top: 8px !important;
  }
}

/* Encart ampoule "Comment choisir" : taille réduite */
@media (max-width: 768px) {
  .pricing-note {
    padding: 16px 18px !important;
    gap: 12px !important;
  }
  .pricing-note .pn-icon {
    font-size: 20px !important;
  }
  .pricing-note p {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }
}

/* Comparatif : CHOSTE en bas, ordre inversé */
@media (max-width: 768px) {
  .compare-mobile-cards .cmp-card.is-us {
    order: 5;
  }
}

/* Callouts 2 et 3 : carré + texte allégé */
@media (max-width: 768px) {
  .compare-callouts > .cc-card:not(.cc-card-best) {
    aspect-ratio: 1 / 1.05;
    padding: 14px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) h3 {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) .cc-card-icon {
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }
}

/* "Pour qui" page sites-web : carré */
@media (max-width: 768px) {
  body.is-sites-web .grid-3.fade-in-stagger .feature-card:not(.row-solo):not(.cta-card):not(.snap-mobile *) {
    aspect-ratio: 1 / 1.06;
    padding: 16px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body.is-sites-web .grid-3.fade-in-stagger .feature-card:not(.row-solo):not(.cta-card) .card-icon {
    margin: 0 auto 8px !important;
  }
  body.is-sites-web .grid-3.fade-in-stagger .feature-card:not(.row-solo):not(.cta-card) .card-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}

/* ==========================================================================
   PAGE GESTION GOOGLE (lot 2)
   ========================================================================== */

/* google-why-cards : padding ajusté */
@media (max-width: 768px) {
  .google-why-card {
    padding: 18px 18px 16px !important;
  }
  .google-why-card .gwc-num {
    font-size: 2.2rem !important;
    margin-bottom: 8px !important;
  }
  .google-why-card .gwc-text {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
  }
}

/* "Ce qu'on fait pour vous" (grid-mix, section-soft) — 1 par ligne, cards agrandies
   pour que les bulles emoji + texte ne soient plus rognés.
   "Focus QR+RFID" (grid-3 sans grid-mix, dans section.section) : idem 1 par ligne. */
@media (max-width: 768px) {
  body.is-gestion-google .grid-mix,
  body.is-gestion-google section.section .grid-3.fade-in-stagger:not(.grid-mix) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: 540px;
    margin: 0 auto;
  }
  body.is-gestion-google .grid-mix .feature-card,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix) .feature-card {
    aspect-ratio: auto !important;
    padding: 28px 24px !important;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  body.is-gestion-google .grid-mix .card-icon,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix) .card-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    border-radius: 18px !important;
    font-size: 30px !important;
    margin: 0 0 18px 0 !important;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
  }
  body.is-gestion-google .grid-mix .card-title,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix) .card-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix) .card-text,
  body.is-gestion-google .grid-mix .card-text {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  body.is-gestion-google .grid-mix .feature-card-stat,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix) .feature-card-stat {
    font-size: 12.5px !important;
    padding: 5px 11px !important;
    margin-top: 14px !important;
  }
}

/* (Ancienne règle "Pour qui ? gestion-google : carré" supprimée 2026-05-22 :
    elle ciblait section.section-soft alors que "Ce qu'on fait" est dans section-soft
    et écrasait l'agrandissement des cards. "Pour qui ?" et "Focus QR+RFID" utilisent
    désormais le format 1 par ligne agrandi défini juste au-dessus.) */

/* ==========================================================================
   PAGE LEADS (lot 2)
   ========================================================================== */

/* CHAUUUUUD : effet flamme (flicker rouge → orange → jaune + glow) */
.chaud-word {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(180deg, #facc15 0%, #f97316 35%, #ef4444 75%, #b91c1c 100%);
  background-size: 100% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 0 transparent;
  filter: drop-shadow(0 0 8px rgba(239,68,68,0.55)) drop-shadow(0 0 18px rgba(249,115,22,0.35));
  animation: chaud-flicker 1.6s ease-in-out infinite, chaud-shift 2.2s ease-in-out infinite;
  letter-spacing: 0.01em;
}
@keyframes chaud-shift {
  0%, 100% { background-position: 50% 30%; }
  50%      { background-position: 50% 80%; }
}
@keyframes chaud-flicker {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(239,68,68,0.55)) drop-shadow(0 0 18px rgba(249,115,22,0.35)); }
  25%      { filter: drop-shadow(0 0 10px rgba(249,115,22,0.75)) drop-shadow(0 0 22px rgba(234,179,8,0.4));  }
  50%      { filter: drop-shadow(0 0 7px rgba(239,68,68,0.5)) drop-shadow(0 0 14px rgba(249,115,22,0.3));   }
  75%      { filter: drop-shadow(0 0 12px rgba(239,68,68,0.85)) drop-shadow(0 0 24px rgba(249,115,22,0.5)); }
}
@media (prefers-reduced-motion: reduce) {
  .chaud-word { animation: none; }
}

/* Modèle économique : 1 card par ligne */
@media (max-width: 768px) {
  body.is-leads section.section-soft .grid-3.fade-in-stagger:not(.snap-mobile) {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.is-leads section.section-soft .grid-3.fade-in-stagger .feature-card {
    aspect-ratio: auto !important;
    text-align: left !important;
    padding: 22px 18px !important;
  }
}

/* "Pour qui" leads : carré (la 2e section-soft) */
@media (max-width: 768px) {
  body.is-leads section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile) .feature-card {
    aspect-ratio: 1 / 1.05;
    padding: 16px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body.is-leads section.section:not(.section-soft) .grid-3.fade-in-stagger .feature-card .card-icon {
    margin: 0 auto 8px !important;
  }
  body.is-leads section.section:not(.section-soft) .grid-3.fade-in-stagger .feature-card .card-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
}

/* "Honnêteté" : 1 card par ligne */
@media (max-width: 768px) {
  body.is-leads .honesty-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Timeline numbers .step-num plus gros */
@media (max-width: 768px) {
  body.is-leads .step-num,
  body.is-leads .steps .step-num,
  body.is-leads .steps-fixed-3 .step-num,
  body.is-leads .step-v3::before {
    font-size: 3rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }
}

/* Case concret : main result inline (sans split sur 2 lignes) */
@media (max-width: 768px) {
  .case-result-value .mob-only-block { display: inline !important; }
  .case-result-value { white-space: normal; }
}

/* --- Gestion Google : "Pour qui" est dans une <section class="section"> (pas soft) --- */
@media (max-width: 768px) {
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .feature-card:not(.cta-card) {
    aspect-ratio: 1 / 1.05 !important;
    padding: 16px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .feature-card .card-icon {
    margin: 0 auto 8px !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .feature-card .card-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .cta-card {
    grid-column: 1 / -1;
  }
}

/* --- Leads : override par classe spécifique (au lieu de section.section-soft générique) --- */
@media (max-width: 768px) {
  /* Modèle économique : 1 par ligne, allégé */
  body.is-leads .model-eco-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.is-leads .model-eco-grid .feature-card {
    aspect-ratio: auto !important;
    text-align: left !important;
    padding: 20px 18px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  body.is-leads .model-eco-grid .feature-card .card-icon {
    margin-left: 0 !important;
  }

  /* Pour qui leads : carré 2 par ligne */
  body.is-leads .pour-qui-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  body.is-leads .pour-qui-grid .feature-card {
    aspect-ratio: 1 / 1.05 !important;
    padding: 16px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body.is-leads .pour-qui-grid .feature-card .card-icon {
    margin: 0 auto 8px !important;
  }
  body.is-leads .pour-qui-grid .feature-card .card-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Honnêteté : 1 par ligne */
  body.is-leads .honesty-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.is-leads .honesty-grid .feature-card {
    aspect-ratio: auto !important;
    text-align: left !important;
    padding: 20px 18px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}

/* ==========================================================================
   MOBILE FINE-TUNING — 2026-05-21 (lot 9 — itération user)
   Bouton vert gradient animé, Pourquoi nous bigger, Honnêteté override,
   stats même hauteur, callouts aplatis, ampoule réduite, solo auto-height.
   PORTÉE : uniquement mobile ≤768px.
   ========================================================================== */

/* --- Bouton vert sticky : DÉGRADÉ ANIMÉ vert (style btn-gradient) --- */
@media (max-width: 768px) {
  .mobile-cta-bar .mcb-call {
    background: linear-gradient(90deg, #14532d 0%, #16a34a 18%, #22c55e 40%, #4ade80 55%, #22c55e 75%, #16a34a 90%, #14532d 100%) !important;
    background-size: 300% 100% !important;
    animation: gradient-shift 4s ease infinite !important;
    position: relative;
    overflow: hidden;
  }
  .mobile-cta-bar .mcb-call::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
    transition: left .6s;
    pointer-events: none;
  }
  .mobile-cta-bar .mcb-call:active::after { left: 100%; }
}

/* --- Pourquoi nous : cards bigger, icon collé en haut, aspect auto --- */
@media (max-width: 768px) {
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile):not(.honesty-grid):not(.pour-qui-grid):not(.model-eco-grid) .feature-card {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 18px 14px 16px !important;
    justify-content: flex-start !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile):not(.honesty-grid):not(.pour-qui-grid):not(.model-eco-grid) .feature-card .card-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    font-size: 24px !important;
    flex-shrink: 0 !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  section.section:not(.section-soft) .grid-3.fade-in-stagger:not(.snap-mobile):not(.honesty-grid):not(.pour-qui-grid):not(.model-eco-grid) .feature-card .card-text {
    font-size: 13px !important;
    line-height: 1.5 !important;
    flex-grow: 0 !important;
  }
}

/* --- Honnêteté : override avec spécificité forte → 1 par ligne, auto-height --- */
@media (max-width: 768px) {
  body.is-leads section.section:not(.section-soft) .grid-3.fade-in-stagger.honesty-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.is-leads section.section:not(.section-soft) .grid-3.fade-in-stagger.honesty-grid .feature-card {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    text-align: left !important;
    padding: 20px 18px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    display: block !important;
  }
}

/* --- Stats-cards : même taille (aspect-ratio 1 / 1) + centrage parfait --- */
@media (max-width: 768px) {
  .stats-cards .stat-card {
    aspect-ratio: 1 / 1 !important;
    padding: 14px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .stats-cards .stat-num {
    font-size: 1.55rem !important;
    line-height: 1.05 !important;
    margin-bottom: 6px !important;
  }
  .stats-cards .stat-label {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
}
@media (max-width: 380px) {
  .stats-cards .stat-num { font-size: 1.4rem !important; }
  .stats-cards .stat-label { font-size: 11px !important; }
}

/* --- Callouts comparatif : plus aplatis (rect au lieu de carré) --- */
@media (max-width: 768px) {
  .compare-callouts > .cc-card:not(.cc-card-best) {
    aspect-ratio: 1.5 / 1 !important;
    padding: 12px 10px !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) h3 {
    font-size: 0.88rem !important;
    margin-bottom: 4px !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
  .compare-callouts > .cc-card:not(.cc-card-best) .cc-card-icon {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }
}

/* --- Encart ampoule "Comment choisir" / "Premier mois 0€" : encore plus petit --- */
@media (max-width: 768px) {
  .pricing-note {
    padding: 12px 14px !important;
    gap: 10px !important;
    border-radius: 14px !important;
    margin-top: 18px !important;
  }
  .pricing-note .pn-icon {
    font-size: 17px !important;
  }
  .pricing-note p {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }
  .pricing-note strong:first-of-type {
    font-size: 1rem !important;
  }
}

/* --- Sites-web "Tout est inclus" : solo cards NORMALES (pas carré) --- */
@media (max-width: 768px) {
  body.is-sites-web .grid-mix > .row-solo {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 22px 18px !important;
    grid-column: 1 / -1;
  }
  body.is-sites-web .grid-mix > .row-solo .card-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 26px !important;
    margin-bottom: 14px !important;
  }
  body.is-sites-web .grid-mix > .row-solo .card-title {
    font-size: 1.1rem !important;
  }
  body.is-sites-web .grid-mix > .row-solo .card-text {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
}

/* --- Gestion Google "Ce qu'on fait pour vous" : cards bigger / padding plus généreux --- */
@media (max-width: 768px) {
  body.is-gestion-google .grid-mix .feature-card,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .feature-card {
    padding: 26px 20px !important;
    min-height: 0 !important;
  }
  body.is-gestion-google .grid-mix .card-title,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .card-title {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
}

/* --- Gestion Google "Pour qui" : "Et vous?" en cellule normale, pas full-width --- */
@media (max-width: 768px) {
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .cta-card {
    grid-column: auto !important;
    aspect-ratio: 1 / 1.05 !important;
    padding: 16px 12px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .cta-card .card-icon {
    margin: 0 auto 8px !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .cta-card .card-text {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  body.is-gestion-google section.section .grid-3.fade-in-stagger:has(.cta-card) > .cta-card .cta-card-button {
    font-size: 12px !important;
    margin-top: 8px !important;
  }
}


/* ==========================================================================
   MOBILE FINE-TUNING — 2026-05-21 (lot 10 — finitions user)
   Stats plus gros, gestion-google cards plus grandes, bouton appel vert+bleu.
   PORTÉE : uniquement mobile ≤768px.
   ========================================================================== */

/* --- Stats-cards (home + sites-web) : titre + description plus gros --- */
@media (max-width: 768px) {
  .stats-cards .stat-card {
    aspect-ratio: 1 / 1.1 !important;
    padding: 16px 12px !important;
  }
  .stats-cards .stat-num {
    font-size: 2rem !important;
    line-height: 1.05 !important;
    margin-bottom: 8px !important;
  }
  .stats-cards .stat-label {
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 500;
  }
}
@media (max-width: 380px) {
  .stats-cards .stat-num { font-size: 1.7rem !important; }
  .stats-cards .stat-label { font-size: 12px !important; }
}

/* --- Gestion Google "Ce qu'on fait pour vous" : encarts BIEN plus généreux --- */
@media (max-width: 768px) {
  body.is-gestion-google .grid-mix .feature-card,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .feature-card {
    padding: 32px 22px !important;
    min-height: 0 !important;
  }
  body.is-gestion-google .grid-mix .feature-card .card-icon,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .feature-card .card-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 26px !important;
    margin-bottom: 16px !important;
  }
  body.is-gestion-google .grid-mix .card-title,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .card-title {
    font-size: 1.15rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }
  body.is-gestion-google .grid-mix .card-text,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .card-text {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
  }
  body.is-gestion-google .grid-mix .feature-card-stat,
  body.is-gestion-google .grid-3.fade-in-stagger:not(.grid-mix):not(:has(.cta-card)) .feature-card-stat {
    font-size: 12px !important;
    margin-top: 14px !important;
    padding: 4px 10px !important;
  }
}

/* --- Bouton appel sticky : dégradé animé VERT + CYAN + BLEU (confiance) --- */
@media (max-width: 768px) {
  .mobile-cta-bar .mcb-call {
    background: linear-gradient(90deg, #14532d 0%, #16a34a 18%, #06b6d4 38%, #3b82f6 55%, #06b6d4 72%, #16a34a 88%, #14532d 100%) !important;
    background-size: 300% 100% !important;
    animation: gradient-shift 4s ease infinite !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(34,197,94,0.30), 0 4px 16px rgba(59,130,246,0.25) !important;
  }
  .mobile-cta-bar .mcb-call::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
    transition: left .6s;
    pointer-events: none;
  }
  .mobile-cta-bar .mcb-call:active::after { left: 100%; }
}

/* ==========================================================================
   PAGE — Politique de confidentialité (confidentialite.html)
   Hero compact + prose longue, sobre, lisible.
   ========================================================================== */
.hero-tight { padding-top: 90px; padding-bottom: 30px; }
.hero-tight .hero-inner { padding-top: 40px; padding-bottom: 20px; }
.hero-tight .hero-title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.hero-tight .hero-subtitle { max-width: 640px; margin: 16px auto 0; }

.legal-prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a3a;
}
.legal-prose .legal-meta {
  display: inline-block;
  margin: 0 0 28px;
  padding: 8px 14px;
  background: rgba(109,40,217,0.06);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
}
.legal-prose h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  color: #0f172a;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-prose h2:first-of-type { margin-top: 8px; }
.legal-prose p { margin: 0 0 16px; }
.legal-prose ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}
.legal-prose ul li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(109,40,217,0.35);
  transition: color .2s, text-decoration-color .2s;
}
.legal-prose a:hover {
  color: var(--primary-2);
  text-decoration-color: var(--primary-2);
}
.legal-prose strong { color: #0f172a; font-weight: 700; }
.legal-prose .legal-back {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 640px) {
  .legal-prose { font-size: 15.5px; line-height: 1.7; }
  .legal-prose h2 { margin: 32px 0 12px; }
  .legal-prose ul { padding-left: 18px; }
}
