/* ═══════════════════════════════════════════════════════════════════════
   Ma Présence Locale — style.css V7
   Design system: Modern Dark Cinema · Glassmorphism · Spring motion
   Skill: UI/UX Pro Max — fonts: Plus Jakarta Sans · easing: spring
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Google Font: Plus Jakarta Sans (UI/UX Pro Max recommendation) ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* ── Modern Dark Cinema · indigo-tinted (UI/UX Pro Max: style #1) ── */
  --bg-deep:    #06060E;   /* deep indigo-black */
  --bg-base:    #0A0A18;   /* dark indigo base */
  --bg-elevated:#0F0E22;   /* slightly elevated */

  /* Backward-compat aliases */
  --ink:        #06060E;
  --ink2:       #0A0A18;
  --ink3:       #0F0E22;

  /* Glass surfaces */
  --surface:    rgba(255,255,255,.05);
  --surface2:   rgba(255,255,255,.08);
  --surface3:   rgba(255,255,255,.13);

  /* Brand */
  --blue:       #1246F0;
  --blue2:      #0A35D4;
  --blue3:      #E8EFFE;
  --blue-glow:  rgba(18,70,240,.38);
  --electric:   #4D7CFF;
  --lime:       #C8FF00;
  --lime2:      #B8EF00;
  --lime-glow:  rgba(200,255,0,.28);
  --purple:     #7C3AED;
  --purple2:    #6D28D9;
  --rose:       #F43F5E;

  /* Light section palette */
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --off2:       #F1F5F9;
  --off3:       #E2E8F0;
  --body-bg:    #F8FAFC;

  /* Text */
  --fg:         #EDEDEF;       /* primary on dark */
  --fg-muted:   #8A8F98;       /* secondary on dark */
  --muted:      #64748B;       /* on light bg */
  --muted2:     #94A3B8;
  --border:     rgba(0,0,0,.09);
  --border2:    rgba(0,0,0,.13);

  /* Dark borders / glass hairlines */
  --dborder:    rgba(255,255,255,.08);
  --dborder2:   rgba(255,255,255,.14);
  --dborder3:   rgba(255,255,255,.24);

  /* Functional */
  --success:    #22C55E;
  --warning:    #F59E0B;
  --error:      #EF4444;

  /* Radius — 16px system (UI/UX Pro Max) */
  --r:          12px;
  --r-lg:       16px;
  --r-xl:       24px;
  --r-2xl:      36px;

  /* Shadows */
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.22);
  --shadow-xl:  0 32px 96px rgba(0,0,0,.28);
  --shadow-blue:0 8px 40px rgba(18,70,240,.38);
  --shadow-lime:0 8px 40px rgba(200,255,0,.25);
  --glow-blue:  0 0 60px rgba(18,70,240,.25), 0 8px 40px rgba(18,70,240,.35);

  /* Spring easing (UI/UX Pro Max: cubic-bezier(0.16,1,0.3,1)) */
  --ease:        cubic-bezier(.16,1,.3,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --transition:  all .3s var(--ease);
  --transition-fast: all .18s var(--ease);

  /* Fonts — Plus Jakarta Sans (UI/UX Pro Max #1 recommendation) */
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  background: var(--body-bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
body.nav-locked { overflow: hidden; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; }
::selection { background:rgba(18,70,240,.15); color:var(--ink); }

/* ── PROGRESS BAR ── */
#prog {
  position:fixed; top:0; left:0; z-index:9999;
  height:2px; width:0%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  transition: width .08s linear;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position:fixed; pointer-events:none; z-index:9998;
  width:320px; height:320px;
  background: radial-gradient(circle, rgba(18,70,240,.12) 0%, transparent 70%);
  transform:translate(-50%,-50%);
  transition:none;
  display:none;
}
@media (hover:hover) { .cursor-glow { display:block; } }

/* ── NAVIGATION ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px;
  background: rgba(6,6,12,.85);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--dborder);
  transition: var(--transition);
}
nav.on {
  padding:13px 24px;
  background: rgba(6,6,12,.95);
  border-bottom-color: var(--dborder2);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.logo {
  font-family:var(--font-display);
  font-size:1.05rem; font-weight:800;
  color:var(--white); text-decoration:none;
  letter-spacing:-.04em;
  display:flex; align-items:center; gap:10px;
  white-space:nowrap;
}
.logo-sq {
  width:32px; height:32px;
  background:var(--blue);
  border-radius:9px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.logo:hover .logo-sq {
  background:var(--blue2);
  transform:rotate(10deg) scale(1.08);
  box-shadow: 0 0 0 8px rgba(18,70,240,.12);
}
.logo-sq svg { width:15px; height:15px; }

.nav-r { display:none; align-items:center; gap:24px; }
@media (min-width:1024px) { .nav-r { display:flex; } }

.nav-links { display:flex; gap:20px; list-style:none; }
.nav-links a {
  font-size:.8rem; font-weight:500;
  color:rgba(255,255,255,.55);
  text-decoration:none; transition:color .2s;
  letter-spacing:.01em; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-5px; left:0;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  transition:width .25s var(--ease);
  border-radius:2px;
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { width:100%; }
.nav-links a.active { color:var(--white); font-weight:600; }
.nav-links a.active::after { width:100%; }

.nav-blog-badge {
  font-size:.58rem; font-weight:800;
  background:var(--lime); color:var(--ink);
  padding:2px 7px; border-radius:4px;
  text-transform:uppercase; letter-spacing:.08em;
  margin-left:5px; vertical-align:middle;
  position:relative; top:-1px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:var(--white);
  padding:10px 20px; border-radius:var(--r);
  font-family:var(--font-display); font-size:.8rem; font-weight:700;
  text-decoration:none; transition:var(--transition);
  white-space:nowrap; position:relative; overflow:hidden;
  display:inline-flex; align-items:center; gap:6px;
  box-shadow: 0 4px 20px rgba(18,70,240,.25);
}
.nav-cta::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--blue2), var(--purple));
  opacity:0; transition:opacity .3s;
}
.nav-cta:hover::before { opacity:1; }
.nav-cta > * { position:relative; z-index:1; }
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 8px 32px rgba(18,70,240,.4); }

/* Burger */
.burger {
  display:flex; flex-direction:column; gap:5px;
  cursor:pointer; padding:8px; margin:-8px;
  touch-action:manipulation; border:none; background:none;
}
.burger span { display:block; width:22px; height:2px; background:rgba(255,255,255,.8); border-radius:2px; transition:.3s; }
.burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
@media (min-width:1024px) { .burger { display:none; } }

/* Mobile nav */
.mnav {
  display:none; position:fixed; top:0; inset-x:0; z-index:199;
  background:rgba(6,6,12,.98); backdrop-filter:blur(32px);
  border-bottom:1px solid var(--dborder);
  padding:76px 24px 36px; flex-direction:column; gap:0;
  box-shadow:0 24px 80px rgba(0,0,0,.6);
}
.mnav.open { display:flex; }
.mnav a {
  font-size:1rem; font-weight:500; color:rgba(255,255,255,.75);
  text-decoration:none; padding:15px 0;
  border-bottom:1px solid var(--dborder);
  transition:color .2s;
}
.mnav a:hover { color:var(--white); }
.mnav a.mnav-cta {
  border-bottom:none;
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff; text-align:center; justify-content:center;
  border-radius:var(--r); padding:16px; margin-top:20px;
  font-family:var(--font-display); font-weight:700; font-size:1rem;
  display:flex; box-shadow:var(--shadow-blue);
}

/* ── LAYOUT ── */
.w    { max-width:1220px; margin:0 auto; padding:0 24px; }
.w-sm { max-width:780px; margin:0 auto; padding:0 24px; }
.sec    { padding:96px 0; }
.sec-sm { padding:60px 0; }
.sec-lg { padding:128px 0; }
.sec-off { background:var(--off); }
.sec-ink { background:var(--ink); color:var(--white); }

/* ── SKIP LINK ── */
.skip-link {
  position:absolute; top:-40px; left:16px;
  background:var(--blue); color:white;
  padding:8px 16px; border-radius:0 0 8px 8px;
  font-weight:700; z-index:10000; text-decoration:none;
  font-size:.9rem; transition:top .2s;
}
.skip-link:focus { top:0; }

/* ── SECTION HEADERS ── */
.sh { margin-bottom:56px; }
.kicker {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.64rem; font-weight:800; letter-spacing:.18em;
  text-transform:uppercase; color:var(--blue); margin-bottom:18px;
}
.kicker-line { width:28px; height:2px; background:var(--blue); flex-shrink:0; border-radius:2px; }
.kicker-lime { color:var(--lime); }
.kicker-lime .kicker-line { background:var(--lime); }

.sh h2 {
  font-family:var(--font-display);
  font-size:clamp(2rem,5.5vw,3.6rem);
  font-weight:800; letter-spacing:-.045em; line-height:1.05;
  color:var(--ink); margin-bottom:18px;
}
.sh h2 em { font-style:normal; color:var(--blue); }
.sh h2 mark { background:var(--lime); color:var(--ink); padding:0 8px; font-style:normal; border-radius:4px; }
.sh p { font-size:.93rem; color:var(--muted); max-width:540px; line-height:1.82; }
.sh.center { text-align:center; }
.sh.center p { margin:0 auto; }
.sh.light h2 { color:var(--white); }
.sh.light p { color:rgba(255,255,255,.55); }
.sh.light .kicker { color:var(--lime); }
.sh.light .kicker-line { background:var(--lime); }

/* Gradient text utility */
.g-text {
  background:linear-gradient(135deg, var(--lime) 0%, var(--electric) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.g-text-blue {
  background:linear-gradient(135deg, var(--electric) 0%, var(--blue) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── BUTTONS ── */
.btn-blk {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background:var(--white); color:var(--ink);
  padding:15px 28px; border-radius:var(--r);
  font-family:var(--font-display); font-weight:700; font-size:.9rem;
  text-decoration:none; transition:var(--transition);
  position:relative; overflow:hidden; min-height:50px;
  touch-action:manipulation; border:none; cursor:pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.btn-blk::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.btn-blk:hover::before { transform:scaleX(1); }
.btn-blk:hover { color:var(--white); transform:translateY(-2px); box-shadow:var(--shadow-blue); }
.btn-blk > * { position:relative; z-index:1; }
.btn-blk:active { transform:translateY(1px) scale(.99); }

.btn-bdr {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  border:1.5px solid var(--border2); color:var(--ink);
  padding:15px 28px; border-radius:var(--r);
  font-family:var(--font-display); font-weight:700; font-size:.9rem;
  text-decoration:none; background:var(--white); transition:var(--transition);
  min-height:50px; touch-action:manipulation;
}
.btn-bdr:hover { border-color:var(--ink); background:var(--off); transform:translateY(-1px); }

.btn-lime {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background:var(--lime); color:var(--ink);
  padding:15px 28px; border-radius:var(--r);
  font-family:var(--font-display); font-weight:800; font-size:.9rem;
  text-decoration:none; transition:var(--transition);
  min-height:50px; touch-action:manipulation; border:none; cursor:pointer;
  position:relative; overflow:hidden;
  box-shadow: 0 4px 20px var(--lime-glow);
}
.btn-lime::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity:0; transition:opacity .3s;
}
.btn-lime:hover::after { opacity:1; }
.btn-lime:hover { background:var(--lime2); transform:translateY(-2px); box-shadow:0 12px 40px var(--lime-glow); }
.btn-lime:active { transform:translateY(1px) scale(.99); }

.btn-wbdr {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  border:1.5px solid var(--dborder2); color:rgba(255,255,255,.8);
  padding:15px 28px; border-radius:var(--r);
  font-family:var(--font-display); font-weight:700; font-size:.9rem;
  text-decoration:none; background:var(--surface);
  transition:var(--transition); min-height:50px;
}
.btn-wbdr:hover { background:var(--surface2); border-color:var(--dborder3); color:#fff; transform:translateY(-1px); }

.btn-blue {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  background:linear-gradient(135deg,var(--blue) 0%,var(--electric) 100%); color:var(--white);
  padding:15px 28px; border-radius:var(--r);
  font-family:var(--font-display); font-weight:700; font-size:.9rem;
  text-decoration:none; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
  min-height:50px; touch-action:manipulation; border:none; cursor:pointer;
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,.15);
  position:relative; overflow:hidden;
}
.btn-blue::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity:0; transition:opacity .25s;
}
.btn-blue:hover { transform:translateY(-2px) scale(1.01); box-shadow:var(--glow-blue); }
.btn-blue:hover::before { opacity:1; }
.btn-blue:active { transform:translateY(0) scale(.98); }

/* Arrow */
.arr { display:inline-block; transition:transform .2s var(--ease); }
*:hover > .arr { transform:translateX(4px); }

/* ── ANIMATIONS ── */
.fi {
  opacity:0; transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.fi.in { opacity:1; transform:translateY(0); }
.fi-up { opacity:0; transform:translateY(16px); transition:opacity .55s var(--ease), transform .55s var(--ease); }
.fi-up.in { opacity:1; transform:translateY(0); }
.fi-scale { opacity:0; transform:scale(.94); transition:opacity .6s var(--ease), transform .6s var(--ease-spring); }
.fi-scale.in { opacity:1; transform:scale(1); }
.d1 { transition-delay:.08s!important; }
.d2 { transition-delay:.16s!important; }
.d3 { transition-delay:.24s!important; }
.d4 { transition-delay:.32s!important; }
.d5 { transition-delay:.40s!important; }
.d6 { transition-delay:.48s!important; }

/* ═══════════════════════════════════════════════════════════
   HERO — HOMEPAGE
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height:100svh;
  display:flex; align-items:center;
  padding:120px 0 96px;
  position:relative; overflow:hidden;
  background:var(--ink);
}

/* Animated gradient mesh background */
.hero-bg {
  position:absolute; inset:0; pointer-events:none; overflow:hidden;
}
.hero-mesh {
  position:absolute; inset:-20%;
  background:
    radial-gradient(ellipse 80% 70% at 80% 20%, rgba(18,70,240,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124,58,237,.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(200,255,0,.04) 0%, transparent 60%);
  animation:meshFloat 18s ease-in-out infinite;
}
@keyframes meshFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(2%,-3%) scale(1.03); }
  66%      { transform:translate(-2%,2%) scale(.98); }
}
.hero-grid-lines {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 70% at 70% 30%, black, transparent);
}
.hero-noise {
  position:absolute; inset:0; opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  display:grid; grid-template-columns:1fr;
  gap:56px; align-items:center;
  position:relative; z-index:2;
  width:100%;
}
@media (min-width:960px) {
  .hero-inner { grid-template-columns:1fr 460px; gap:72px; }
}

/* Hero left */
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  margin-bottom:24px;
}
.hero-pulse {
  display:flex; align-items:center; gap:8px;
  background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.2);
  border-radius:100px; padding:5px 12px 5px 8px;
}
.hero-pulse-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(34,197,94,.2);
  animation:pulseDot 2.2s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulseDot {
  0%,100% { box-shadow:0 0 0 4px rgba(34,197,94,.2); }
  50%      { box-shadow:0 0 0 9px rgba(34,197,94,.05); }
}
.hero-pulse-text {
  font-size:.68rem; font-weight:700; color:rgba(255,255,255,.7);
  letter-spacing:.06em;
}
.hero-geo-tag {
  font-size:.7rem; font-weight:600; color:rgba(255,255,255,.35);
  letter-spacing:.04em;
}

.hero h1 {
  font-family:var(--font-display);
  font-size:clamp(2.8rem,7.5vw,5.4rem);
  font-weight:800; letter-spacing:-.055em; line-height:1.0;
  color:var(--white); margin-bottom:28px;
}
.hero h1 .hl {
  position:relative; display:inline-block;
}
.hero h1 .hl-lime {
  background:linear-gradient(135deg, var(--lime) 0%, #9FFF40 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-sub {
  font-size:1rem; color:rgba(255,255,255,.6);
  line-height:1.82; margin-bottom:40px; max-width:480px;
}

.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px; }

.hero-trust {
  display:flex; align-items:center; gap:14px;
  font-size:.73rem; color:rgba(255,255,255,.35); flex-wrap:wrap;
}
.hero-trust-dot { width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,.18); flex-shrink:0; }

