/* ══════════════════════════════════════════════════════
   MikahPOS — Site vitrine
   Design: moderne · épuré · minimaliste · conversion
   Marque: burgundy (icône) + bleu produit · Sora / Inter
   ══════════════════════════════════════════════════════ */

:root {
  /* Brand (depuis l'icône MikahPOS) */
  --brand:        #6d1322;
  --brand-deep:   #4a0c17;
  --brand-700:    #5a1020;
  --brand-soft:   #fbeef0;
  --brand-tint:   #fdf6f4;

  /* Accent produit (UI de l'app) */
  --blue:         #3b82f6;
  --blue-light:   #60a5fa;
  --green:        #10b981;
  --orange:       #f59e0b;
  --red:          #ef4444;
  --purple:       #8b5cf6;

  /* Neutres chauds */
  --ink:          #1a1416;
  --ink-2:        #4a4145;
  --muted:        #837a7e;
  --line:         #e3d7d4;
  --line-2:       #efe7e5;
  --bg:           #ffffff;
  --bg-soft:      #f5ece9;
  --bg-tint:      #fbf3f2;

  /* Thème "app" (screenshots fidèles à l'application) */
  --a-bg:        #0a0f1e;
  --a-bg-2:      #0f172a;
  --a-card:      #1a2540;
  --a-elev:      #1e2d45;
  --a-hover:     #243352;
  --a-border:    #243352;
  --a-border-l:  #2d3f5e;
  --a-text:      #f0f6ff;
  --a-text-2:    #8fa3c8;
  --a-muted:     #506080;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(26,20,22,.06), 0 2px 8px rgba(26,20,22,.05);
  --shadow-card: 0 1px 3px rgba(26,20,22,.05), 0 12px 28px -16px rgba(26,20,22,.20);
  --shadow:    0 10px 30px -12px rgba(26,20,22,.18);
  --shadow-lg: 0 30px 70px -25px rgba(26,20,22,.32);
  --shadow-app:0 40px 90px -30px rgba(8,12,28,.55);

  --font:      'Inter', system-ui, sans-serif;
  --display:   'Sora', 'Inter', sans-serif;
  --mono:      'JetBrains Mono', monospace;

  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container.narrow { max-width: 820px; }

/* ─────────────── Typo helpers ─────────────── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.g { color: var(--green) !important; }
.o { color: var(--orange) !important; }
.r { color: var(--red) !important; }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 12px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 22px -8px rgba(109,19,34,.6); }
.btn-primary:hover { background: var(--brand-700); box-shadow: 0 12px 30px -8px rgba(109,19,34,.7); transform: translateY(-1px); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--brand-soft); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }
.btn-block { width: 100%; }

/* ─────────────── Header ─────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.72); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px -16px rgba(26,20,22,.3); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand-name { font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.brand-name span { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────── Hero ─────────────── */
.hero { position: relative; padding: 142px 0 70px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; right: -180px; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109,19,34,.10), rgba(59,130,246,.06) 45%, transparent 70%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; font-family: var(--display);
  color: var(--brand); background: var(--brand-soft);
  padding: 7px 14px; border-radius: 99px; margin-bottom: 22px; letter-spacing: .01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.2); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.45} }

.hero-title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; }
.hero-title .grad { background: linear-gradient(100deg, var(--brand), #b13a4d 60%, var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: var(--ink-2); margin: 22px 0 30px; max-width: 540px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.ico-check { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Floating cards on hero visual */
.hero-visual { position: relative; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 15px;
  box-shadow: var(--shadow); z-index: 3;
}
.float-card b { font-family: var(--display); font-size: 15px; display: block; line-height: 1.1; }
.float-card em { font-style: normal; font-size: 11.5px; color: var(--muted); }
.fc-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; font-weight: 700; }
.fc-ico.ok { background: rgba(16,185,129,.12); color: var(--green); }
.fc-ico.bl { background: rgba(59,130,246,.12); color: var(--blue); }
.fc-1 { top: 22px; left: -26px; animation: floaty 5s ease-in-out infinite; }
.fc-2 { bottom: 30px; right: -22px; animation: floaty 6s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* Trust strip */
.trust-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 30px;
  margin-top: 64px; padding: 22px 28px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 18px;
}
.ts-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ts-item b { font-family: var(--display); font-size: 20px; color: var(--brand); letter-spacing: -.02em; }
.ts-item span { font-size: 12.5px; color: var(--muted); }
.ts-sep { width: 1px; height: 30px; background: var(--line); }

/* ─────────────── Sections ─────────────── */
.section { padding: 96px 0; position: relative; }
.section-tint { background: var(--bg-soft); }
.section-dark { background: radial-gradient(120% 100% at 50% 0%, #11182e, #0a0f1e); color: var(--a-text); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
  background: var(--brand-soft); padding: 6px 14px; border-radius: 99px; margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(27px, 3.6vw, 40px); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--ink-2); }
.section-head.on-dark h2 { color: var(--a-text); }
.section-head.on-dark p { color: var(--a-text-2); }
.section-head.on-dark .kicker { background: rgba(59,130,246,.14); color: var(--blue-light); }

/* ─────────────── Value props ─────────────── */
.vp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.vp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-soft); }
.vp-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-tint); display: grid; place-items: center; margin-bottom: 18px; }
.vp-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--brand); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.vp-card h3 { font-size: 18px; margin-bottom: 8px; }
.vp-card p { font-size: 14.5px; color: var(--ink-2); }