/* Hero right — glass panel */
.hero-panel {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-xl);
  overflow:hidden;
  backdrop-filter:blur(12px);
  position:relative;
}
.hero-panel::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(18,70,240,.1) 0%, rgba(124,58,237,.05) 60%, transparent 100%);
  pointer-events:none;
}
.hero-panel-top {
  display:flex; align-items:center; gap:8px;
  padding:14px 20px;
  background:rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.hp-dot { width:10px; height:10px; border-radius:50%; }
.hp-dot-r { background:#FF5F57; }
.hp-dot-y { background:#FEBC2E; }
.hp-dot-g { background:#28C840; }
.hp-title {
  font-size:.68rem; color:rgba(255,255,255,.35);
  font-weight:600; margin-left:6px; letter-spacing:.05em;
}

.hp-stat-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1px; background:rgba(255,255,255,.05);
}
.hp-stat {
  padding:20px; background:rgba(0,0,0,.35);
  transition:background .3s;
}
.hp-stat:hover { background:rgba(0,0,0,.25); }
.hp-stat-num {
  font-family:var(--font-display); font-size:2rem;
  font-weight:800; color:var(--white); letter-spacing:-.05em;
  line-height:1; margin-bottom:5px;
}
.hp-stat-num.lime {
  background:linear-gradient(135deg, var(--lime), #9FFF40);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hp-stat-label { font-size:.67rem; color:rgba(255,255,255,.4); font-weight:500; line-height:1.45; }

.hp-bars { padding:20px; }
.hp-bar-item { margin-bottom:14px; }
.hp-bar-item:last-child { margin-bottom:0; }
.hp-bar-label {
  display:flex; justify-content:space-between;
  font-size:.66rem; color:rgba(255,255,255,.45); margin-bottom:7px; font-weight:500;
}
.hp-bar-label span:last-child { color:var(--lime); font-weight:800; }
.hp-bar-track {
  height:5px; background:rgba(255,255,255,.07); border-radius:10px; overflow:hidden;
}
.hp-bar-fill {
  height:100%; border-radius:10px;
  background:linear-gradient(90deg, var(--blue), var(--lime));
  transform-origin:left; transform:scaleX(0);
  animation:barGrow 2s var(--ease) forwards;
}
@keyframes barGrow { to { transform:scaleX(1); } }
.hp-bar-fill.b1 { animation-delay:.5s; background:linear-gradient(90deg,var(--blue),var(--lime)); }
.hp-bar-fill.b2 { animation-delay:.75s; background:linear-gradient(90deg,var(--blue2),var(--electric)); }
.hp-bar-fill.b3 { animation-delay:1s; background:linear-gradient(90deg,var(--purple),var(--electric)); }

/* ── TICKER STRIP ── */
.ticker-strip {
  background:var(--lime); padding:14px 0;
  overflow:hidden; position:relative;
}
.ticker-track {
  display:flex; white-space:nowrap;
  animation:tickerScroll 32s linear infinite;
}
.ticker-item {
  display:inline-flex; align-items:center; gap:20px;
  font-size:.7rem; font-weight:800; color:var(--ink);
  letter-spacing:.12em; text-transform:uppercase;
  padding:0 28px; flex-shrink:0;
}
.ticker-accent { color:rgba(0,0,0,.35); font-size:.6rem; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── WHY CARDS ── */
.why-grid { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:700px) { .why-grid { grid-template-columns:1fr 1fr; } }
.why-card {
  border-radius:var(--r-lg); padding:32px;
  transition:var(--transition); position:relative; overflow:hidden;
}
.why-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.why-card.bad  { background:#FFF4F4; border:1px solid #FFD6D6; }
.why-card.good {
  background:var(--ink);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow-blue);
}
.why-card.good::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(18,70,240,.12) 0%, transparent 60%);
  pointer-events:none;
}
.wc-head { display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.wc-icon {
  width:38px; height:38px; border-radius:9px;
  display:flex; align-items:center; justify-content:center;
}
.bad .wc-icon  { background:rgba(239,68,68,.1); }
.good .wc-icon { background:rgba(200,255,0,.12); }
.wc-label { font-family:var(--font-display); font-size:.8rem; font-weight:700; letter-spacing:.03em; }
.bad .wc-label  { color:#DC2626; }
.good .wc-label { color:var(--lime); }
.wc-items { display:flex; flex-direction:column; gap:11px; }
.wc-item {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.83rem; line-height:1.55;
}
.bad .wc-item  { color:#7F1D1D; }
.good .wc-item { color:rgba(255,255,255,.78); }
.wc-bullet { font-size:.8rem; flex-shrink:0; margin-top:2px; }
.why-cta-row { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:40px; flex-wrap:wrap; }

/* ── STATS SECTION ── */
.stats-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; }
@media (min-width:640px) { .stats-grid { grid-template-columns:repeat(4,1fr); } }
.stat-cell {
  padding:48px 28px; text-align:center;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  transition:background .35s;
  position:relative; overflow:hidden;
}
.stat-cell::before {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:80%; height:1px;
  background:linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity:0; transition:opacity .35s;
}
.stat-cell:hover { background:rgba(255,255,255,.06); }
.stat-cell:hover::before { opacity:1; }
.stat-num {
  font-family:var(--font-display);
  font-size:clamp(2.5rem,5.5vw,4rem);
  font-weight:800; letter-spacing:-.055em; line-height:1;
  color:var(--white); margin-bottom:10px;
}
.stat-num.lime {
  background:linear-gradient(135deg,var(--lime),#9FFF40);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.stat-label { font-size:.73rem; color:rgba(255,255,255,.4); font-weight:500; letter-spacing:.03em; line-height:1.5; }
.stat-disclaimer { text-align:center; font-size:.75rem; color:rgba(255,255,255,.25); margin-top:28px; font-style:italic; }

/* ── SERVICES CARDS ── */
.svc-grid { display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:640px)  { .svc-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .svc-grid { grid-template-columns:repeat(3,1fr); } }

.svc-grid-2 { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px) { .svc-grid-2 { grid-template-columns:1fr 1fr; } }

.svc-card {
  background:var(--white); border:1px solid rgba(0,0,0,.09);
  border-radius:var(--r-lg); padding:32px;
  transition:var(--transition); text-decoration:none; color:inherit;
  display:flex; flex-direction:column;
  position:relative; overflow:hidden;
  cursor:pointer;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--blue), var(--lime));
  transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.svc-card::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(18,70,240,.03) 0%, transparent 60%);
  opacity:0; transition:opacity .35s;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(18,70,240,.2); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-card:hover::after { opacity:1; }

.svc-num {
  font-family:var(--font-display); font-size:3.5rem;
  font-weight:800; color:var(--off2); letter-spacing:-.06em;
  line-height:1; margin-bottom:16px; transition:color .3s;
}
.svc-card:hover .svc-num { color:var(--blue3); }

.svc-icon {
  width:48px; height:48px; border-radius:12px;
  background:var(--blue3); display:flex; align-items:center;
  justify-content:center; margin-bottom:18px;
  transition:var(--transition);
}
.svc-card:hover .svc-icon { background:var(--blue); box-shadow:0 8px 28px rgba(18,70,240,.3); }
.svc-card:hover .svc-icon svg { stroke:white; }
.svc-title { font-family:var(--font-display); font-size:1.15rem; font-weight:800; letter-spacing:-.03em; margin-bottom:12px; color:var(--ink); }
.svc-desc  { font-size:.83rem; color:var(--muted); line-height:1.75; flex:1; margin-bottom:22px; }
.svc-link  { font-size:.78rem; font-weight:700; color:var(--blue); display:flex; align-items:center; gap:6px; margin-top:auto; }

/* ── PROCESS STEPS ── */
.process-grid { display:grid; grid-template-columns:1fr; gap:2px; }
@media (min-width:640px) { .process-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .process-grid { grid-template-columns:repeat(4,1fr); } }

.proc-step {
  background:var(--white); border:1px solid rgba(0,0,0,.08);
  border-radius:var(--r-lg); padding:30px 26px;
  position:relative; transition:var(--transition);
}
.proc-step:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(18,70,240,.2); }
.proc-step:hover .proc-num-circle { background:var(--blue); color:white; }

.proc-num {
  font-family:var(--font-display); font-size:.65rem; font-weight:700;
  color:var(--blue); letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:16px; display:flex; align-items:center; gap:9px;
}
.proc-num-circle {
  width:30px; height:30px; border-radius:50%;
  background:var(--blue3); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-size:.78rem; font-weight:800; flex-shrink:0;
  transition:var(--transition);
}
.proc-title  { font-family:var(--font-display); font-size:1rem; font-weight:700; letter-spacing:-.02em; margin-bottom:10px; color:var(--ink); }
.proc-desc   { font-size:.8rem; color:var(--muted); line-height:1.75; }
.proc-time {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.64rem; font-weight:700; color:var(--blue);
  text-transform:uppercase; letter-spacing:.09em;
  margin-top:16px; padding:4px 10px;
  background:var(--blue3); border-radius:100px;
}

/* ── ENGAGEMENTS GRID ── */
.engage-grid { display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:640px) { .engage-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:960px) { .engage-grid { grid-template-columns:1fr 1fr 1fr; } }

.engage-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:24px; border-radius:var(--r-lg);
  background:var(--surface); border:1px solid var(--dborder);
  transition:var(--transition); position:relative; overflow:hidden;
}
.engage-item::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(18,70,240,.08) 0%, transparent 60%);
  opacity:0; transition:opacity .35s;
}
.engage-item:hover { border-color:var(--dborder2); transform:translateY(-3px); box-shadow:0 12px 40px rgba(0,0,0,.3); }
.engage-item:hover::before { opacity:1; }

.engage-icon {
  width:44px; height:44px; border-radius:11px;
  background:rgba(18,70,240,.15); display:flex; align-items:center;
  justify-content:center; flex-shrink:0; transition:var(--transition);
}
.engage-item:hover .engage-icon { background:var(--blue); box-shadow:0 6px 24px rgba(18,70,240,.35); }
.engage-item:hover .engage-icon svg { stroke:white; }
.engage-title { font-weight:700; font-size:.88rem; margin-bottom:6px; color:var(--white); }
.engage-desc  { font-size:.79rem; color:rgba(255,255,255,.5); line-height:1.68; }

/* ── SECTEURS PILLS ── */
.secteurs-wrap { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:32px; }
.sect-pill {
  background:var(--surface); border:1px solid var(--dborder);
  border-radius:100px; padding:9px 18px;
  font-size:.79rem; font-weight:500; color:rgba(255,255,255,.65);
  transition:var(--transition); cursor:default;
}
.sect-pill:hover { border-color:var(--lime); color:var(--lime); background:rgba(200,255,0,.06); }

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:640px) { .testi-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .testi-grid { grid-template-columns:repeat(3,1fr); } }
.testi-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:30px;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
  position:relative; overflow:hidden;
}
.testi-card::before {
  content:'"'; position:absolute; top:16px; right:20px;
  font-size:5rem; font-family:Georgia,serif; font-weight:700;
  color:var(--blue3); line-height:1; pointer-events:none;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.testi-stars { color:#F59E0B; font-size:.85rem; letter-spacing:2px; margin-bottom:16px; }
.testi-quote { font-size:.875rem; color:var(--ink2); line-height:1.78; margin-bottom:22px; font-style:italic; position:relative; z-index:1; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; color:white;
  font-size:.85rem; flex-shrink:0;
}
.testi-name { font-weight:700; font-size:.83rem; color:var(--ink); }
.testi-role { font-size:.72rem; color:var(--muted); margin-top:1px; }
.testi-result {
  display:inline-flex; align-items:center; gap:4px;
  background:rgba(34,197,94,.1); color:#16A34A;
  font-size:.68rem; font-weight:700; padding:3px 9px;
  border-radius:100px; margin-top:5px;
}

/* ── REALISATION CARDS ── */
.real-grid { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px) { .real-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .real-grid { grid-template-columns:repeat(3,1fr); } }
.real-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden;
  transition:var(--transition);
}
.real-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.real-thumb {
  height:170px; display:flex; align-items:center;
  justify-content:center; position:relative; overflow:hidden;
}
.real-thumb-overlay {
  position:absolute; inset:0; display:flex; align-items:center;
  justify-content:center; background:rgba(0,0,0,.45);
  opacity:0; transition:opacity .3s;
}
.real-card:hover .real-thumb-overlay { opacity:1; }
.real-body { padding:22px; }
.real-meta { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:9px; }
.real-sector { font-size:.63rem; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.11em; }
.real-badge { font-size:.63rem; font-weight:700; color:#16A34A; background:rgba(34,197,94,.1); padding:3px 9px; border-radius:100px; }
.real-name { font-family:var(--font-display); font-size:.95rem; font-weight:700; color:var(--ink); margin-bottom:7px; }
.real-result { font-size:.78rem; color:var(--muted); line-height:1.6; }

/* ── PRICING ── */
.pricing-grid { display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px) { .pricing-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:900px) { .pricing-grid { grid-template-columns:repeat(3,1fr); } }
.price-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:36px 30px;
  position:relative; transition:var(--transition);
  display:flex; flex-direction:column;
}
.price-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.price-card.featured {
  background:var(--ink); border-color:transparent;
  color:var(--white);
  box-shadow:var(--shadow-blue);
}
.price-card.featured::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(18,70,240,.25), rgba(124,58,237,.1) 60%, transparent);
  border-radius:inherit; pointer-events:none;
}
.price-badge {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.63rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.12em; padding:5px 11px; border-radius:100px;
  margin-bottom:22px; width:fit-content;
}
.price-badge.popular { background:var(--lime); color:var(--ink); }
.price-badge.launch  { background:var(--blue3); color:var(--blue); }
.price-badge.pro     { background:rgba(255,255,255,.08); color:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.15); }
.price-name   { font-family:var(--font-display); font-size:1.25rem; font-weight:800; letter-spacing:-.03em; margin-bottom:9px; }
.price-tagline{ font-size:.8rem; color:var(--muted); line-height:1.65; margin-bottom:26px; }
.featured .price-tagline { color:rgba(255,255,255,.5); }
.price-amount { font-family:var(--font-display); font-size:2rem; font-weight:800; letter-spacing:-.045em; margin-bottom:5px; }
.featured .price-amount { color:var(--lime); }
.price-note   { font-size:.72rem; color:var(--muted); margin-bottom:30px; }
.featured .price-note { color:rgba(255,255,255,.38); }
.price-divider{ height:1px; background:var(--border); margin-bottom:26px; }
.featured .price-divider { background:rgba(255,255,255,.1); }
.price-features { display:flex; flex-direction:column; gap:12px; flex:1; margin-bottom:30px; }
.pf-item { display:flex; align-items:flex-start; gap:10px; font-size:.83rem; line-height:1.5; }
.featured .pf-item { color:rgba(255,255,255,.78); }
.pf-check {
  width:19px; height:19px; border-radius:50%;
  background:rgba(34,197,94,.12); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; margin-top:1px;
}
.featured .pf-check { background:rgba(200,255,0,.12); }
.pf-check svg { width:10px; height:10px; stroke:#16A34A; stroke-width:3; fill:none; }
.featured .pf-check svg { stroke:var(--lime); }
.price-cta { margin-top:auto; }

/* ── TRUST BADGES ── */
.trust-row { display:flex; flex-wrap:wrap; align-items:center; gap:12px; padding:24px 0; }
.trust-item { display:flex; align-items:center; gap:8px; font-size:.75rem; font-weight:500; color:var(--muted); }
.trust-icon  { font-size:.9rem; }
.trust-sep   { width:1px; height:18px; background:var(--border); flex-shrink:0; }

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:3px; }
.fi-item {
  border:1px solid var(--border); border-radius:var(--r);
  overflow:hidden; background:var(--white);
  transition:border-color .2s, box-shadow .2s;
}
.fi-item.open { border-color:var(--blue3); box-shadow:0 0 0 3px rgba(18,70,240,.07); }
.fi-q {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 24px; text-align:left; gap:16px;
  font-family:var(--font-display); font-size:.9rem; font-weight:700;
  color:var(--ink); letter-spacing:-.01em; transition:color .2s;
}
.fi-q:hover { color:var(--blue); }
.fi-icon {
  width:30px; height:30px; border-radius:50%;
  background:var(--off2); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .35s;
}
.fi-item.open .fi-icon { background:var(--blue); transform:rotate(45deg); }
.fi-icon svg { width:12px; height:12px; stroke:var(--muted); stroke-width:2.5; fill:none; }
.fi-item.open .fi-icon svg { stroke:white; }
/* FAQ accordion — CSS grid technique: works even inside display:none panels */
.fi-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.fi-item.open .fi-a { grid-template-rows: 1fr; }
.fi-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.82;
  transition: padding-bottom .38s var(--ease);
}
.fi-item.open .fi-a-inner { padding-bottom: 24px; }
.fi-a-inner strong { color: var(--ink); font-weight: 600; }
.fi-a-inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ── CONTACT FORM ── */
.contact-hero {
  background:var(--ink); padding:100px 20px 76px;
  position:relative; overflow:hidden;
}
.contact-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 70% 50%, rgba(18,70,240,.22) 0%, transparent 60%);
  pointer-events:none;
}
.contact-layout { display:grid; grid-template-columns:1fr; gap:56px; align-items:start; }
@media (min-width:900px) { .contact-layout { grid-template-columns:1fr 440px; gap:80px; } }
.contact-form-box {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:40px 32px;
  box-shadow:var(--shadow-xl);
}
@media (min-width:640px) { .contact-form-box { padding:52px 44px; } }
.contact-form-box h2 { font-family:var(--font-display); font-size:clamp(1.5rem,3vw,2rem); font-weight:800; letter-spacing:-.04em; margin-bottom:7px; color:var(--ink); }
.cfb-sub { font-size:.83rem; color:var(--muted); line-height:1.72; margin-bottom:34px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:480px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.form-group:last-of-type { margin-bottom:0; }
.form-group label { font-size:.66rem; font-weight:700; color:var(--ink); letter-spacing:.09em; text-transform:uppercase; }
.form-group input,.form-group select,.form-group textarea {
  width:100%; padding:14px 17px;
  border:1.5px solid var(--border); border-radius:var(--r);
  font-family:var(--font-body); font-size:.9rem; color:var(--ink);
  background:var(--white); outline:none;
  transition:border-color .22s, box-shadow .22s;
  -webkit-appearance:none; appearance:none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(18,70,240,.1);
}
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--muted2); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-note { font-size:.72rem; color:var(--muted2); margin-top:18px; text-align:center; line-height:1.65; }
.budget-warning { display:none; padding:14px 16px; background:#FFF7ED; border:1px solid #FED7AA; border-radius:var(--r); font-size:.8rem; color:#92400E; line-height:1.6; margin-top:12px; }
.contact-side { color:var(--white); }
.contact-side h3 { font-family:var(--font-display); font-size:1.55rem; font-weight:800; letter-spacing:-.04em; margin-bottom:18px; }
.contact-steps { display:flex; flex-direction:column; gap:0; margin-bottom:40px; }
.cs-step { display:flex; align-items:flex-start; gap:18px; padding:22px 0; border-bottom:1px solid rgba(255,255,255,.07); }
.cs-step:last-child { border-bottom:none; }
.cs-num { width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--blue2)); color:white; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:.8rem; font-weight:800; flex-shrink:0; }
.cs-title { font-family:var(--font-display); font-size:.92rem; font-weight:700; margin-bottom:4px; }
.cs-desc { font-size:.78rem; color:rgba(255,255,255,.45); line-height:1.65; }
.contact-trust-chips { display:flex; flex-direction:column; gap:12px; }
.ctc { display:flex; align-items:center; gap:10px; }
.ctc-text { font-size:.78rem; color:rgba(255,255,255,.55); line-height:1.5; }
.ctc-text strong { color:rgba(255,255,255,.88); }

/* ── BLOG STYLES ── */
.blog-hero { background:var(--ink); padding:100px 20px 76px; position:relative; overflow:hidden; }
.blog-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 60%, rgba(18,70,240,.18) 0%, transparent 60%); pointer-events:none; }
.blog-cats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.blog-cat-btn {
  padding:8px 18px; border-radius:100px;
  font-size:.7rem; font-weight:700; cursor:pointer;
  border:1px solid var(--dborder); color:rgba(255,255,255,.55);
  background:var(--surface); transition:var(--transition); text-decoration:none;
}
.blog-cat-btn:hover,.blog-cat-btn.active { background:var(--lime); color:var(--ink); border-color:var(--lime); }
.blog-grid { display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:640px)  { .blog-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1024px) { .blog-grid { grid-template-columns:repeat(3,1fr); } }
.blog-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden;
  transition:var(--transition); text-decoration:none; color:inherit;
  display:flex; flex-direction:column;
}
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(18,70,240,.2); }
.blog-card:hover .blog-card-title { color:var(--blue); }
.blog-thumb { height:190px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.blog-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.blog-meta { display:flex; align-items:center; gap:10px; font-size:.65rem; color:var(--muted2); margin-bottom:13px; text-transform:uppercase; letter-spacing:.09em; font-weight:600; }
.blog-tag { color:var(--blue); background:var(--blue3); padding:3px 9px; border-radius:100px; }
.blog-card-title { font-family:var(--font-display); font-size:1rem; font-weight:800; letter-spacing:-.03em; line-height:1.3; color:var(--ink); margin-bottom:11px; transition:color .2s; }
.blog-excerpt { font-size:.8rem; color:var(--muted); line-height:1.75; flex:1; margin-bottom:18px; }
.blog-read { font-size:.75rem; font-weight:700; color:var(--blue); display:flex; align-items:center; gap:5px; margin-top:auto; }

/* Article page */
.article-hero { background:var(--ink); padding:100px 20px 60px; }
.article-layout { display:grid; grid-template-columns:1fr; gap:64px; align-items:start; padding:60px 0; }
@media (min-width:1024px) { .article-layout { grid-template-columns:1fr 310px; } }
.article-body h2 { font-family:var(--font-display); font-size:clamp(1.4rem,3vw,1.95rem); font-weight:800; letter-spacing:-.04em; margin:2.8rem 0 1rem; color:var(--ink); line-height:1.2; }
.article-body h3 { font-family:var(--font-display); font-size:1.12rem; font-weight:700; margin:2.2rem 0 .9rem; color:var(--ink); }
.article-body p { font-size:.93rem; color:var(--ink2); line-height:1.84; margin-bottom:1.2rem; }
.article-body ul,.article-body ol { margin:1rem 0 1.5rem 1.5rem; display:flex; flex-direction:column; gap:9px; }
.article-body li { font-size:.89rem; color:var(--ink2); line-height:1.72; }
.article-body strong { color:var(--ink); font-weight:700; }
.article-body a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.article-callout { background:var(--blue3); border-left:4px solid var(--blue); border-radius:0 var(--r) var(--r) 0; padding:22px 24px; margin:2.2rem 0; font-size:.89rem; color:var(--ink2); line-height:1.75; }
.article-callout strong { color:var(--blue); }
.article-cta-box { background:var(--ink); border-radius:var(--r-lg); padding:30px; margin:2.8rem 0; text-align:center; }
.article-cta-box h4 { font-family:var(--font-display); color:var(--white); font-size:1.12rem; font-weight:800; margin-bottom:9px; }
.article-cta-box p { font-size:.82rem; color:rgba(255,255,255,.5); margin-bottom:18px; }
.article-sidebar { position:sticky; top:104px; }
.sidebar-box { background:var(--off); border-radius:var(--r-lg); padding:26px; margin-bottom:22px; }
.sidebar-box h4 { font-family:var(--font-display); font-size:.9rem; font-weight:800; margin-bottom:16px; color:var(--ink); }
.sidebar-toc { display:flex; flex-direction:column; gap:9px; }
.sidebar-toc a { font-size:.78rem; color:var(--muted); text-decoration:none; padding-left:12px; border-left:2px solid var(--off3); transition:color .2s,border-color .2s; line-height:1.5; }
.sidebar-toc a:hover { color:var(--blue); border-left-color:var(--blue); }
.sidebar-cta-box { background:var(--ink); border-radius:var(--r-lg); padding:26px; text-align:center; }
.sidebar-cta-box p { font-size:.78rem; color:rgba(255,255,255,.45); margin-bottom:18px; line-height:1.65; }

/* ── CTA FINAL ── */
.cta-final {
  background:var(--ink); padding:112px 20px;
  position:relative; overflow:hidden; text-align:center;
}
.cta-final::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(18,70,240,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(124,58,237,.1) 0%, transparent 50%);
  pointer-events:none;
}
.cta-final::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  opacity:.4;
}
.cta-final > * { position:relative; z-index:1; }
.cta-final h2 { font-family:var(--font-display); font-size:clamp(2rem,6vw,4.2rem); font-weight:800; letter-spacing:-.055em; color:var(--white); margin-bottom:18px; line-height:1.04; }
.cta-final h2 span { color:var(--lime); }
.cta-final p { font-size:.93rem; color:rgba(255,255,255,.5); max-width:460px; margin:0 auto 40px; line-height:1.78; }
.cta-final-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ── */
footer {
  background:var(--ink2); padding:72px 24px 40px;
  position:relative; overflow:hidden;
}
footer::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(18,70,240,.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
}
footer > * { position:relative; z-index:1; }
.foot-grid { display:grid; grid-template-columns:1fr; gap:48px; margin-bottom:56px; }
@media (min-width:640px) { .foot-grid { grid-template-columns:1.8fr 1fr 1fr 1fr; gap:44px; } }
.foot-brand .logo { color:white; margin-bottom:16px; }
.foot-desc { font-size:.78rem; color:rgba(255,255,255,.38); line-height:1.8; max-width:250px; margin-bottom:22px; }
.foot-contact { display:flex; flex-direction:column; gap:9px; }
.foot-contact a { font-size:.78rem; color:rgba(255,255,255,.45); text-decoration:none; transition:color .2s; }
.foot-contact a:hover { color:rgba(255,255,255,.88); }
.foot-col h4 { font-family:var(--font-display); font-size:.73rem; font-weight:700; color:rgba(255,255,255,.28); text-transform:uppercase; letter-spacing:.13em; margin-bottom:18px; }
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.foot-col ul a { font-size:.78rem; color:rgba(255,255,255,.45); text-decoration:none; transition:color .2s; }
.foot-col ul a:hover { color:rgba(255,255,255,.88); }
.foot-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:28px; display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center; }
.foot-copy  { font-size:.72rem; color:rgba(255,255,255,.22); }
.foot-legal { display:flex; gap:20px; }
.foot-legal a { font-size:.72rem; color:rgba(255,255,255,.22); text-decoration:none; transition:color .2s; }
.foot-legal a:hover { color:rgba(255,255,255,.55); }