/* ─────────────── Feature rows ─────────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1.12fr; gap: 60px; align-items: center; margin-top: 64px; }
.feature-row.reverse .feature-text { order: 2; }
.feat-tag {
  display: inline-block; font-family: var(--display); font-weight: 600; font-size: 12.5px;
  color: var(--blue); background: rgba(59,130,246,.1); padding: 5px 12px; border-radius: 8px; margin-bottom: 16px;
}
.feature-text h3 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 14px; }
.feature-text > p { font-size: 16.5px; color: var(--ink-2); margin-bottom: 22px; }
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-list li { position: relative; padding-left: 30px; font-size: 15px; font-weight: 500; color: var(--ink); }
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 7px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1322' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ═══════════ Browser frame (screenshots) ═══════════ */
.browser-frame {
  border-radius: 16px; overflow: hidden; background: var(--a-bg-2);
  border: 1px solid rgba(255,255,255,.06); box-shadow: var(--shadow-app); position: relative; z-index: 2;
}
.browser-frame.compact { box-shadow: var(--shadow-lg); }
.browser-bar { display: flex; align-items: center; gap: 12px; padding: 11px 15px; background: #131c30; border-bottom: 1px solid rgba(255,255,255,.05); }
.browser-bar .dots { display: flex; gap: 7px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: #2d3f5e; }
.browser-bar .dots i:nth-child(1){ background:#ef4444aa; } .browser-bar .dots i:nth-child(2){ background:#f59e0baa; } .browser-bar .dots i:nth-child(3){ background:#10b981aa; }
.browser-url { font-size: 12px; color: var(--a-muted); font-family: var(--display); }
/* Couleur de texte par défaut pour toutes les captures (thème sombre app) */
.browser-body, .app-shot, .pos-shot, .report-shot, .table-shot, .client-shot, .mcaisse { color: var(--a-text); }

/* ═══════════ App shot — reproduction fidèle UI ═══════════ */
.app-shot { display: grid; grid-template-columns: 168px 1fr; background: var(--a-bg); color: var(--a-text); font-size: 11px; min-height: 372px; }
.app-shot-lg { min-height: 440px; grid-template-columns: 188px 1fr; font-size: 12px; }

.app-sidebar { background: var(--a-bg-2); border-right: 1px solid var(--a-border); padding: 14px 12px; display: flex; flex-direction: column; }
.app-logo { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--a-text); margin-bottom: 12px; }
.app-logo-mark { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--blue), var(--purple)); flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.06); }
.app-shop { font-size: 10.5px; color: var(--a-text-2); padding: 8px 10px; background: var(--a-card); border-radius: 8px; margin-bottom: 12px; font-weight: 600; }
.app-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.app-nav span { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; color: var(--a-text-2); font-weight: 500; }
.app-nav span.active { background: rgba(59,130,246,.14); color: var(--blue-light); font-weight: 600; }
.app-nav .nv { width: 14px; height: 14px; border-radius: 4px; background: currentColor; opacity: .55; flex-shrink: 0; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; }
.app-nav span.active .nv { opacity: 1; }
.nv-dash{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='9'/%3E%3Crect x='14' y='3' width='7' height='5'/%3E%3Crect x='14' y='12' width='7' height='9'/%3E%3Crect x='3' y='16' width='7' height='5'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='9'/%3E%3Crect x='14' y='3' width='7' height='5'/%3E%3Crect x='14' y='12' width='7' height='9'/%3E%3Crect x='3' y='16' width='7' height='5'/%3E%3C/svg%3E"); }
.nv-cart{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); }
.nv-box{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.7l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.7l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.7l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.7l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3C/svg%3E"); }
.nv-ware{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 8.3V21H2V8.3L12 3z'/%3E%3Crect x='7' y='13' width='10' height='8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 8.3V21H2V8.3L12 3z'/%3E%3Crect x='7' y='13' width='10' height='8'/%3E%3C/svg%3E"); }
.nv-users{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.9'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.9'/%3E%3C/svg%3E"); }
.nv-chart{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cline x1='12' y1='20' x2='12' y2='10'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='16'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cline x1='12' y1='20' x2='12' y2='10'/%3E%3Cline x1='18' y1='20' x2='18' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='16'/%3E%3C/svg%3E"); }
.nv-down{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='23 18 13.5 8.5 8.5 13.5 1 6'/%3E%3Cpolyline points='17 18 23 18 23 12'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolyline points='23 18 13.5 8.5 8.5 13.5 1 6'/%3E%3Cpolyline points='17 18 23 18 23 12'/%3E%3C/svg%3E"); }
.nv-badge { margin-left: auto; font-size: 8.5px; font-weight: 700; background: rgba(59,130,246,.2); color: var(--blue-light); padding: 2px 6px; border-radius: 5px; font-style: normal; }

.app-user { display: flex; align-items: center; gap: 9px; padding: 9px; border-radius: 9px; background: var(--a-card); margin-top: 10px; }
.app-user .ava { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--brand), #a13247); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px; }
.u-meta { display: flex; flex-direction: column; line-height: 1.25; }
.u-meta b { font-size: 11px; } .u-meta em { font-style: normal; font-size: 9.5px; color: var(--orange); }

.app-main { padding: 16px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.app-topbar { display: flex; align-items: flex-start; justify-content: space-between; }
.app-h1 { font-family: var(--display); font-weight: 800; font-size: 16px; }
.app-sub { font-size: 10.5px; color: var(--a-text-2); }
.app-actions { display: flex; gap: 8px; }
.pill { font-size: 10.5px; padding: 6px 11px; border-radius: 8px; border: 1px solid var(--a-border-l); color: var(--a-text-2); font-weight: 600; }
.pill-primary { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 16px rgba(59,130,246,.4); }

.app-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 11px; padding: 12px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 3px; }
.kpi::before { content:""; position:absolute; inset: 0 0 auto 0; height: 3px; }
.kpi.b-accent::before{ background: var(--blue); } .kpi.b-success::before{ background: var(--green); } .kpi.b-warning::before{ background: var(--orange); } .kpi.b-danger::before{ background: var(--red); }
.k-l { font-size: 9px; text-transform: uppercase; letter-spacing: .06em; color: var(--a-muted); font-weight: 700; }
.k-v { font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1; }
.k-v.mono { font-family: var(--mono); }
.k-v em { font-style: normal; font-size: 10px; color: var(--a-text-2); font-weight: 600; }
.k-s { font-size: 9.5px; color: var(--a-text-2); }
.k-s.link { color: var(--blue-light); }

.app-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.app-card { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 12px; padding: 13px; }
.ac-head { font-family: var(--display); font-weight: 700; font-size: 12px; margin-bottom: 10px; }
.chart-area { width: 100%; height: 78px; display: block; }
.chart-x { display: flex; justify-content: space-between; margin-top: 5px; }
.chart-x span { font-size: 8.5px; color: var(--a-muted); }

.donut-wrap { display: flex; align-items: center; gap: 14px; }
.donut { width: 92px; height: 92px; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 5; }
.donut .d-bg { stroke: var(--a-bg-2); }
.legend { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.legend li { display: flex; align-items: center; gap: 7px; font-size: 10px; color: var(--a-text-2); }
.legend li i { width: 8px; height: 8px; border-radius: 50%; }
.legend li b { margin-left: auto; color: var(--a-text); font-size: 10.5px; }

.top-prod { display: flex; flex-direction: column; gap: 9px; }
.top-prod li { display: flex; align-items: center; gap: 10px; }
.top-prod li b { width: 17px; text-align: center; color: var(--a-muted); font-size: 11px; }
.top-prod li span { flex: 1; font-size: 11px; font-weight: 600; }
.top-prod li em { font-style: normal; font-size: 11px; color: var(--blue-light); font-weight: 700; }

/* POS shot */
.pos-shot { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; background: var(--a-bg); min-height: 340px; }
.pos-left { padding: 14px; border-right: 1px solid var(--a-border); }
.pos-search { background: var(--a-bg-2); border: 1px solid var(--a-border); border-radius: 9px; padding: 10px 12px; font-size: 11px; color: var(--a-muted); margin-bottom: 10px; }
.pos-cats { display: flex; gap: 7px; margin-bottom: 12px; flex-wrap: wrap; }
.pos-cats span { font-size: 10.5px; padding: 5px 11px; border-radius: 8px; border: 1px solid var(--a-border); color: var(--a-text-2); font-weight: 600; }
.pos-cats span.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.pos-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.pp { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 10px; padding: 11px 9px; display: flex; flex-direction: column; gap: 4px; transition: border-color .2s; }
.pp:hover { border-color: var(--blue); }
.pp-emo { font-size: 21px; }
.pp b { font-size: 10.5px; font-weight: 600; line-height: 1.25; }
.pp em { font-style: normal; font-size: 11px; color: var(--blue-light); font-weight: 700; font-family: var(--mono); }

.pos-cart { padding: 14px; display: flex; flex-direction: column; background: var(--a-bg-2); }
.pc-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.pc-head span { font-size: 10px; color: var(--a-muted); font-weight: 600; }
.pc-line { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--a-border); font-size: 11px; }
.pc-line span { color: var(--a-text); } .pc-line b { color: var(--a-text-2); font-size: 10px; } .pc-line em { font-style: normal; font-family: var(--mono); font-weight: 700; }
.pc-tot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; }
.pc-tot span { font-family: var(--display); font-weight: 700; font-size: 13px; }
.pc-tot b { font-family: var(--mono); font-weight: 800; font-size: 18px; color: var(--a-text); }
.pc-pay { margin-top: 12px; background: var(--green); color: #fff; text-align: center; padding: 12px; border-radius: 10px; font-family: var(--display); font-weight: 700; font-size: 13px; box-shadow: 0 0 20px rgba(16,185,129,.35); }

/* Report shot */
.report-shot { padding: 16px; background: var(--a-bg); display: flex; flex-direction: column; gap: 14px; min-height: 340px; }
.rep-tabs { display: flex; gap: 7px; }
.rep-tabs span { font-size: 11px; padding: 7px 13px; border-radius: 8px; color: var(--a-text-2); font-weight: 600; border: 1px solid transparent; }
.rep-tabs span.active { background: var(--a-card); color: var(--a-text); border-color: var(--a-border-l); }
.rep-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.rep-kpis div { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 10px; padding: 12px; }
.rep-kpis em { font-style: normal; display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--a-muted); font-weight: 700; margin-bottom: 5px; }
.rep-kpis b { font-family: var(--mono); font-size: 15px; font-weight: 800; }
.rep-bars { position: relative; flex: 0 0 auto; display: flex; align-items: flex-end; gap: 10px; padding: 16px 14px; background: var(--a-card); border: 1px solid var(--a-border); border-radius: 11px; height: 156px; background-image: repeating-linear-gradient(to top, transparent, transparent 32px, rgba(255,255,255,.04) 32px, rgba(255,255,255,.04) 33px); }
.rep-bars span { flex: 1; height: var(--h); min-height: 6px; align-self: flex-end; background: linear-gradient(to top, var(--blue), var(--blue-light)); border-radius: 5px 5px 0 0; opacity: .92; box-shadow: 0 0 12px rgba(59,130,246,.25); }
.rep-bars span:nth-child(odd) { background: linear-gradient(to top, #1d4ed8, var(--blue)); }
.rep-foot { display: flex; gap: 9px; }
.rep-foot span { font-size: 11px; padding: 9px 14px; border-radius: 9px; background: var(--a-card); border: 1px solid var(--a-border); color: var(--a-text-2); font-weight: 600; }

/* Table shot */
.table-shot { padding: 14px; background: var(--a-bg); min-height: 340px; }
.ts-toolbar { display: flex; gap: 8px; margin-bottom: 12px; align-items: center; }
.ts-search { flex: 1; background: var(--a-bg-2); border: 1px solid var(--a-border); border-radius: 9px; padding: 9px 12px; font-size: 11px; color: var(--a-muted); }
.ts-btn { font-size: 11px; padding: 9px 13px; border-radius: 9px; background: var(--blue); color: #fff; font-weight: 600; }
.ts-btn.ghost { background: transparent; border: 1px solid var(--a-border-l); color: var(--a-text-2); }
.prod-table { width: 100%; border-collapse: collapse; }
.prod-table th { text-align: left; font-size: 9.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--a-text-2); font-weight: 700; padding: 9px 10px; background: var(--a-bg-2); border-bottom: 1px solid var(--a-border); }
.prod-table th:first-child { border-radius: 8px 0 0 0; } .prod-table th:last-child { border-radius: 0 8px 0 0; }
.prod-table td { padding: 11px 10px; border-bottom: 1px solid var(--a-border); font-size: 11.5px; }
.prod-table tr:last-child td { border-bottom: 0; }
.prod-table td.mono { font-family: var(--mono); color: var(--a-text-2); }
.prod-table td.g { color: var(--green); font-weight: 700; }
.chip { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 99px; font-family: var(--mono); }
.chip.ok { background: rgba(16,185,129,.14); color: var(--green); }
.chip.low { background: rgba(245,158,11,.16); color: var(--orange); }
.chip.out { background: rgba(239,68,68,.16); color: var(--red); }

/* Client shot */
.client-shot { padding: 16px; background: var(--a-bg); display: flex; flex-direction: column; gap: 12px; min-height: 340px; }
.cl-card { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 12px; padding: 14px; }
.cl-top { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.cl-ava { width: 38px; height: 38px; border-radius: 11px; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.cl-top > div { flex: 1; } .cl-top b { font-size: 13px; display: block; } .cl-top em { font-style: normal; font-size: 10.5px; color: var(--a-text-2); font-family: var(--mono); }
.cl-badge { font-size: 9.5px; font-weight: 700; padding: 4px 9px; border-radius: 99px; background: rgba(245,158,11,.16); color: var(--orange); }
.cl-badge.ok { background: rgba(16,185,129,.14); color: var(--green); }
.cl-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.cl-stats div { background: var(--a-bg-2); border-radius: 9px; padding: 10px; }
.cl-stats em { font-style: normal; display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .05em; color: var(--a-muted); font-weight: 700; margin-bottom: 4px; }
.cl-stats b { font-size: 14px; font-weight: 800; font-family: var(--display); }
.cl-stats b.mono { font-family: var(--mono); }

/* ─────────────── Ticket thermique ─────────────── */
.receipt-stage {
  display: flex; align-items: center; justify-content: center; padding: 46px 24px;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 50% 0%, #1c2540, #0a0f1e);
  box-shadow: var(--shadow-app);
  position: relative; overflow: hidden;
}
.receipt-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(59,130,246,.18), transparent 70%);
  pointer-events: none;
}
.receipt {
  position: relative; width: 260px; background: #fff; color: #1a1a1a;
  font-family: var(--mono); font-size: 11px; line-height: 1.5;
  padding: 20px 18px 22px; transform: rotate(-1.4deg);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,.55);
}
/* Bords déchirés haut & bas (papier thermique) */
.receipt::before, .receipt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 9px;
  background:
    linear-gradient(45deg,  transparent 50%, #fff 50%) 0 0 / 12px 9px repeat-x,
    linear-gradient(-45deg, transparent 50%, #fff 50%) 6px 0 / 12px 9px repeat-x;
}
.receipt::before { top: -9px; transform: scaleY(-1); }
.receipt::after  { bottom: -9px; }

.r-shop { text-align: center; font-weight: 700; font-size: 15px; letter-spacing: .02em; margin-bottom: 4px; }
.r-meta { text-align: center; font-size: 10px; color: #333; }
.r-sep { border-top: 1px dashed #999; margin: 9px 0; }
.r-info div { font-size: 10.5px; color: #222; }
.r-info b { color: #000; }
.r-items { width: 100%; border-collapse: collapse; }
.r-items th { text-align: left; font-size: 9px; color: #555; font-weight: 700; padding-bottom: 4px; letter-spacing: .03em; }
.r-items th:nth-child(2), .r-items td:nth-child(2) { text-align: right; white-space: nowrap; padding-left: 6px; }
.r-items th:nth-child(3), .r-items td:nth-child(3) { text-align: right; white-space: nowrap; padding-left: 6px; }
.r-items td { font-size: 10.5px; padding: 2px 0; vertical-align: top; }
.r-items td:nth-child(3) { font-weight: 700; }
.r-tot { width: 100%; border-collapse: collapse; }
.r-tot td { font-size: 11px; padding: 2px 0; }
.r-tot td:last-child { text-align: right; white-space: nowrap; }
.r-tot .r-disc td:last-child { color: #c0392b; }
.r-tot .r-grand td { border-top: 1px solid #000; padding-top: 5px; font-weight: 800; font-size: 14px; }
.r-tot .r-change td { font-weight: 700; }
.r-qr { display: flex; justify-content: center; margin: 4px 0 8px; }
.r-qr svg { width: 66px; height: 66px; }
.r-foot { text-align: center; font-style: italic; font-size: 11px; margin-top: 2px; }
.r-url { text-align: center; font-size: 9px; color: #777; margin-top: 3px; }

.receipt-print-badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.16); color: #34d399;
  border: 1px solid rgba(16,185,129,.3); border-radius: 99px;
  padding: 7px 13px; font-family: var(--display); font-weight: 600; font-size: 12px;
}
.receipt-print-badge i { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,.25); animation: blink 1.6s infinite; }

/* ─────────────── Modules grid ─────────────── */
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mod { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.mod:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-soft); }
.mod:hover .mod-ico { background: var(--brand); }
.mod:hover .mod-ico svg { stroke: #fff; }
.mod-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); display: grid; place-items: center; margin-bottom: 14px; transition: background .2s; }
.mod-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.mod b { font-family: var(--display); font-size: 15px; display: block; margin-bottom: 3px; }
.mod p { font-size: 13px; color: var(--muted); }

/* Élévation par défaut : empêche les cartes blanches de se fondre dans le fond */
.vp-card, .mod, .pa-card, .why-stat, .compare-col.them, .faq-item, .sync-card, .price-card:not(.featured) { box-shadow: var(--shadow-card); }

/* ─────────────── Showcase (laptop) ─────────────── */
.showcase { display: flex; justify-content: center; }
.laptop { width: 100%; max-width: 880px; }
.laptop-screen { background: #050813; border: 9px solid #1a2238; border-radius: 18px 18px 0 0; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.laptop-screen .app-shot { border-radius: 0; }
.laptop-base { height: 18px; background: linear-gradient(#222c44, #131a2c); border-radius: 0 0 14px 14px; position: relative; box-shadow: 0 20px 30px -10px rgba(0,0,0,.5); }
.laptop-base::after { content:""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; background: #0a0f1e; border-radius: 0 0 7px 7px; }

/* ─────────────── Multi-poste & sync ─────────────── */
.mp-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }

/* Sync diagram card */
.sync-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.sync-hub { display: flex; align-items: center; gap: 13px; background: var(--brand); color: #fff; border-radius: 14px; padding: 15px 18px; box-shadow: 0 14px 30px -14px rgba(109,19,34,.6); }
.sh-ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex-shrink: 0; }
.sh-ico svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.sync-hub > div { flex: 1; }
.sync-hub b { font-family: var(--display); font-size: 16px; display: block; }
.sync-hub em { font-style: normal; font-size: 12px; color: rgba(255,255,255,.8); }
.sh-live { font-size: 11px; font-weight: 700; color: #7ff0c4; background: rgba(16,185,129,.18); padding: 5px 10px; border-radius: 99px; white-space: nowrap; }

.sync-link { position: relative; text-align: center; margin: 8px 0; }
.sync-link::before { content: ""; position: absolute; left: 50%; top: -8px; width: 2px; height: 16px; background: var(--line); transform: translateX(-50%); }
.sync-link span { display: inline-block; font-size: 11.5px; font-weight: 600; color: var(--brand); background: var(--brand-soft); padding: 6px 14px; border-radius: 99px; }

.sync-nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; padding-top: 14px; }
.sync-nodes::before { content: ""; position: absolute; top: 0; left: 16.6%; right: 16.6%; height: 2px; background: var(--line); }
.sn { position: relative; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 13px; padding: 16px 8px; }
.sn::before { content: ""; position: absolute; top: -14px; left: 50%; width: 2px; height: 14px; background: var(--line); transform: translateX(-50%); }
.sn-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--brand-tint); display: grid; place-items: center; margin: 0 auto 9px; }
.sn-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sn b { font-family: var(--display); font-size: 13.5px; display: block; }
.sn em { font-style: normal; font-size: 11px; color: var(--muted); }

.mp-list { margin-top: 26px; }

/* Devices : tablette + téléphone */
.mp-devices { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.tablet-frame { position: relative; width: 460px; max-width: 100%; background: #11182b; border: 12px solid #1c2540; border-radius: 22px; box-shadow: var(--shadow-app); }
.tablet-cam { position: absolute; top: 50%; right: -7px; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: #3a4566; }
.tablet-screen { border-radius: 9px; overflow: hidden; }
.pos-shot-tab { min-height: 290px; }
.pos-shot-tab .pos-products { grid-template-columns: repeat(2, 1fr); }

.phone-frame { position: absolute; right: -6px; bottom: -22px; width: 196px; background: #0c1222; border: 8px solid #1c2540; border-radius: 30px; box-shadow: var(--shadow-lg); z-index: 3; }
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 56px; height: 15px; background: #1c2540; border-radius: 0 0 11px 11px; z-index: 2; }
.phone-screen { border-radius: 23px; overflow: hidden; background: var(--a-bg); }

.mcaisse { background: var(--a-bg); color: var(--a-text); padding: 22px 11px 11px; display: flex; flex-direction: column; gap: 9px; min-height: 380px; }
.mc-top { display: flex; align-items: center; justify-content: space-between; }
.mc-shop { display: flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; font-size: 12px; }
.mc-logo { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, var(--blue), var(--purple)); }
.mc-sync { display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; font-weight: 700; color: var(--green); background: rgba(16,185,129,.14); padding: 4px 8px; border-radius: 99px; }
.mc-sync i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px rgba(16,185,129,.25); animation: blink 2s infinite; }
.mc-search { background: var(--a-bg-2); border: 1px solid var(--a-border); border-radius: 9px; padding: 9px 11px; font-size: 10.5px; color: var(--a-muted); }
.mc-cats { display: flex; gap: 6px; }
.mc-cats span { font-size: 9.5px; padding: 5px 10px; border-radius: 7px; border: 1px solid var(--a-border); color: var(--a-text-2); font-weight: 600; }
.mc-cats span.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.mc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mc-p { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 3px; }
.mc-p span { font-size: 19px; }
.mc-p b { font-size: 10.5px; font-weight: 600; }
.mc-p em { font-style: normal; font-size: 10.5px; font-family: var(--mono); font-weight: 700; color: var(--blue-light); }
.mc-bar { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--green); border-radius: 12px; padding: 11px 13px; box-shadow: 0 0 22px rgba(16,185,129,.4); }
.mc-bar-l b { font-family: var(--display); font-size: 12px; color: #fff; display: block; line-height: 1.1; }
.mc-bar-l em { font-style: normal; font-size: 9.5px; color: rgba(255,255,255,.85); }
.mc-pay { font-family: var(--mono); font-weight: 800; font-size: 13px; color: #fff; }

.mp-badge { position: absolute; top: 6px; left: -8px; z-index: 4; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--brand); box-shadow: var(--shadow); }
.mp-badge svg { width: 17px; height: 17px; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────── Cloud / back office ─────────────── */
.cloud-layout { display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: center; }
.cloud-list { display: flex; flex-direction: column; gap: 22px; }
.cloud-list li { display: flex; gap: 15px; align-items: flex-start; }
.cl-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,.14); border: 1px solid rgba(59,130,246,.25); display: grid; place-items: center; flex-shrink: 0; }
.cl-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--blue-light); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cloud-list b { display: block; font-family: var(--display); font-size: 16px; color: var(--a-text); margin-bottom: 4px; }
.cloud-list span { font-size: 14.5px; color: var(--a-text-2); }
.cloud-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 13.5px; color: var(--a-text-2); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 11px 16px; }
.cloud-note .pn-ico { stroke: var(--blue-light); }

.cloud-visual { position: relative; }
.bo-shot { background: var(--a-bg); padding: 16px; display: flex; flex-direction: column; gap: 12px; min-height: 360px; }
.bo-top { display: flex; align-items: flex-start; justify-content: space-between; }
.bo-title { font-family: var(--display); font-weight: 800; font-size: 15px; }
.bo-sub { font-size: 10.5px; color: var(--a-muted); }
.bo-live { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--green); background: rgba(16,185,129,.14); padding: 5px 10px; border-radius: 99px; }
.bo-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.2); animation: blink 2s infinite; }
.bo-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bo-kpis > div { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 11px; padding: 12px; }
.bo-kpis em { font-style: normal; display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .05em; color: var(--a-muted); font-weight: 700; margin-bottom: 5px; }
.bo-kpis b { font-family: var(--mono); font-size: 15px; font-weight: 800; color: var(--a-text); }
.bo-card { background: var(--a-card); border: 1px solid var(--a-border); border-radius: 11px; padding: 13px; }
.bo-card-h { font-family: var(--display); font-weight: 700; font-size: 12px; margin-bottom: 12px; }
.bo-bars { display: flex; align-items: flex-end; gap: 6px; height: 92px; }
.bo-bars span { flex: 1; height: var(--h); min-height: 5px; align-self: flex-end; border-radius: 4px 4px 0 0; background: linear-gradient(to top, #1d4ed8, var(--blue-light)); opacity: .9; }
.bo-rows { display: flex; flex-direction: column; gap: 7px; }
.bo-row { display: flex; align-items: center; gap: 9px; background: var(--a-card); border: 1px solid var(--a-border); border-radius: 9px; padding: 9px 12px; font-size: 11px; }
.bo-row span:nth-child(2) { flex: 1; color: var(--a-text); }
.bo-row em { font-style: normal; font-size: 10px; color: var(--a-muted); font-family: var(--mono); }
.bo-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.d-red { background: var(--red); } .d-orange { background: var(--orange); } .d-blue { background: var(--blue); }

.cloud-badge { position: absolute; top: -14px; left: -12px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 12px; padding: 10px 14px; font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--brand); box-shadow: var(--shadow-lg); }
.cloud-badge svg { width: 18px; height: 18px; fill: none; stroke: var(--brand); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────── Why / compare ─────────────── */
.why-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.why-lead { font-size: 16.5px; color: var(--ink-2); margin: 16px 0 26px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-col { border-radius: var(--radius); padding: 22px; }
.compare-col h4 { font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.compare-col h4 img { width: 22px; height: 22px; border-radius: 6px; }
.compare-col ul { display: flex; flex-direction: column; gap: 11px; }
.compare-col li { font-size: 14px; padding-left: 26px; position: relative; }
.compare-col.them { background: #fff; border: 1px solid var(--line); }
.compare-col.them h4 { color: var(--muted); }
.compare-col.them li { color: var(--ink-2); }
.compare-col.them li::before { content:"✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.compare-col.us { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.compare-col.us h4 { color: #fff; }
.compare-col.us li::before { content:"✓"; position: absolute; left: 0; color: #7ff0c4; font-weight: 700; }

.why-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; text-align: center; }
.why-stat b { font-family: var(--display); font-size: 28px; color: var(--brand); display: block; letter-spacing: -.02em; }
.why-stat span { font-size: 12.5px; color: var(--muted); }

/* ─────────────── Pricing ─────────────── */
.pricing { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; align-items: start; }
.price-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 34px; position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 30px 70px -30px rgba(109,19,34,.4); }
.pc-ribbon { position: absolute; top: -13px; left: 34px; background: var(--brand); color: #fff; font-family: var(--display); font-weight: 600; font-size: 12px; padding: 5px 14px; border-radius: 99px; }
.price-card h3 { font-size: 21px; margin-bottom: 6px; }
.pc-desc { font-size: 14.5px; color: var(--ink-2); margin-bottom: 20px; }
.pc-price { display: flex; align-items: baseline; gap: 8px; }
.pc-price .amt { font-family: var(--display); font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.pc-price .cur { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--brand); }
.pc-note { font-size: 13px; color: var(--muted); margin: 6px 0 22px; }
.pc-feat { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pc-feat li { padding-left: 28px; position: relative; font-size: 14.5px; color: var(--ink); }
.pc-feat li::before { content:""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 6px; background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d1322' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }
.pc-sub { display: block; text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* Tarifs en 3 offres */
.pricing-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; align-items: stretch; }
.pricing-3 .price-card { display: flex; flex-direction: column; box-shadow: var(--shadow-card); padding: 30px 26px; }
.pricing-3 .price-card.featured { box-shadow: 0 30px 70px -30px rgba(109,19,34,.4); transform: translateY(-6px); }
.pricing-3 .pc-feat { flex: 1; }
.pricing-3 .price-card .btn { margin-top: auto; }
.pc-tag { display: inline-block; align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); background: var(--brand-soft); padding: 4px 11px; border-radius: 7px; margin-bottom: 14px; }
.pc-tag-blue { color: var(--blue); background: rgba(59,130,246,.12); }
.pc-tag-gold { color: #b8860b; background: rgba(245,158,11,.16); }
.pc-feat li b { font-weight: 700; }
.pc-from { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.pc-tiers { display: flex; flex-direction: column; gap: 9px; margin: 2px 0 22px; padding-top: 16px; border-top: 1px dashed var(--line); }
.pc-tiers > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; }
.pc-tiers span { color: var(--ink-2); }
.pc-tiers b { font-family: var(--mono); font-weight: 700; color: var(--ink); white-space: nowrap; }
.pc-save { color: var(--green) !important; font-weight: 600; }
.pc-save::before { background: rgba(16,185,129,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat !important; }
.pricing-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.pn { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 99px; padding: 9px 16px; }
.pn b { color: var(--ink); font-weight: 700; }
.pn-ico { width: 18px; height: 18px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.addon { display: flex; align-items: center; gap: 18px; max-width: 1100px; margin: 26px auto 0; background: #fff; border: 1.5px dashed var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-card); }
.addon-ico { width: 48px; height: 48px; border-radius: 13px; background: rgba(59,130,246,.1); display: grid; place-items: center; flex-shrink: 0; }
.addon-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.addon-body { flex: 1; }
.addon-body b { font-family: var(--display); font-size: 16px; display: block; margin-bottom: 3px; }
.addon-price { display: inline-block; margin-left: 8px; font-family: var(--mono); font-size: 15px; font-weight: 800; color: var(--blue); background: rgba(59,130,246,.1); padding: 2px 10px; border-radius: 8px; }
.addon-price em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--ink-2); }
.addon-body p { font-size: 14px; color: var(--ink-2); }
.addon .btn { flex-shrink: 0; }
@media (max-width: 680px) { .addon { flex-direction: column; text-align: center; } .addon .btn { width: 100%; } }
.pricing-foot { display: inline-flex; align-items: center; gap: 8px; justify-content: center; width: 100%; text-align: center; margin-top: 18px; font-size: 15px; color: var(--ink-2); flex-wrap: wrap; }
.pf-ico { width: 19px; height: 19px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.pricing-foot b { color: var(--ink); font-weight: 700; }
.pricing-foot a { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.price-aside { display: flex; flex-direction: column; gap: 18px; }
.pa-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.pa-ico { font-size: 26px; display: block; margin-bottom: 12px; }
.pa-card h4 { font-size: 17px; margin-bottom: 7px; }
.pa-card p { font-size: 14px; color: var(--ink-2); margin-bottom: 16px; }

/* ─────────────── FAQ ─────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { width: 12px; height: 12px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(45deg); transition: transform .25s; flex-shrink: 0; }
.faq-item[open] .chev { transform: rotate(-135deg); }
.faq-item p { padding: 0 24px 22px; font-size: 15px; color: var(--ink-2); }

/* ─────────────── CTA final ─────────────── */
.cta-final { padding: 30px 0 96px; }
.cta-box {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 55%, #8a2236);
  border-radius: 30px; padding: 70px 32px;
}
.cta-glow { position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 10%, rgba(59,130,246,.3), transparent 60%), radial-gradient(50% 70% at 10% 100%, rgba(255,255,255,.12), transparent 60%); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.cta-icon { width: 66px; height: 66px; border-radius: 18px; margin: 0 auto 22px; box-shadow: 0 16px 40px -10px rgba(0,0,0,.5); }
.cta-box h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-box p { font-size: 18px; color: rgba(255,255,255,.86); max-width: 540px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-meta { display: block; margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.65); }
.cta-guide { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-guide:hover { color: var(--brand-soft); }

/* ─────────────── Footer ─────────────── */
.site-footer { background: var(--ink); color: #cfc6c9; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-name span { color: #ec9aa8; }
.foot-brand p { font-size: 14px; margin-top: 14px; max-width: 320px; color: #a99fa3; }
.foot-made { color: #877d81 !important; font-size: 13px !important; }
.foot-col h5 { font-family: var(--display); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: #a99fa3; margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: #877d81; flex-wrap: wrap; gap: 10px; }
.foot-legal a:hover { color: #fff; }

/* ─────────────── Comment ça marche (étapes) ─────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-card); text-align: center; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--display); font-weight: 700; font-size: 14px; display: grid; place-items: center; box-shadow: 0 6px 16px -6px rgba(109,19,34,.6); }
.step-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--brand-tint); display: grid; place-items: center; margin: 10px auto 16px; }
.step-ico svg { width: 27px; height: 27px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }
.steps-cta { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ─────────────── Garantie / réassurance ─────────────── */
.guarantee { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.guarantee-item { display: flex; align-items: flex-start; gap: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.g-ico { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.g-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--brand); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.guarantee-item b { font-family: var(--display); font-size: 15px; display: block; margin-bottom: 3px; }
.guarantee-item span { font-size: 13px; color: var(--ink-2); }

/* ─────────────── Capture de lead ─────────────── */
.lead {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  background: linear-gradient(135deg, var(--brand-tint), #fff);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 46px; box-shadow: var(--shadow-card);
}
.lead-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.lead-copy > p { font-size: 16px; color: var(--ink-2); margin-bottom: 20px; }
.lead-points { display: flex; flex-direction: column; gap: 10px; }
.lead-points li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; }
.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.lf-field span { font-size: 13px; font-weight: 600; color: var(--ink); }
.lf-field span em { font-style: normal; color: var(--muted); font-weight: 400; }
.lf-field input, .lf-field select {
  font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--bg-soft); outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s; width: 100%;
}
.lf-field input::placeholder { color: var(--muted); }
.lf-field input:focus, .lf-field select:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(109,19,34,.1); }
.lf-field input.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.lead-form .btn { margin-top: 4px; }
.lf-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.lf-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 24px 8px; }
.lf-success .lf-check { width: 54px; height: 54px; border-radius: 50%; background: var(--success-bg, rgba(16,185,129,.12)); color: var(--green); display: grid; place-items: center; font-size: 26px; }
.lf-success h4 { font-size: 19px; } .lf-success p { font-size: 14px; color: var(--ink-2); }

/* ─────────────── Témoignages (préparé) ─────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); }
.testi-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }
.testi blockquote { font-size: 15.5px; color: var(--ink); line-height: 1.6; margin-bottom: 18px; }
.testi figcaption { display: flex; align-items: center; gap: 11px; }
.testi-ava { width: 40px; height: 40px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.testi figcaption b { display: block; font-size: 14px; } .testi figcaption em { font-style: normal; font-size: 12.5px; color: var(--muted); }

/* ─────────────── WhatsApp flottant ─────────────── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.6); transition: transform .2s, box-shadow .2s;
}
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-float:hover { transform: scale(1.07); }
.wa-tip {
  position: absolute; right: 70px; white-space: nowrap; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 500; padding: 9px 14px; border-radius: 10px; box-shadow: var(--shadow);
  opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .2s, transform .2s;
}
.wa-tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--ink); }
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ─────────────── Barre CTA mobile ─────────────── */
.mobile-bar { display: none; }

/* ─────────────── Reveal animation ─────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ─────────────── Responsive ─────────────── */
.hide-sm { display: inline-flex; }

@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: none; }
  .hero-visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .vp-grid { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-text { order: 0; }
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .why-wrap { grid-template-columns: 1fr; gap: 36px; }
  .mp-layout { grid-template-columns: 1fr; gap: 44px; }
  .cloud-layout { grid-template-columns: 1fr; gap: 40px; }
  .guarantee { grid-template-columns: 1fr 1fr; }
  .lead { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-3 { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-3 .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 24px; font-size: 16px; border-bottom: 1px solid var(--line-2); }
  .nav-toggle { display: flex; }
  .hide-sm { display: none; }
  .section { padding: 70px 0; }
  .vp-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .why-side { grid-template-columns: 1fr 1fr; }
  .trust-strip { gap: 14px 18px; }
  .ts-sep { display: none; }
  .app-shot { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .app-kpis { grid-template-columns: 1fr 1fr; }
  .app-grid2 { grid-template-columns: 1fr; }
  .pos-shot { grid-template-columns: 1fr; }
  .pos-left { border-right: 0; border-bottom: 1px solid var(--a-border); }
  .rep-kpis { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }
  .guarantee { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .lead { padding: 26px; }
  .mobile-bar { display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -12px rgba(26,20,22,.3); }
  .mb-btn { flex: 1; }
  .wa-float { bottom: 80px; width: 52px; height: 52px; }
  .wa-tip { display: none; }
  body { padding-bottom: 66px; }
  .sync-nodes { grid-template-columns: 1fr; gap: 10px; }
  .sync-nodes::before { display: none; }
  .sn { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px; }
  .sn::before { display: none; }
  .sn-ico { margin: 0; }
  .mp-devices { min-height: 0; flex-direction: column; gap: 0; }
  .tablet-frame { width: 100%; max-width: 440px; }
  .phone-frame { position: relative; right: auto; bottom: auto; margin-top: -40px; }
  .mp-badge { top: -6px; left: 0; }
  .float-card { display: none; }
  .cta-box { padding: 50px 22px; }
  .foot-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .modules-grid { grid-template-columns: 1fr; }
  .app-kpis { grid-template-columns: 1fr; }
}

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