/* ── PAGE HERO (inner) ── */
.page-hero { background:var(--ink); padding:100px 20px 76px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 80% 30%, rgba(18,70,240,.18) 0%, transparent 60%); pointer-events:none; }
.page-hero h1 { font-family:var(--font-display); font-size:clamp(2rem,6vw,4.2rem); font-weight:800; letter-spacing:-.055em; color:var(--white); line-height:1.03; margin-bottom:18px; }
.page-hero h1 span { color:var(--lime); }
.page-hero p { font-size:.93rem; color:rgba(255,255,255,.52); max-width:580px; line-height:1.8; margin-bottom:30px; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.7rem; color:rgba(255,255,255,.28); margin-bottom:22px; }
.breadcrumb a { color:rgba(255,255,255,.45); text-decoration:none; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb sep { color:rgba(255,255,255,.18); }

/* ── METHODE STEPS ── */
.methode-steps { display:flex; flex-direction:column; gap:2px; }
.ms-item { background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:var(--transition); }
.ms-item:hover { border-color:rgba(18,70,240,.2); box-shadow:var(--shadow); }
.ms-trigger { width:100%; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; padding:24px 26px; gap:16px; text-align:left; }
.ms-trigger-l { display:flex; align-items:center; gap:18px; }
.ms-step-num { width:38px; height:38px; border-radius:50%; background:var(--blue3); color:var(--blue); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:.85rem; font-weight:800; flex-shrink:0; transition:var(--transition); }
.ms-item.open .ms-step-num { background:var(--blue); color:white; box-shadow:0 4px 16px rgba(18,70,240,.3); }
.ms-step-title { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--ink); letter-spacing:-.02em; }
.ms-time { font-size:.65rem; font-weight:600; color:var(--muted2); letter-spacing:.07em; text-transform:uppercase; margin-top:3px; }
.ms-chevron { width:30px; height:30px; background:var(--off2); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s,transform .35s; }
.ms-item.open .ms-chevron { background:var(--blue); transform:rotate(180deg); }
.ms-chevron svg { width:12px; height:12px; stroke:var(--muted); stroke-width:2.5; fill:none; }
.ms-item.open .ms-chevron svg { stroke:white; }
.ms-body { max-height:0; overflow:hidden; transition:max-height .42s var(--ease); }
.ms-body-inner { padding:0 26px 26px; padding-left:82px; }
.ms-body-inner p { font-size:.86rem; color:var(--muted); line-height:1.82; margin-bottom:14px; }
.ms-chips { display:flex; flex-wrap:wrap; gap:8px; }
.ms-chip { display:inline-flex; align-items:center; gap:5px; font-size:.7rem; font-weight:600; color:var(--ink); background:var(--off); border:1px solid var(--border); padding:5px 11px; border-radius:100px; }

/* ── OFFRES ── */
.offres-intro { display:grid; grid-template-columns:1fr; gap:44px; align-items:center; }
@media (min-width:900px) { .offres-intro { grid-template-columns:1fr 1fr; } }
.guarantee-grid { display:grid; grid-template-columns:1fr; gap:13px; }
@media (min-width:480px) { .guarantee-grid { grid-template-columns:1fr 1fr; } }
.guarantee-item { display:flex; align-items:flex-start; gap:13px; background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:18px; transition:transform .2s; }
.guarantee-item:hover { transform:translateX(4px); }
.guarantee-title { font-weight:700; font-size:.84rem; color:var(--ink); margin-bottom:3px; }
.guarantee-desc  { font-size:.75rem; color:var(--muted); line-height:1.65; }
.comp-table { width:100%; border-collapse:collapse; }
.comp-table th,.comp-table td { padding:15px 17px; text-align:left; border-bottom:1px solid var(--border); font-size:.83rem; }
.comp-table th { font-family:var(--font-display); font-size:.74rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.09em; background:var(--off); }
.comp-table th:not(:first-child),.comp-table td:not(:first-child) { text-align:center; }
.comp-table .check { color:var(--success); font-size:1rem; }
.comp-table .cross { color:#D1D5DB; font-size:1rem; }
.comp-table tr:last-child td { border-bottom:none; }
.comp-col-featured { background:rgba(18,70,240,.04); }

/* ── REALISATIONS ── */
.filter-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn { padding:9px 18px; border-radius:100px; font-size:.72rem; font-weight:700; cursor:pointer; border:1px solid var(--border); color:var(--muted); background:var(--white); transition:var(--transition); }
.filter-btn:hover,.filter-btn.active { background:var(--ink); color:white; border-color:var(--ink); }

/* ── WHATSAPP WIDGET ── */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:999; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.wa-btn { width:58px; height:58px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); cursor:pointer; transition:transform .25s var(--ease-spring),box-shadow .25s; text-decoration:none; border:none; }
.wa-btn:hover { transform:scale(1.12); box-shadow:0 8px 36px rgba(37,211,102,.55); }
.wa-btn svg { width:30px; height:30px; fill:white; }
.wa-bubble { background:white; border-radius:16px 16px 4px 16px; padding:15px 19px; box-shadow:0 8px 40px rgba(0,0,0,.15); max-width:268px; font-size:.82rem; line-height:1.58; color:var(--ink2); animation:waBubble .4s var(--ease); display:none; }
.wa-bubble.visible { display:block; }
.wa-bubble strong { display:block; font-family:var(--font-display); font-weight:700; margin-bottom:5px; }
.wa-bubble-close { position:absolute; top:-8px; right:-8px; width:22px; height:22px; border-radius:50%; background:var(--muted); color:white; border:none; cursor:pointer; font-size:.7rem; display:flex; align-items:center; justify-content:center; }
.wa-bubble-wrap { position:relative; }
@keyframes waBubble { from{opacity:0;transform:translateY(10px) scale(.95)} to{opacity:1;transform:translateY(0) scale(1)} }

/* ── FORM STATES ── */
.form-success { text-align:center; padding:52px 24px; }
.form-success-icon { width:72px; height:72px; border-radius:50%; background:rgba(34,197,94,.12); display:flex; align-items:center; justify-content:center; margin:0 auto 22px; font-size:2rem; }
.form-success h3 { font-family:var(--font-display); font-size:1.4rem; font-weight:800; margin-bottom:11px; }
.form-success p { color:var(--muted); font-size:.88rem; line-height:1.72; }
.form-group .field-hint { font-size:.72rem; color:var(--muted2); margin-top:5px; display:block; }
.form-group .field-error { font-size:.72rem; color:#DC2626; margin-top:5px; display:none; }
.form-group.has-error input,.form-group.has-error select,.form-group.has-error textarea { border-color:#EF4444; }
.form-group.has-error .field-error { display:block; }
.btn-send { position:relative; overflow:hidden; }
.btn-send.loading { pointer-events:none; opacity:.7; }
.btn-send.loading::after { content:''; position:absolute; right:16px; top:50%; transform:translateY(-50%); width:16px; height:16px; border:2px solid rgba(255,255,255,.35); border-top-color:white; border-radius:50%; animation:spin .7s linear infinite; }
@keyframes spin { to { transform:translateY(-50%) rotate(360deg); } }

/* ── SEO PAGES ── */
.city-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px; margin-top:26px; }
.city-pill { background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:11px 15px; font-size:.8rem; font-weight:600; color:var(--ink2); text-decoration:none; text-align:center; transition:var(--transition); display:flex; align-items:center; gap:7px; }
.city-pill:hover { border-color:var(--blue); color:var(--blue); background:var(--blue3); transform:translateY(-2px); }
.seo-alert { background:var(--blue3); border:1px solid rgba(18,70,240,.14); border-radius:var(--r-lg); padding:26px 30px; display:flex; gap:18px; align-items:flex-start; }
.seo-alert-title { font-family:var(--font-display); font-weight:700; font-size:.95rem; color:var(--blue); margin-bottom:7px; }
.seo-alert-text  { font-size:.83rem; color:var(--ink2); line-height:1.68; }

/* ── COOKIE BANNER ── */
.cookie-banner { position:fixed; bottom:0; left:0; right:0; background:var(--ink2); border-top:1px solid rgba(255,255,255,.08); padding:18px 28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; z-index:9999; font-size:.82rem; color:rgba(255,255,255,.6); transform:translateY(100%); transition:transform .38s var(--ease); }
.cookie-banner.visible { transform:translateY(0); }
.cookie-banner a { color:var(--lime); text-decoration:underline; }
.cookie-banner-btns { display:flex; gap:9px; flex-shrink:0; }
.cookie-accept { background:var(--lime); color:var(--ink); border:none; padding:9px 20px; border-radius:7px; font-weight:800; font-size:.82rem; cursor:pointer; transition:opacity .18s; }
.cookie-accept:hover { opacity:.88; }
.cookie-refuse { background:transparent; color:rgba(255,255,255,.45); border:1px solid rgba(255,255,255,.14); padding:9px 15px; border-radius:7px; font-size:.82rem; cursor:pointer; transition:color .18s,border-color .18s; }
.cookie-refuse:hover { color:white; border-color:rgba(255,255,255,.3); }

/* ── FLOATING CALL ── */
.floating-call { display:none; position:fixed; bottom:20px; right:20px; background:var(--lime); color:var(--ink); border-radius:100px; padding:14px 22px; font-weight:800; font-size:.88rem; text-decoration:none; box-shadow:0 8px 32px rgba(0,0,0,.22); z-index:500; transition:transform .2s,box-shadow .2s; gap:8px; align-items:center; }
.floating-call:hover { transform:translateY(-2px); box-shadow:0 14px 44px rgba(0,0,0,.28); }
@media (max-width:768px) { .floating-call { display:flex; } }

/* ── MISC ELEMENTS ── */
.metier-card { background:var(--off); border:1px solid var(--border); border-radius:var(--r); padding:15px 17px; font-size:.88rem; font-weight:600; text-align:center; color:var(--ink); transition:transform .2s,background .2s,border-color .2s; }
.metier-card:hover { transform:translateY(-2px); background:#EEF3FF; border-color:var(--blue); }
#market-badge { display:inline-flex; align-items:center; gap:6px; font-size:.72rem; font-weight:600; background:rgba(200,255,0,.12); border:1px solid rgba(200,255,0,.25); color:var(--lime); padding:5px 12px; border-radius:100px; margin-bottom:18px; }
.faq-hero { background:var(--ink); padding:100px 20px 76px; position:relative; overflow:hidden; }
.faq-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 50%, rgba(18,70,240,.18) 0%, transparent 60%); pointer-events:none; }
.login-wrap { background:var(--ink,#06060C)!important; min-height:100vh; }
.login-logo-sq { min-width:32px; min-height:32px; }
.nav-phone { display:inline-flex; align-items:center; gap:6px; font-size:.8rem; font-weight:600; color:rgba(255,255,255,.6); text-decoration:none; padding:6px 13px; border-radius:100px; border:1px solid rgba(255,255,255,.1); transition:var(--transition); white-space:nowrap; }
.nav-phone:hover { color:white; border-color:rgba(255,255,255,.28); background:var(--surface); }
@media (max-width:900px) { .nav-phone { display:none; } }

/* ── LEGAL CONTENT ── */
.legal-content h2 { font-family:var(--font-display); font-size:1.28rem; font-weight:700; margin:38px 0 13px; color:var(--ink); }
.legal-content p,.legal-content li { font-size:.93rem; color:var(--ink2); line-height:1.82; margin-bottom:13px; }
.legal-content ul { padding-left:22px; margin-bottom:18px; }
.legal-content a { color:var(--blue); text-decoration:underline; }

/* ── UTILITIES ── */
.text-center { text-align:center; }
.text-muted   { color:var(--muted); }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px}
.flex{display:flex} .flex-wrap{flex-wrap:wrap} .items-center{align-items:center} .justify-center{justify-content:center}
[id^="price-amount-"],[id^="price-note-"] { transition:opacity .2s; }
.price-amount-wrap { margin-bottom:26px; }

/* ── RESPONSIVE ── */
@media (max-width:640px) {
  .hide-mobile{display:none!important}
  .sec{padding:64px 0}
  .sec-lg{padding:80px 0}
}
@media (min-width:641px) { .hide-desktop{display:none!important} }

/* ── ACCESSIBILITY ── */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible {
  outline:3px solid var(--blue); outline-offset:3px; border-radius:4px;
}
.nav-cta:focus-visible { outline:3px solid white; outline-offset:3px; }
.burger:focus-visible  { outline:3px solid rgba(255,255,255,.7); outline-offset:4px; }

@media (prefers-contrast: more) {
  :root { --muted:#3A3A38; }
}
img[loading="lazy"] { will-change:auto; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .ticker-track { animation:none; }
}

/* ── PRINT ── */
@media print {
  .floating-call,.cookie-banner,#prog,.cursor-glow,.nav-cta,.burger,.mnav { display:none!important; }
  body { background:white; color:black; }
  a { color:black; text-decoration:underline; }
}

/* ══════════════════════════════════════════════════════════════════════
   V7 — Modern Dark Cinema · Glassmorphism · Plus Jakarta Sans
   UI/UX Pro Max: spring easing · ambient blobs · glass cards
   ══════════════════════════════════════════════════════════════════════ */

body { background: var(--body-bg); }

/* ── Ambient blob animation (UI/UX Pro Max: animated ambient light) ── */
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(.97); }
}
@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-25px, 20px) scale(1.04); }
  70%       { transform: translate(20px, -15px) scale(.98); }
}

/* ── Inner page heroes: deep dark cinema + glassmorphism blobs ── */
.hero,
.page-hero,
.contact-hero,
.blog-hero,
.faq-hero,
.article-hero,
.meth-hero,
.cw-hero,
.offres-hero {
  background: linear-gradient(145deg, var(--bg-deep) 0%, var(--bg-base) 50%, var(--bg-elevated) 100%) !important;
  position: relative; overflow: hidden;
}
/* Ambient blobs on all dark heroes */
.hero::after,
.page-hero::after,
.contact-hero::after,
.blog-hero::after,
.faq-hero::after,
.article-hero::after,
.meth-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 85% 35%, rgba(18,70,240,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(124,58,237,.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 5%,  rgba(77,124,255,.08) 0%, transparent 50%);
  animation: blob-drift 18s ease-in-out infinite;
  z-index: 0;
}

/* ── CTA final: dark cinema with blob ── */
.cta-final {
  background: linear-gradient(145deg, var(--bg-deep) 0%, #060818 50%, var(--bg-base) 100%) !important;
  position: relative; overflow: hidden;
}
.cta-final::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(18,70,240,.3) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 50%, rgba(124,58,237,.14) 0%, transparent 50%);
  animation: blob-drift-2 20s ease-in-out infinite;
}

/* ── Footer: deep dark ── */
footer { background: var(--bg-deep) !important; border-top: 1px solid var(--dborder) !important; }

/* ── Light hero (offres, faq, methode) ── */
.hero-light {
  background: linear-gradient(145deg, #F8FAFF 0%, #EFF4FF 55%, #F5F8FF 100%);
  border-bottom: 1px solid rgba(18,70,240,.08);
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
.hero-light::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 85% 50%, rgba(18,70,240,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(124,58,237,.05) 0%, transparent 55%);
}
.hero-light h1 { color: var(--bg-deep); letter-spacing: -.05em; }
.hero-light p  { color: var(--muted); }

/* ── Page badge (kicker pill) ── */
.page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,70,240,.08); border: 1px solid rgba(18,70,240,.18);
  color: var(--blue); border-radius: 100px;
  padding: 6px 16px; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 22px;
}
.page-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(18,70,240,.2);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(18,70,240,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(18,70,240,.08); }
}
.page-badge-lime { background: rgba(200,255,0,.1); border-color: rgba(200,255,0,.3); color: #5C7A00; }

/* ── Glassmorphism cards (UI/UX Pro Max: backdrop-filter blur) ── */
.svc-card, .testi-card, .real-card, .price-card,
.plan-card, .bundle-card, .proc-step, .guarantee-item {
  box-shadow: 0 2px 20px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.03);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-card:hover    { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(18,70,240,.13); border-color: rgba(18,70,240,.18) !important; }
.testi-card:hover  { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,.11); }
.real-card:hover   { transform: translateY(-4px); box-shadow: 0 20px 52px rgba(0,0,0,.12); }
.plan-card:hover   { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(18,70,240,.14); }
.proc-step:hover   { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(18,70,240,.12); }

/* ── Nav: glassmorphism blur ── */
nav { backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); }

/* ── Floating glass info rows ── */
.info-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.info-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 9px 18px;
  font-size: .78rem; color: rgba(255,255,255,.82); font-weight: 500;
}
.info-chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  flex-shrink: 0;
}
.info-chip.blue { background: rgba(18,70,240,.12); border-color: rgba(18,70,240,.22); color: var(--blue); }
.info-chip.lime { background: rgba(200,255,0,.1); border-color: rgba(200,255,0,.25); color: #7A9A00; }

/* ── Modern feature list items ── */
.feat-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .86rem; color: var(--ink2); line-height: 1.6; margin-bottom: 12px;
}
.feat-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(18,70,240,.1);
  display: flex; align-items: center; justify-content: center;
}
.feat-check svg { width: 11px; height: 11px; stroke: var(--blue); stroke-width: 2.5; fill: none; }

/* ── Gradient divider ── */
.grad-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(18,70,240,.18) 30%, rgba(18,70,240,.18) 70%, transparent);
  margin: 0;
}

/* ── Number highlight boxes ── */
.num-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  text-align: center; transition: var(--transition);
}
.num-box:hover { border-color: rgba(18,70,240,.3); box-shadow: 0 8px 32px rgba(18,70,240,.08); }
.num-box-val {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 800; letter-spacing: -.055em;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.num-box-lbl { font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .03em; }

/* ── Step connector timeline ── */
.step-connector {
  display: flex; flex-direction: column; gap: 2px;
}
.step-conn-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: var(--transition); position: relative; overflow: hidden;
}
.step-conn-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--lime));
  opacity: 0; transition: opacity .3s;
}
.step-conn-item:hover { border-color: rgba(18,70,240,.2); box-shadow: var(--shadow-lg); }
.step-conn-item:hover::before { opacity: 1; }
.step-conn-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue3); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .9rem; font-weight: 800;
  transition: var(--transition);
}
.step-conn-item:hover .step-conn-num { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(18,70,240,.3); }
.step-conn-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.step-conn-desc  { font-size: .82rem; color: var(--muted); line-height: 1.72; }
.step-conn-time  {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 8px;
  font-size: .65rem; font-weight: 700; color: var(--blue); letter-spacing: .09em;
  text-transform: uppercase; background: var(--blue3); padding: 3px 10px; border-radius: 100px;
}

/* ── Glass dark cards (engage section improved) ── */
.engage-item {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: var(--r-lg) !important;
}
.engage-item:hover {
  background: rgba(255,255,255,.065) !important;
  border-color: rgba(255,255,255,.16) !important;
}

/* ── Testimonial tweak: quote mark color ── */
.testi-card::before { color: var(--off3) !important; font-size: 4.5rem !important; }

/* ── Blog card tweak ── */
.blog-card { border-radius: var(--r-xl) !important; }
.blog-card:hover { border-color: rgba(18,70,240,.18) !important; }

/* ── Filter buttons ── */
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--blue2)) !important;
  border-color: transparent !important;
  color: white !important;
}

/* ── FAQ accordion: larger hit area (44px min, UI/UX Pro Max) ── */
.fi-q { padding: 20px 24px !important; min-height: 44px; cursor:pointer; }
.fi-item.open .fi-a-inner { padding: 0 24px 24px !important; }

/* ── Breadcrumb light context ── */
.breadcrumb-lgt { color: var(--muted2); margin-bottom: 22px; }
.breadcrumb-lgt a { color: var(--muted); text-decoration: none; }
.breadcrumb-lgt a:hover { color: var(--blue); }
.breadcrumb-lgt sep { color: var(--off3); }

/* ── Social proof bar ── */
.proof-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  padding: 22px 28px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
}
.proof-item { display: flex; align-items: center; gap: 9px; }
.proof-num  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; }
.proof-lbl  { font-size: .73rem; color: rgba(255,255,255,.48); line-height: 1.4; }

/* ── Shimmer loading (for images) ── */
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--off) 25%, var(--off2) 50%, var(--off) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

/* ── Scroll-reveal from right ── */
.fi-r {
  opacity: 0; transform: translateX(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fi-r.in { opacity: 1; transform: translateX(0); }

/* ── Highlight mark inside headings ── */
.mark-bg {
  background: linear-gradient(135deg, rgba(200,255,0,.3), rgba(200,255,0,.1));
  border-radius: 4px; padding: 0 8px;
  -webkit-text-fill-color: var(--ink) !important;
  color: var(--ink);
}

/* ── Process connector (homepage) improved ── */
.process-connector { width: 2px; height: 20px; background: linear-gradient(180deg, var(--blue3), transparent); margin: 0 auto; }

/* ── Better mobile spacing ── */
@media (max-width: 640px) {
  .hero-light { padding: 100px 0 60px; }
  .proof-bar  { gap: 16px; padding: 18px 20px; }
}

/* ── Hover underline animation for text links ── */
.link-anim {
  position: relative; text-decoration: none; color: var(--blue);
  display: inline-block;
}
.link-anim::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--blue);
  transition: width .25s var(--ease); border-radius: 2px;
}
.link-anim:hover::after { width: 100%; }

/* ── Price emphasis highlight ── */
.price-hl {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.04em;
}
.price-hl .currency { font-size: 55%; color: var(--muted); font-weight: 400; margin-bottom: 4px; }

/* ── Reduced motion: keep V6 additions clean ── */
@media (prefers-reduced-motion: reduce) {
  .shimmer { animation: none; background: var(--off); }
}

/* ══════════════════════════════════════════════════════════════════════
   V7.1 — Design & Ergonomie améliorés : mobile-first · spacing · UX
   ══════════════════════════════════════════════════════════════════════ */

/* ── Typography enhancements ── */
h1, h2, h3 { letter-spacing: -.03em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }
p  { line-height: 1.72; }

/* ── Better container on mobile ── */
@media (max-width: 640px) {
  .w, .w-sm { padding: 0 18px; }
  .sec    { padding: 64px 0; }
  .sec-sm { padding: 44px 0; }
  .sec-lg { padding: 80px 0; }
}

/* ── Section headers (sh) improved ── */
.sh { max-width: 680px; margin-bottom: 56px; }
.sh h2 { margin-bottom: 14px; }
.sh p  { font-size: 1.05rem; line-height: 1.7; color: var(--muted); }
.sh.center { text-align: center; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .sh { margin-bottom: 40px; } }

/* ── Kicker pill (section label) ── */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.kicker-line { width: 28px; height: 2px; background: currentColor; border-radius: 2px; }

/* ── Hero layout: full-height with padding guard ── */
.hero { min-height: 100svh; padding-top: 120px; padding-bottom: 80px; }
@media (max-width: 768px) { .hero { min-height: unset; padding: 100px 0 60px; } }

/* ── Hero inner: 2-col on desktop, stacked on mobile ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1fr 420px; } }

/* ── Hero text ── */
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.05em; line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,.65); line-height: 1.75;
  max-width: 540px; margin-bottom: 32px;
}

/* ── CTAs row ── */
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { justify-content: center; }
}

/* ── Buttons: improve mobile touch targets ── */
.btn-lime, .btn-blue, .btn-blk, .btn-bdr, .btn-wbdr {
  min-height: 52px; padding: 14px 28px;
  font-size: .92rem; border-radius: var(--r);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn-lime, .btn-blue, .btn-blk { padding: 15px 24px; font-size: .88rem; }
}

/* ── Card grids: responsive ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
@media (min-width: 960px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Service card: cursor fix ── */
.svc-card { cursor: pointer; }

/* ── Footer: better mobile layout ── */
.foot-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px; padding: 64px 0 48px;
}
@media (min-width: 640px)  { .foot-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .foot-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-brand .logo { margin-bottom: 16px; }
.foot-desc { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 20px; }
.foot-contact { display: flex; flex-direction: column; gap: 6px; }
.foot-contact a { font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.foot-contact a:hover { color: var(--white); }
.foot-col-title { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.foot-col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col li a { font-size: .82rem; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; }
.foot-col li a:hover { color: rgba(255,255,255,.9); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--dborder);
  padding: 24px 0 32px;
  font-size: .76rem; color: rgba(255,255,255,.28);
}
.foot-legal { display: flex; gap: 16px; }
.foot-legal a { color: rgba(255,255,255,.28); text-decoration: none; }
.foot-legal a:hover { color: rgba(255,255,255,.6); }
@media (max-width: 480px) {
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Floating WhatsApp button: better mobile ── */
.floating-call {
  position: fixed; bottom: 24px; right: 20px; z-index: 300;
  background: #25D366; color: white;
  font-weight: 700; font-size: .8rem;
  padding: 12px 20px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s;
  display: flex; align-items: center; gap: 8px;
}
.floating-call:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 48px rgba(37,211,102,.5); }
@media (max-width: 480px) { .floating-call { bottom: 16px; right: 14px; padding: 11px 16px; font-size: .75rem; } }

/* ── Scroll-reveal: stagger helpers ── */
.d7  { transition-delay:.56s!important; }
.d8  { transition-delay:.64s!important; }
.d9  { transition-delay:.72s!important; }
.d10 { transition-delay:.80s!important; }

/* ── Focus rings: accessibilité ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Nav active state stronger ── */
.nav-links a.active, .nav-links a[aria-current] {
  color: var(--white) !important;
  font-weight: 600;
}
.nav-links a.active::after, .nav-links a[aria-current]::after {
  width: 100% !important;
  background: var(--blue) !important;
}

/* ── Price highlight ── */
.price-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800; letter-spacing: -.06em; line-height: 1;
  color: var(--white);
}
.price-currency { font-size: 40%; font-weight: 400; color: rgba(255,255,255,.45); vertical-align: super; }
.price-period   { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ── Gradient text utility ── */
.g-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--electric) 50%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.g-text-lime {
  background: linear-gradient(135deg, var(--lime) 0%, #9FFF40 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Horizontal rule with gradient ── */
hr.grad {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 30%, var(--border2) 70%, transparent);
  margin: 0;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(6,6,14,.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--dborder2);
  padding: 16px 24px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.cookie-banner a { color: var(--blue); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept {
  background: var(--blue); color: white; border: none;
  padding: 9px 20px; border-radius: 8px; font-weight: 700;
  font-size: .8rem; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition-fast);
}
.cookie-accept:hover { background: var(--blue2); }
.cookie-refuse {
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid var(--dborder); padding: 9px 16px;
  border-radius: 8px; font-size: .8rem; cursor: pointer;
  font-family: var(--font-body); transition: var(--transition-fast);
}
.cookie-refuse:hover { color: white; border-color: var(--dborder2); }

/* ══════════════════════════════════════════════════════════════════════
   V7.2 — Mobile-first optimisation · Touch targets · Overflow fixes
   ══════════════════════════════════════════════════════════════════════ */

/* ── Prevent horizontal scroll globally ── */
html, body { overflow-x: hidden; }

/* ── Hero eyebrow: stack on small screens ── */
@media (max-width: 500px) {
  .hero-eyebrow { flex-wrap: wrap; gap: 8px; }
  .hero-geo-tag { font-size: .65rem; line-height: 1.5; }
}

/* ── Price hero badge: full width on very small screens ── */
@media (max-width: 420px) {
  .price-hero-badge { width: 100%; }
}

/* ── Tabs wrap (offres page): scrollable on mobile ── */
.tabs-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-wrap::-webkit-scrollbar { display: none; }
@media (max-width: 600px) {
  .tabs-wrap { border-radius: var(--r); padding: 4px; }
  .tab-btn   { padding: 10px 18px; font-size: .78rem; }
}

/* ── Mobile nav: 44px+ touch targets ── */
.mnav a { min-height: 52px; display: flex; align-items: center; }

/* ── Mobile hero: reduce excessive padding ── */
@media (max-width: 480px) {
  .hero { padding-top: 88px; padding-bottom: 52px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 18px; }
  .hero-sub { font-size: .9rem; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; }
  .hero-trust { gap: 10px; font-size: .68rem; }
}

/* ── Inner page heroes: better mobile spacing ── */
@media (max-width: 480px) {
  .page-hero, .cw-hero, .offres-hero, .faq-hero, .meth-hero, .blog-hero, .article-hero {
    padding-top: 96px !important;
    padding-bottom: 52px !important;
  }
  .hero-light { padding: 96px 0 52px; }
}

/* ── Section headers: smaller on mobile ── */
@media (max-width: 480px) {
  .sh { margin-bottom: 32px; }
  .sh h2 { font-size: clamp(1.5rem, 8vw, 2rem); }
}

/* ── Why cards: single column on mobile (already auto-fit but ensure) ── */
@media (max-width: 480px) {
  .why-card { padding: 24px 20px; }
}

/* ── Stats grid: 2x2 on mobile, 4 cols on tablet+ ── */
.stats-grid {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Process steps: single column on very small screens ── */
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .proc-step { padding: 20px; }
}

/* ── Service cards: full width on very small phones ── */
@media (max-width: 360px) {
  .svc-grid { grid-template-columns: 1fr !important; }
}

/* ── Pricing cards: ensure readable on mobile ── */
@media (max-width: 480px) {
  .plan-card { padding: 24px 20px; }
  .plan-price { font-size: 2.2rem; }
  .bundle-card { padding: 22px 18px; }
}

/* ── Offres site-card: better mobile ── */
@media (max-width: 480px) {
  .site-card-top { padding: 20px 20px 0 !important; }
  .site-desc-box { margin: 14px 20px !important; }
  .site-includes { padding: 0 20px 20px !important; }
  .site-cta-row  { padding: 0 20px 20px !important; }
  .site-price-main { font-size: clamp(2.2rem, 12vw, 3.5rem); }
}

/* ── FAQ stats: 2x2 grid on mobile ── */
@media (max-width: 560px) {
  .faq-stats { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq-stat  { min-width: unset; padding: 16px 14px; }
  .faq-stat-num { font-size: 1.4rem; }
}

/* ── Hero performance panel: hide on mobile, show on tablet+ ── */
@media (max-width: 700px) {
  .hero-panel { display: none; }
}

/* ── Proof bar: compact on mobile ── */
@media (max-width: 480px) {
  .proof-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .proof-item { gap: 8px; }
}

/* ── Cookie banner: stack on mobile ── */
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-banner-btns { width: 100%; }
  .cookie-accept, .cookie-refuse { flex: 1; text-align: center; padding: 12px; }
}

/* ── CTA final section: better mobile ── */
@media (max-width: 480px) {
  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}

/* ── Forms: better mobile touch ── */
@media (max-width: 640px) {
  .form-group input, .form-group textarea, .form-group select {
    font-size: 16px; /* Prevents iOS auto-zoom */
    min-height: 48px;
  }
  .form-group textarea { min-height: 120px; }
}

/* ── Floating WhatsApp: safe area on modern phones ── */
.floating-call {
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
}

/* ── Typography: prevent overflow on long words ── */
h1, h2, h3, h4, p { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }

/* ── Images: prevent overflow ── */
img, svg, video { max-width: 100%; height: auto; }

/* ── Navigation: safe area top ── */
.nav { padding-top: max(16px, env(safe-area-inset-top)); }

/* ── Breadcrumb: smaller on mobile ── */
@media (max-width: 480px) {
  .breadcrumb { font-size: .72rem !important; }
}
