/* Les polices sont chargées via <link rel="preconnect"> + <link rel="stylesheet"> dans le <head>
   de chaque page : un @import ici crée une chaîne de requêtes bloquante (HTML → CSS → police)
   qui dégrade le LCP. */

:root {
  --navy-950: #06152f;
  --navy-900: #0a2146;
  --navy-800: #103262;
  --blue-700: #075bdf;
  --blue-600: #0878ff;
  --blue-500: #1997ff;
  --cyan-400: #30c5f4;
  --magenta: #e30073;
  --orange: #ff7a00;
  --yellow: #ffc928;
  --ink: #0c1b33;
  --muted: #64748b;
  --line: #dce6f2;
  --soft: #f4f8fc;
  --white: #ffffff;
  --success: #0ca678;
  --warning: #f59f00;
  --danger: #e03131;
  --shadow-sm: 0 10px 30px rgba(6, 21, 47, 0.07);
  --shadow-md: 0 24px 70px rgba(6, 21, 47, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-compact { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--orange));
}
.section-dark .eyebrow { color: #9fcbff; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-title {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
}
.section-dark .section-title { color: var(--white); }
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-dark .section-lead { color: #a9bad2; }
.blue-text { color: var(--blue-600); }

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 220ms ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 33, 70, 0.08);
  box-shadow: 0 8px 30px rgba(6, 21, 47, 0.05);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 176px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  position: relative;
  color: #41516a;
  font-size: 14px;
  font-weight: 650;
}
.nav-links > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-600);
  transition: 180ms ease;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--blue-700); }
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { padding: 10px 12px; color: var(--navy-800); font-size: 13px; font-weight: 700; }
.nav-trial { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #cfe0f1; border-radius: 11px; color: var(--navy-800); background: rgba(255,255,255,.72); font-size: 12px; font-weight: 750; transition: 160ms ease; }
.nav-trial:hover { border-color: #9ccafb; color: var(--blue-700); background: white; transform: translateY(-1px); }
.nav-trial b { padding: 4px 6px; border-radius: 6px; color: white; background: var(--blue-600); font-size: 8px; letter-spacing: .04em; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  place-items: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-900);
  transition: 180ms ease;
}
.nav-toggle span { margin: 4px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 30px rgba(8, 120, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(8, 120, 255, 0.34); }
.btn-secondary { color: var(--navy-900); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { border-color: #afc4dc; box-shadow: var(--shadow-sm); }
.btn-dark { color: var(--white); background: var(--navy-950); }
.btn-sm { min-height: 42px; padding-inline: 18px; border-radius: 12px; font-size: 13px; }
.btn-lg { min-height: 56px; padding-inline: 28px; border-radius: 16px; font-size: 15px; }
.btn-block { width: 100%; }
.arrow { font-size: 18px; line-height: 1; }

/* Hero */
.hero {
  min-height: 820px;
  padding: 154px 0 88px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(25, 151, 255, 0.14), transparent 26%),
    radial-gradient(circle at 5% 72%, rgba(227, 0, 115, 0.06), transparent 23%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 76%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(8, 120, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 120, 255, 0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}
.pixel-cloud { position: absolute; width: 260px; height: 220px; right: 3%; top: 80px; opacity: 0.5; }
.pixel-cloud i { position: absolute; width: 8px; height: 8px; border-radius: 2px; background: var(--blue-500); }
.pixel-cloud i:nth-child(1) { left: 8%; top: 18%; }
.pixel-cloud i:nth-child(2) { left: 24%; top: 6%; width: 12px; height: 12px; }
.pixel-cloud i:nth-child(3) { left: 43%; top: 23%; background: var(--magenta); }
.pixel-cloud i:nth-child(4) { left: 67%; top: 10%; width: 6px; height: 6px; }
.pixel-cloud i:nth-child(5) { left: 83%; top: 32%; background: var(--orange); }
.pixel-cloud i:nth-child(6) { left: 54%; top: 48%; width: 14px; height: 14px; }
.pixel-cloud i:nth-child(7) { left: 74%; top: 66%; background: var(--yellow); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr); align-items: center; gap: 58px; }
.hero-copy { max-width: 590px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid #cae0f8;
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(6, 21, 47, 0.05);
}
.hero-kicker .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(12, 166, 120, 0.12); }
.hero h1 { margin-bottom: 24px; font-size: clamp(45px, 5.7vw, 72px); font-weight: 800; letter-spacing: -0.058em; }
.hero h1 .accent { color: var(--blue-600); }
.hero-lead { max-width: 580px; margin-bottom: 32px; color: #52637b; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px 20px; color: #5b6d84; font-size: 12px; font-weight: 650; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: '✓'; color: var(--success); font-weight: 900; }

/* Product mockup */
.product-stage { position: relative; padding: 24px 0 18px 20px; }
.product-stage::before {
  content: '';
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  right: 2%;
  top: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(8, 120, 255, 0.17), rgba(48, 197, 244, 0.03));
  filter: blur(4px);
}
.app-window {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid rgba(109, 145, 183, 0.28);
  border-radius: 24px;
  background: #f5f8fc;
  box-shadow: 0 35px 90px rgba(6, 21, 47, 0.2), 0 4px 12px rgba(6, 21, 47, 0.08);
  transform: perspective(1400px) rotateY(-5deg) rotateX(1deg);
}
.app-topbar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid #dde6f0; background: #fff; }
.app-topbar span { width: 8px; height: 8px; border-radius: 50%; background: #cdd7e4; }
.app-topbar span:first-child { background: #ff6584; }
.app-topbar span:nth-child(2) { background: #ffc14f; }
.app-topbar span:nth-child(3) { background: #35cfa0; }
.app-shell { min-height: 468px; display: grid; grid-template-columns: 126px 1fr; }
.app-sidebar { padding: 18px 12px; color: #7e91aa; background: var(--navy-950); }
.app-mini-brand { margin-bottom: 26px; color: white; font: 800 13px/1 'Manrope', sans-serif; letter-spacing: -0.02em; }
.app-mini-brand b { color: var(--blue-500); }
.app-menu-line { height: 30px; display: flex; align-items: center; gap: 8px; margin-bottom: 5px; padding: 0 8px; border-radius: 8px; font-size: 8px; font-weight: 700; }
.app-menu-line::before { content: ''; width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 3px; }
.app-menu-line.active { color: white; background: rgba(25, 151, 255, 0.22); }
.app-content { padding: 22px; overflow: hidden; }
.app-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.app-title-row strong { font: 800 15px/1 'Manrope', sans-serif; }
.app-pill { padding: 6px 9px; border-radius: 8px; color: #0e6cd8; background: #e4f2ff; font-size: 7px; font-weight: 800; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.kpi { padding: 13px; border: 1px solid #e1e9f2; border-radius: 12px; background: white; box-shadow: 0 5px 16px rgba(6, 21, 47, 0.04); }
.kpi small { display: block; margin-bottom: 7px; color: #8594a8; font-size: 7px; font-weight: 700; }
.kpi strong { display: block; font-size: 14px; letter-spacing: -0.04em; }
.kpi em { display: block; margin-top: 4px; color: var(--success); font-size: 6px; font-style: normal; font-weight: 800; }
.app-main-grid { display: grid; grid-template-columns: 1.45fr 0.85fr; gap: 12px; }
.app-card { min-height: 176px; padding: 14px; border: 1px solid #e1e9f2; border-radius: 14px; background: white; }
.app-card-title { margin-bottom: 15px; font-size: 8px; font-weight: 800; }
.chart { height: 104px; display: flex; align-items: flex-end; gap: 8px; padding-top: 8px; border-bottom: 1px solid #e7edf4; }
.chart i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, #1c9aff, #0878ff); }
.chart i:nth-child(1) { height: 34%; }.chart i:nth-child(2) { height: 52%; }.chart i:nth-child(3) { height: 44%; }.chart i:nth-child(4) { height: 76%; }.chart i:nth-child(5) { height: 65%; }.chart i:nth-child(6) { height: 91%; }.chart i:nth-child(7) { height: 82%; }
.order-line { display: grid; grid-template-columns: 19px 1fr auto; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid #edf1f6; }
.order-line:last-child { border-bottom: 0; }
.order-avatar { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 6px; color: #1167c9; background: #e7f2ff; font-size: 7px; font-weight: 900; }
.order-name { color: #34445b; font-size: 7px; font-weight: 750; }
.order-status { padding: 3px 5px; border-radius: 5px; color: #0b8a64; background: #e7faf4; font-size: 5px; font-weight: 900; }
.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 164px;
  padding: 13px 15px;
  border: 1px solid #d9e5f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.floating-card strong { display: block; font-size: 12px; }
.floating-card small { color: var(--muted); font-size: 8px; }
.floating-card.sync { right: -18px; top: 86px; }
.floating-card.stock { left: -22px; bottom: 42px; }
.float-icon { width: 28px; height: 28px; display: grid; place-items: center; float: left; margin-right: 10px; border-radius: 9px; color: var(--blue-700); background: #e6f3ff; font-size: 13px; font-weight: 900; }
.floating-card.stock .float-icon { color: #a45100; background: #fff2de; }

/* Trust strip */
.trust-strip { position: relative; z-index: 3; margin: -76px 0 40px; }
.trust-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.trust-label { padding: 23px 26px; color: var(--navy-800); font: 800 13px/1.35 'Manrope', sans-serif; }
.trust-item { min-height: 66px; display: grid; place-items: center; padding: 14px; border-left: 1px solid var(--line); color: #52647b; text-align: center; font-size: 11px; font-weight: 750; }
.trust-item b { display: block; margin-bottom: 2px; color: var(--ink); font-size: 13px; }

/* Workflow */
.workflow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.workflow-card { position: relative; padding: 24px 20px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: 180ms ease; }
.workflow-card:hover { transform: translateY(-5px); border-color: #b8d1eb; box-shadow: var(--shadow-sm); }
.workflow-number { display: inline-flex; margin-bottom: 26px; color: var(--blue-600); font: 800 13px/1 'Manrope', sans-serif; }
.workflow-card:not(:last-child)::after { content: '→'; position: absolute; z-index: 2; top: 27px; right: -12px; color: #9ab0c8; font-weight: 800; }
.workflow-card h3 { margin-bottom: 8px; font-size: 17px; }
.workflow-card p { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* Feature showcase */
.feature-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.feature-tab {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #506178;
  background: white;
  font-size: 12px;
  font-weight: 750;
}
.feature-tab.active { color: white; border-color: var(--blue-700); background: var(--blue-700); box-shadow: 0 10px 24px rgba(7, 91, 223, 0.2); }
.feature-panel { display: none; }
.feature-panel.active { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: center; animation: panelIn 280ms ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.feature-copy h3 { margin-bottom: 16px; font-size: clamp(27px, 3vw, 38px); }
.feature-copy > p { margin-bottom: 24px; color: var(--muted); font-size: 15px; }
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #314158; font-size: 13px; font-weight: 600; }
.check-list li::before { content: '✓'; flex: 0 0 21px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: var(--success); background: #e8f8f3; font-size: 11px; font-weight: 900; }
.module-screen { overflow: hidden; min-height: 390px; border: 1px solid #cddceb; border-radius: 22px; background: #f7f9fc; box-shadow: var(--shadow-md); }
.screen-head { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line); background: white; }
.screen-head strong { font-size: 11px; }
.screen-head span { padding: 6px 9px; border-radius: 7px; color: var(--blue-700); background: #e9f4ff; font-size: 7px; font-weight: 800; }
.screen-body { padding: 18px; }
.screen-toolbar { display: grid; grid-template-columns: 1fr 110px; gap: 8px; margin-bottom: 14px; }
.screen-field { height: 31px; border: 1px solid #dfe7f0; border-radius: 8px; background: white; }
.screen-field.blue { background: var(--blue-600); border-color: var(--blue-600); }
.screen-table { overflow: hidden; border: 1px solid #e0e8f1; border-radius: 11px; background: white; }
.screen-row { min-height: 47px; display: grid; grid-template-columns: 1.1fr 0.8fr 0.65fr 0.65fr; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid #edf2f6; color: #8090a4; font-size: 7px; }
.screen-row:first-child { min-height: 34px; color: #516279; background: #f8fafc; font-weight: 800; }
.screen-row:last-child { border-bottom: 0; }
.screen-row b { color: #26364d; font-size: 8px; }
.screen-badge { justify-self: start; padding: 4px 6px; border-radius: 5px; color: #0a8b64; background: #e8f8f3; font-weight: 800; }
.screen-badge.amber { color: #a25c00; background: #fff4df; }
.order-status.amber { color: #a25c00; background: #fff4df; }
.screen-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 14px; }
.screen-kpi { padding: 12px; border: 1px solid #e0e8f1; border-radius: 10px; background: white; }
.screen-kpi small { display: block; color: #8291a4; font-size: 6px; }
.screen-kpi strong { font-size: 12px; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-card { overflow: hidden; min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; position: relative; }
.bento-card.large { grid-column: span 7; }
.bento-card.medium { grid-column: span 5; }
.bento-card.third { grid-column: span 4; min-height: 220px; }
.bento-card.dark { color: white; border-color: transparent; background: var(--navy-950); }
.bento-card.blue { color: white; border-color: transparent; background: linear-gradient(135deg, #075bdf, #1495ff); }
.bento-kicker { margin-bottom: 28px; color: var(--blue-600); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.bento-card.dark .bento-kicker, .bento-card.blue .bento-kicker { color: #a9d3ff; }
.bento-card h3 { max-width: 460px; margin-bottom: 12px; font-size: 24px; }
.bento-card p { max-width: 490px; margin-bottom: 0; color: var(--muted); font-size: 13px; }
.bento-card.dark p, .bento-card.blue p { color: rgba(255, 255, 255, 0.67); }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.project-tags span { padding: 7px 10px; border: 1px solid #dce6f0; border-radius: 8px; color: #465972; background: #f8fbff; font-size: 10px; font-weight: 750; }
.mini-bars { height: 70px; display: flex; align-items: end; gap: 7px; margin-top: 25px; }
.mini-bars i { width: 10%; border-radius: 5px 5px 0 0; background: rgba(255,255,255,.3); }
.mini-bars i:nth-child(1) { height: 35%; }.mini-bars i:nth-child(2) { height: 65%; }.mini-bars i:nth-child(3) { height: 52%; }.mini-bars i:nth-child(4) { height: 90%; }.mini-bars i:nth-child(5) { height: 76%; }.mini-bars i:nth-child(6) { height: 100%; }

/* Offline */
.offline-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.offline-points { display: grid; gap: 18px; margin: 28px 0 34px; }
.offline-point { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.offline-point-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(159, 203, 255, 0.2); border-radius: 13px; color: #9fcbff; background: rgba(25, 151, 255, 0.1); font: 800 12px/1 'Manrope', sans-serif; }
.offline-point h3 { margin: 2px 0 5px; font-size: 15px; }
.offline-point p { margin: 0; color: #9eb0c9; font-size: 12px; }
.offline-diagram { position: relative; min-height: 460px; display: grid; place-items: center; }
.sync-orbit { width: 390px; height: 390px; position: absolute; border: 1px dashed rgba(159, 203, 255, 0.2); border-radius: 50%; animation: orbitSpin 30s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.sync-orbit::before, .sync-orbit::after { content: ''; position: absolute; width: 11px; height: 11px; border-radius: 3px; background: var(--blue-500); box-shadow: 0 0 20px rgba(25,151,255,.7); }
.sync-orbit::before { top: 14%; left: 14%; }.sync-orbit::after { right: 8%; bottom: 24%; background: var(--orange); }
.device-card { width: 280px; overflow: hidden; border: 1px solid rgba(159, 203, 255, 0.18); border-radius: 22px; background: #0b254c; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25); }
.device-head { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 12px; border-bottom: 1px solid rgba(159, 203, 255, 0.12); }
.device-head i { width: 6px; height: 6px; border-radius: 50%; background: #5e789a; }
.device-body { padding: 18px; }
.device-status { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #dfefff; font-size: 10px; font-weight: 800; }
.device-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 5px rgba(245, 159, 0, 0.12); }
.local-row { height: 40px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding: 0 10px; border: 1px solid rgba(159, 203, 255, 0.1); border-radius: 9px; color: #91a9c5; background: rgba(255,255,255,.03); font-size: 7px; }
.local-row b { color: #e6f2ff; font-size: 8px; }
.cloud-node { position: absolute; right: 0; top: 64px; width: 134px; padding: 16px; border: 1px solid rgba(159, 203, 255, 0.2); border-radius: 17px; background: rgba(16, 50, 98, 0.88); box-shadow: 0 20px 45px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.cloud-node strong { display: block; margin-bottom: 5px; font-size: 11px; }
.cloud-node small { color: #8da5c3; font-size: 7px; }
.cloud-node::before { content: 'CLOUD'; display: grid; place-items: center; width: 40px; height: 30px; margin-bottom: 10px; border-radius: 12px; color: #a7d3ff; background: rgba(25,151,255,.14); font-size: 6px; font-weight: 900; letter-spacing: .08em; }
.sync-label { position: absolute; left: 4px; bottom: 72px; padding: 9px 12px; border: 1px solid rgba(56, 207, 156, .25); border-radius: 10px; color: #8ce4c5; background: rgba(12,166,120,.1); font-size: 8px; font-weight: 800; }

/* Pricing */
.billing-toggle { display: flex; width: max-content; margin: -8px auto 38px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: #edf3f9; }
.billing-toggle button { min-width: 110px; padding: 9px 16px; border: 0; border-radius: 999px; color: #607188; background: transparent; font-size: 11px; font-weight: 800; }
.billing-toggle button.active { color: var(--navy-900); background: white; box-shadow: 0 6px 16px rgba(6,21,47,.08); }
.billing-toggle em { color: var(--success); font-style: normal; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: white; transition: 200ms ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { color: white; border-color: transparent; background: var(--navy-950); box-shadow: 0 28px 70px rgba(6,21,47,.22); }
.popular-chip { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; color: #dff0ff; background: rgba(25,151,255,.18); font-size: 8px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.plan-name { margin-bottom: 8px; font-size: 21px; }
.plan-desc { min-height: 43px; margin-bottom: 24px; color: var(--muted); font-size: 12px; }
.price-card.featured .plan-desc { color: #98adc8; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price strong { font: 800 clamp(36px, 4vw, 48px)/1 'Manrope', sans-serif; letter-spacing: -0.06em; }
.price span { color: var(--muted); font-size: 12px; font-weight: 650; }
.price-card.featured .price span { color: #98adc8; }
.annual-note { min-height: 20px; margin-bottom: 24px; color: #7d8da3; font-size: 9px; }
.price-card.featured .annual-note { color: #86a1c1; }
.plan-limits { display: flex; gap: 7px; margin-bottom: 24px; }
.plan-limits span { flex: 1; padding: 9px 7px; border: 1px solid #e0e8f1; border-radius: 9px; color: #51627a; background: #f8fafc; text-align: center; font-size: 8px; font-weight: 750; }
.price-card.featured .plan-limits span { color: #c7d8ec; border-color: rgba(159,203,255,.14); background: rgba(255,255,255,.04); }
.plan-list { display: grid; gap: 11px; margin-bottom: 28px; }
.plan-list li { display: flex; gap: 9px; color: #45576f; font-size: 11px; }
.plan-list li::before { content: '✓'; color: var(--success); font-weight: 900; }
.price-card.featured .plan-list li { color: #c2d0e2; }
.price-card .btn { margin-top: auto; }
.pricing-disclaimer { max-width: 800px; margin: 22px auto 0; color: #7c8ca2; text-align: center; font-size: 10px; }

/* CTA */
.cta-section { padding: 40px 0 96px; }
.cta-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 50px 56px; border-radius: 28px; color: white; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow-md); }
.cta-box::after { content: ''; position: absolute; width: 280px; height: 280px; right: -80px; top: -110px; border: 42px solid rgba(25,151,255,.12); border-radius: 50%; }
.cta-box h2 { max-width: 650px; margin-bottom: 10px; font-size: clamp(28px, 4vw, 44px); }
.cta-box p { margin: 0; color: #a9bad1; font-size: 14px; }
.cta-actions { position: relative; z-index: 2; display: flex; gap: 10px; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 154px 0 78px; background: linear-gradient(180deg, #f3f9ff, #ffffff); }
.page-hero::after { content: ''; position: absolute; width: 420px; height: 420px; top: 22px; right: -120px; border: 1px solid rgba(8,120,255,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,120,255,.035), 0 0 0 140px rgba(8,120,255,.02); }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(42px, 6vw, 66px); font-weight: 800; }
.page-hero p { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.page-actions { display: flex; gap: 12px; margin-top: 28px; }

.feature-category { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 56px; align-items: start; padding: 58px 0; border-bottom: 1px solid var(--line); }
.feature-category:last-child { border-bottom: 0; }
.feature-category h2 { margin-bottom: 12px; font-size: 30px; }
.feature-category > div:first-child p { color: var(--muted); font-size: 13px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.detail-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fbfdff; }
.detail-card h3 { margin-bottom: 8px; font-size: 15px; }
.detail-card p { margin: 0; color: var(--muted); font-size: 11px; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; min-width: 780px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 15px 18px; border-bottom: 1px solid #e8eef5; text-align: center; font-size: 11px; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { color: var(--navy-900); background: #f5f9fd; font: 800 13px/1.3 'Manrope', sans-serif; }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table td:first-child { color: #40526a; font-weight: 650; }
.yes { color: var(--success); font-weight: 900; }
.no { color: #b3bfcd; }

.offline-page-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.offline-page-step { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.offline-page-step .num { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 13px; color: var(--blue-700); background: #e8f4ff; font: 800 12px/1 'Manrope', sans-serif; }
.offline-page-step h3 { margin-bottom: 10px; font-size: 19px; }
.offline-page-step p { margin: 0; color: var(--muted); font-size: 12px; }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mode-card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.mode-card.recommended { border-color: #9cc9fa; background: #f2f8ff; }
.mode-label { display: inline-flex; margin-bottom: 22px; padding: 6px 9px; border-radius: 7px; color: var(--blue-700); background: #e5f2ff; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.mode-card h3 { margin-bottom: 10px; font-size: 20px; }
.mode-card p { color: var(--muted); font-size: 12px; }
.mode-card .check-list { margin-top: 18px; }
.mode-card .check-list li { font-size: 10px; }
.mode-card .check-list li::before { width: 18px; height: 18px; flex-basis: 18px; font-size: 8px; }

/* Demo form */
.demo-page { min-height: 100vh; padding: 130px 0 80px; background: radial-gradient(circle at 12% 20%, rgba(227,0,115,.05), transparent 24%), radial-gradient(circle at 86% 18%, rgba(8,120,255,.14), transparent 26%), #f4f8fc; }
.demo-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: start; }
.demo-copy { padding-top: 34px; }
.demo-copy h1 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 60px); }
.demo-copy > p { margin-bottom: 30px; color: var(--muted); font-size: 17px; }
.demo-benefits { display: grid; gap: 13px; }
.demo-benefits li { display: flex; gap: 11px; color: #40526a; font-size: 13px; font-weight: 650; }
.demo-benefits li::before { content: '✓'; flex: 0 0 23px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; color: var(--success); background: #e5f7f1; font-size: 11px; }
.demo-card { padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow-md); }
.demo-card h2 { margin-bottom: 7px; font-size: 25px; }
.demo-card form > p { margin-bottom: 27px; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.demo-card .form-grid { margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 7px; color: #40516a; font-size: 11px; font-weight: 750; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8e3ef;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f9fbfd;
  font-size: 13px;
  transition: 160ms ease;
}
.form-field textarea { min-height: 94px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue-500); background: white; box-shadow: 0 0 0 4px rgba(8,120,255,.09); }
.form-note { margin: 15px 0 0; color: #8796a9; text-align: center; font-size: 9px; }
.form-error { display: none; margin-bottom: 18px; padding: 11px 13px; border: 1px solid #ffc9c9; border-radius: 10px; color: #c92a2a; background: #fff5f5; font-size: 11px; }
.form-success { display: none; padding: 45px 15px; text-align: center; }
.form-success p { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.success-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 22px; color: white; background: linear-gradient(135deg, #0ca678, #38d9a9); font-size: 28px; font-weight: 900; box-shadow: 0 18px 36px rgba(12,166,120,.23); }

/* FAQ */
.faq-list { max-width: 840px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 22px 4px; display: flex; justify-content: space-between; gap: 20px; color: var(--ink); font: 750 15px/1.5 'Manrope', sans-serif; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--blue-600); font-size: 22px; font-weight: 500; transition: 180ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 720px; padding: 0 4px 22px; margin: 0; color: var(--muted); font-size: 13px; }

/* Footer */
.site-footer { padding: 64px 0 24px; color: #9db0c9; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; margin-bottom: 48px; }
.footer-brand img { width: 220px; margin: -24px 0 4px -16px; }
.footer-brand p { max-width: 320px; margin: 0; color: #8ea2bd; font-size: 12px; }
.footer-col h3 { margin-bottom: 17px; color: white; font-size: 13px; letter-spacing: -.01em; }
.footer-col a { display: block; margin-bottom: 9px; color: #91a5bf; font-size: 11px; transition: 160ms ease; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(159,203,255,.12); color: #7087a4; font-size: 10px; }
.footer-dots { display: flex; gap: 5px; }
.footer-dots i { width: 7px; height: 7px; border-radius: 2px; background: var(--blue-500); }
.footer-dots i:nth-child(2) { background: var(--magenta); }.footer-dots i:nth-child(3) { background: var(--orange); }.footer-dots i:nth-child(4) { background: var(--yellow); }

/* Contact permanent */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1200; display: flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; color: white; background: #19a85b; box-shadow: 0 14px 38px rgba(7,94,48,.3); font-size: 11px; font-weight: 800; transition: 180ms ease; }
.whatsapp-float:hover { color: white; background: #128c4c; transform: translateY(-3px); box-shadow: 0 18px 44px rgba(7,94,48,.38); }
.whatsapp-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #138a4b; background: white; font-size: 9px; font-weight: 900; letter-spacing: -.02em; }

/* Essai interactif 5 minutes */
.trial-body { height: 100vh; background: #edf3f8; overflow: hidden; }
.trial-topbar { height: 72px; position: relative; z-index: 30; display: flex; align-items: center; gap: 24px; padding: 0 24px; border-bottom: 1px solid #dce6f0; background: white; box-shadow: 0 5px 20px rgba(6,21,47,.05); }
.trial-logo img { width: 162px; }
.trial-mode { display: grid; grid-template-columns: 9px auto; column-gap: 9px; align-items: center; margin-right: auto; padding-left: 22px; border-left: 1px solid #dce6f0; }
.trial-mode > span { width: 9px; height: 9px; grid-row: 1 / 3; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(12,166,120,.1); }
.trial-mode strong { color: #31435a; font-size: 11px; line-height: 1.2; }
.trial-mode small { color: #8a98aa; font-size: 8px; line-height: 1.2; }
.trial-countdown { min-width: 126px; display: flex; align-items: center; gap: 10px; padding: 7px 12px; border: 1px solid #dce6f0; border-radius: 12px; background: #f7fafd; }
.trial-countdown small { color: #77879b; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.trial-countdown strong { margin-left: auto; color: var(--blue-700); font: 800 18px/1 'Manrope', sans-serif; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.trial-countdown.urgent { border-color: #ffc9c9; background: #fff5f5; }
.trial-countdown.urgent strong { color: var(--danger); animation: timerPulse 1s ease infinite; }
@keyframes timerPulse { 50% { opacity: .5; } }
.trial-shell { height: calc(100vh - 72px); display: grid; grid-template-columns: 220px minmax(0, 1fr); }
.trial-sidebar { display: flex; flex-direction: column; gap: 5px; padding: 23px 14px; color: #a7b9cf; background: var(--navy-950); overflow-y: auto; }
.trial-sidebar-title { margin: 0 10px 8px; color: #647d9e; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.trial-sidebar button { width: 100%; display: flex; align-items: center; gap: 11px; padding: 11px 12px; border: 0; border-radius: 10px; color: #a7b9cf; background: transparent; text-align: left; font-size: 10px; font-weight: 700; transition: 150ms ease; }
.trial-sidebar button span { width: 24px; color: #7892b2; text-align: center; font-size: 15px; }
.trial-sidebar button:hover { color: white; background: rgba(255,255,255,.06); }
.trial-sidebar button.active { color: white; background: linear-gradient(90deg, rgba(8,120,255,.28), rgba(8,120,255,.08)); box-shadow: inset 3px 0 var(--blue-500); }
.trial-sidebar button.active span { color: #83c2ff; }
.trial-sidebar-note { display: grid; gap: 4px; margin-top: auto; padding: 14px; border: 1px solid rgba(142,178,220,.13); border-radius: 12px; background: rgba(255,255,255,.035); }
.trial-sidebar-note b { color: #c8d7e9; font-size: 9px; }
.trial-sidebar-note span { color: #6f87a5; font-size: 7px; }
.trial-main { padding: 27px 30px 42px; overflow-y: auto; }
.trial-main-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px; }
.trial-breadcrumb { display: block; margin-bottom: 6px; color: #8a99aa; font-size: 8px; font-weight: 700; }
.trial-main-head h1 { margin-bottom: 4px; font-size: 25px; }
.trial-main-head p { margin: 0; color: var(--muted); font-size: 10px; }
.trial-date { padding: 8px 11px; border: 1px solid #dbe5ef; border-radius: 9px; color: #66778d; background: white; font-size: 8px; font-weight: 700; }
.trial-view { display: none; animation: trialViewIn 220ms ease both; }
.trial-view.active { display: block; }
@keyframes trialViewIn { from { opacity: 0; transform: translateY(7px); } }
.trial-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-bottom: 15px; }
.trial-kpis article { position: relative; min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 18px; border: 1px solid #dce6f0; border-radius: 16px; background: white; box-shadow: 0 8px 22px rgba(6,21,47,.04); }
.trial-kpis article > small { color: #7c8da2; font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.trial-kpis article > strong { margin: 5px 0 3px; font: 800 21px/1.2 'Manrope', sans-serif; letter-spacing: -.04em; }
.trial-kpis article > em { color: #7c8da2; font-size: 8px; font-style: normal; }
.trial-kpi-icon { width: 29px; height: 29px; position: absolute; top: 15px; right: 15px; display: grid; place-items: center; border-radius: 9px; font-size: 7px; font-weight: 900; }
.trial-kpi-icon.blue { color: #0878ff; background: #e7f3ff; }.trial-kpi-icon.green { color: #0a946d; background: #e7f8f2; }.trial-kpi-icon.orange { color: #d97706; background: #fff3e2; }.trial-kpi-icon.magenta { color: #d81b72; background: #fff0f7; }
.trial-kpis.compact { grid-template-columns: repeat(3, 1fr); }
.trial-kpis.compact article { min-height: 105px; }
.trial-dashboard-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 15px; margin-bottom: 15px; }
.trial-panel { border: 1px solid #dce6f0; border-radius: 17px; background: white; box-shadow: 0 8px 22px rgba(6,21,47,.035); }
.trial-panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; padding: 18px 19px; border-bottom: 1px solid #edf2f6; }
.trial-panel-head h2 { margin-bottom: 4px; font-size: 13px; }
.trial-panel-head p { margin: 0; color: #8594a7; font-size: 8px; }
.trial-panel-head > span, .trial-panel-head > button { padding: 5px 8px; border: 0; border-radius: 7px; color: #62758d; background: #f0f5f9; font-size: 7px; font-weight: 800; }
.trial-sales-chart { min-height: 270px; }
.trial-chart { height: 143px; position: relative; display: flex; align-items: end; justify-content: space-around; gap: 10px; margin: 18px 23px 0; padding: 0 12px; border-bottom: 1px solid #dce6f0; background: repeating-linear-gradient(0deg, transparent 0 35px, #edf2f6 36px); }
.trial-chart i { width: 8%; position: relative; z-index: 2; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #1997ff, #075bdf); opacity: .82; }
.trial-chart-line { height: 70px; position: absolute; inset: 38px 12px auto; border-top: 2px solid rgba(227,0,115,.55); transform: skewY(-5deg); opacity: .7; }
.trial-chart-labels { display: flex; justify-content: space-around; padding: 8px 30px 0; color: #93a1b2; font-size: 7px; }
.trial-activity { display: grid; padding: 9px 19px 16px; }
.trial-activity > div { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid #eef2f6; }
.trial-activity > div:last-child { border-bottom: 0; }
.trial-activity .dot { width: 7px; height: 7px; flex: 0 0 auto; margin-top: 4px; border-radius: 50%; }
.dot.blue { background: var(--blue-600); }.dot.magenta { background: var(--magenta); }.dot.green { background: var(--success); }.dot.orange { background: var(--orange); }
.trial-activity span { display: grid; gap: 2px; }
.trial-activity strong { font-size: 8px; }
.trial-activity small { color: #8797aa; font-size: 7px; }
.trial-quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trial-quick-actions button { display: flex; align-items: center; gap: 11px; padding: 15px; border: 1px solid #dce6f0; border-radius: 14px; color: inherit; background: white; text-align: left; transition: 160ms ease; }
.trial-quick-actions button:hover { border-color: #9fcdfa; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6,21,47,.08); }
.trial-quick-actions button > b { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; color: var(--blue-600); background: #e9f4ff; }
.trial-quick-actions span { display: grid; }.trial-quick-actions strong { font-size: 8px; }.trial-quick-actions small { color: #8a98aa; font-size: 7px; }
.trial-pos-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 15px; }
.trial-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 18px; }
.trial-products button { min-height: 120px; display: flex; flex-direction: column; align-items: flex-start; justify-content: end; padding: 14px; border: 1px solid #dce6f0; border-radius: 13px; color: inherit; background: #fbfdff; text-align: left; transition: 150ms ease; }
.trial-products button:hover { border-color: #8fc7ff; background: #f1f8ff; transform: translateY(-2px); }
.trial-products button b { margin: 12px 0 3px; font-size: 9px; }.trial-products button small { color: #7c8da1; font-size: 7px; }
.product-color { width: 26px; height: 26px; border-radius: 8px; }.product-color.blue { background: #0878ff; }.product-color.magenta { background: #e30073; }.product-color.yellow { background: #ffc928; }.product-color.navy { background: #0a2146; }.product-color.cyan { background: #30c5f4; }.product-color.orange { background: #ff7a00; }
.trial-cart { min-height: 480px; display: flex; flex-direction: column; padding-bottom: 17px; border: 1px solid #dce6f0; border-radius: 17px; background: white; box-shadow: 0 8px 22px rgba(6,21,47,.04); }
.trial-cart-items { flex: 1; padding: 10px 18px; }
.trial-empty { margin: 40px 0; color: #98a7b8; text-align: center; font-size: 9px; }
.trial-cart-row { display: grid; grid-template-columns: 1fr auto 20px; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #edf2f6; }
.trial-cart-row span { display: grid; }.trial-cart-row strong { font-size: 8px; }.trial-cart-row small { color: #8796a9; font-size: 7px; }.trial-cart-row b { font-size: 8px; }.trial-cart-row button { border: 0; color: #9aa8b8; background: transparent; }
.trial-cart-total { display: flex; justify-content: space-between; align-items: baseline; padding: 17px 18px; border-top: 1px solid #edf2f6; }.trial-cart-total span { color: #64748b; font-size: 9px; }.trial-cart-total strong { font-size: 19px; }
.trial-cart > .btn { margin-inline: 18px; }.trial-cart-note { margin: 10px 18px 0; color: #96a4b5; text-align: center; font-size: 7px; }
.trial-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 14px; }
.trial-search { width: min(360px, 100%); padding: 10px 13px; border: 1px solid #dce6f0; border-radius: 10px; color: #9aa7b7; background: white; font-size: 9px; }
.trial-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trial-project-card { overflow: hidden; border: 1px solid #dce6f0; border-radius: 17px; background: white; box-shadow: 0 8px 22px rgba(6,21,47,.035); }
.trial-project-cover { height: 110px; display: flex; align-items: center; justify-content: space-between; padding: 18px; color: white; }.trial-project-cover.blue { background: linear-gradient(135deg,#075bdf,#30c5f4); }.trial-project-cover.magenta { background: linear-gradient(135deg,#b30d63,#f1439a); }.trial-project-cover.orange { background: linear-gradient(135deg,#d95a00,#ffc928); }
.trial-project-cover span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: rgba(255,255,255,.14); font-size: 11px; font-weight: 900; }.trial-project-cover b { font-size: 19px; }
.trial-project-card > div:last-child { padding: 17px; }.trial-project-card h2 { margin: 10px 0 7px; font-size: 13px; }.trial-project-card p { color: #7b8da3; font-size: 8px; }
.trial-progress { height: 6px; overflow: hidden; margin: 15px 0; border-radius: 999px; background: #edf2f6; }.trial-progress i { height: 100%; display: block; border-radius: inherit; background: var(--blue-600); transition: 240ms ease; }
.trial-project-card button { padding: 0; border: 0; color: var(--blue-700); background: transparent; font-size: 8px; font-weight: 800; }
.trial-status { display: inline-flex; padding: 4px 7px; border-radius: 6px; font-size: 7px; font-weight: 850; }.trial-status.production { color: #0969c9; background: #e7f3ff; }.trial-status.waiting { color: #9b6100; background: #fff4df; }.trial-status.ready { color: #0a8b64; background: #e6f7f1; }.trial-status.danger { color: #c92a2a; background: #fff0f0; }
.trial-table-wrap { overflow-x: auto; }.trial-table { width: 100%; min-width: 720px; border-collapse: collapse; }.trial-table th, .trial-table td { padding: 13px 17px; border-bottom: 1px solid #edf2f6; color: #66778d; text-align: left; font-size: 8px; }.trial-table th { color: #8190a3; background: #f8fafc; font-size: 7px; text-transform: uppercase; letter-spacing: .06em; }.trial-table tr:last-child td { border-bottom: 0; }.trial-table td strong, .trial-table td small { display: block; }.trial-table td strong { color: #24364e; font-size: 9px; }.trial-table td small { color: #93a1b1; font-size: 7px; }.trial-table td button { margin-right: 4px; padding: 6px 8px; border: 1px solid #d5e1ed; border-radius: 7px; color: #496078; background: white; font-size: 7px; font-weight: 750; }.trial-table td button:hover { border-color: #83bdF7; color: var(--blue-700); }
.trial-doc-filters { display: flex; gap: 5px; overflow-x: auto; }.trial-doc-filters button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid #dce6f0; border-radius: 8px; color: #708196; background: white; font-size: 8px; font-weight: 750; }.trial-doc-filters button.active { color: white; border-color: var(--blue-600); background: var(--blue-600); }
.trial-toast { position: fixed; left: 50%; bottom: 25px; z-index: 1600; max-width: min(420px, calc(100% - 30px)); padding: 11px 15px; border-radius: 11px; color: white; background: #0a2146; box-shadow: 0 14px 35px rgba(6,21,47,.25); font-size: 9px; font-weight: 750; opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition: 180ms ease; }.trial-toast.show { opacity: 1; transform: translate(-50%, 0); }
.trial-expired { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; background: rgba(3,13,31,.82); backdrop-filter: blur(14px); }.trial-expired[hidden] { display: none; }.trial-expired > div { width: min(500px, 100%); padding: 46px; border: 1px solid rgba(159,203,255,.2); border-radius: 26px; color: white; background: var(--navy-950); box-shadow: 0 30px 80px rgba(0,0,0,.38); text-align: center; }.trial-expired span { display: inline-flex; margin-bottom: 24px; padding: 8px 12px; border-radius: 9px; color: #ffb7b7; background: rgba(224,49,49,.15); font: 800 14px/1 'Manrope', sans-serif; }.trial-expired h2 { margin-bottom: 12px; font-size: 30px; }.trial-expired p { margin-bottom: 25px; color: #9eb1ca; font-size: 12px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .nav-actions .nav-login { display: none; }
  .nav-trial > span { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .product-stage { max-width: 700px; margin-inline: auto; padding-left: 30px; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-label { grid-column: 1 / -1; text-align: center; border-bottom: 1px solid var(--line); }
  .workflow-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow-card::after { display: none; }
  .offline-layout { gap: 30px; }
  .pricing-grid { gap: 12px; }
  .price-card { padding: 25px; }
  .trial-shell { grid-template-columns: 190px minmax(0, 1fr); }
  .trial-kpis { grid-template-columns: repeat(2, 1fr); }
  .trial-products { grid-template-columns: repeat(2, 1fr); }
  .trial-quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(10,33,70,.07); backdrop-filter: blur(16px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 148px; }
  .nav-toggle { display: grid; z-index: 3; }
  .nav-toggle.open span { opacity: 0; }
  .nav-toggle.open::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 22px 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 40px rgba(6,21,47,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 13px 6px; font-size: 15px; }
  .nav-links > a::after { display: none; }
  .nav-actions .btn { display: none; }
  .hero { min-height: auto; padding: 126px 0 78px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(42px, 11vw, 62px); }
  .product-stage { padding-left: 0; }
  .app-window { min-height: 430px; transform: none; }
  .app-shell { min-height: 388px; grid-template-columns: 104px 1fr; }
  .app-content { padding: 14px; }
  .floating-card.stock { left: -6px; bottom: 26px; }
  .floating-card.sync { right: -7px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-panel.active, .offline-layout, .demo-layout, .feature-category { grid-template-columns: 1fr; }
  .feature-panel.active { gap: 30px; }
  .offline-layout { gap: 14px; }
  .bento-card.large, .bento-card.medium, .bento-card.third { grid-column: span 6; }
  .pricing-grid, .mode-grid, .offline-page-steps { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .price-card.featured { order: -1; }
  .cta-box { grid-template-columns: 1fr; padding: 42px; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trial-body { height: auto; min-height: 100vh; overflow: auto; }
  .trial-topbar { position: sticky; top: 0; }
  .trial-shell { height: calc(100vh - 72px); grid-template-columns: 1fr; grid-template-rows: 62px minmax(0, 1fr); }
  .trial-sidebar { position: relative; z-index: 20; flex-direction: row; align-items: center; gap: 5px; padding: 8px 12px; overflow-x: auto; overflow-y: hidden; }
  .trial-sidebar-title, .trial-sidebar-note { display: none; }
  .trial-sidebar button { width: auto; flex: 0 0 auto; padding: 8px 10px; white-space: nowrap; }
  .trial-sidebar button.active { box-shadow: inset 0 -3px var(--blue-500); }
  .trial-main { padding: 22px 20px 40px; }
  .trial-dashboard-grid, .trial-pos-layout { grid-template-columns: 1fr; }
  .trial-project-grid { grid-template-columns: 1fr; }
  .trial-cart { min-height: 410px; }
}

@media (max-width: 560px) {
  .section-title { font-size: 34px; }
  .hero { padding-top: 112px; }
  .hero-kicker { font-size: 10px; }
  .hero h1 { font-size: 41px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: start; text-align: left; }
  .app-window { min-height: 350px; border-radius: 18px; }
  .app-shell { min-height: 308px; grid-template-columns: 76px 1fr; }
  .app-sidebar { padding: 12px 7px; }
  .app-mini-brand { font-size: 9px; }
  .app-menu-line { height: 24px; padding: 0 4px; font-size: 5px; }
  .app-content { padding: 10px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi:last-child { display: none; }
  .app-main-grid { grid-template-columns: 1fr; }
  .app-main-grid .app-card:last-child { display: none; }
  .floating-card { min-width: 138px; padding: 10px; }
  .floating-card.sync { top: 58px; }
  .floating-card.stock { bottom: 18px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(even) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-top: 1px solid var(--line); }
  .workflow-grid { grid-template-columns: 1fr; }
  .bento-card.large, .bento-card.medium, .bento-card.third { grid-column: 1 / -1; }
  .feature-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .feature-tab { flex: 0 0 auto; }
  .module-screen { min-height: 320px; }
  .screen-row { grid-template-columns: 1.1fr .7fr .55fr; }
  .screen-row span:nth-child(4) { display: none; }
  .offline-diagram { min-height: 380px; transform: scale(.86); margin: -30px; }
  .cta-box { padding: 34px 24px; }
  .cta-actions { display: grid; }
  .page-hero { padding: 126px 0 62px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero p { font-size: 16px; }
  .page-actions { display: grid; }
  .detail-grid { grid-template-columns: 1fr; }
  .demo-layout { gap: 28px; }
  .demo-copy { padding-top: 0; }
  .demo-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 6px; }
  .whatsapp-label { display: none; }
  .whatsapp-mark { width: 38px; height: 38px; }
  .trial-topbar { height: 66px; gap: 12px; padding: 0 12px; }
  .trial-logo img { width: 132px; }
  .trial-mode { display: none; }
  .trial-topbar > .btn { display: none; }
  .trial-countdown { min-width: 112px; margin-left: auto; }
  .trial-shell { height: calc(100vh - 66px); grid-template-rows: 58px minmax(0, 1fr); }
  .trial-main { padding: 18px 13px 36px; }
  .trial-main-head { align-items: flex-start; }
  .trial-date { display: none; }
  .trial-kpis, .trial-kpis.compact { grid-template-columns: 1fr 1fr; gap: 9px; }
  .trial-kpis article { min-height: 112px; padding: 14px; }
  .trial-kpis article > strong { font-size: 17px; }
  .trial-products { grid-template-columns: 1fr 1fr; padding: 12px; }
  .trial-products button { min-height: 105px; padding: 11px; }
  .trial-quick-actions { grid-template-columns: 1fr; }
  .trial-toolbar { align-items: stretch; flex-direction: column; }
  .trial-toolbar > .btn { width: 100%; }
  .trial-expired > div { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* 2026 animated product direction — real ImpriManager screens */
.home-page { background: #f7f9fd; }
.home-page .site-header {
  background: linear-gradient(180deg, rgba(2, 10, 27, .92), rgba(2, 10, 27, .68));
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.home-page .site-header.scrolled {
  background: rgba(2, 10, 27, .94);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.home-page .brand img { width: 154px; border-radius: 5px; }
.home-page .nav-links > a { color: #b8c6dc; }
.home-page .nav-links > a:hover,
.home-page .nav-links > a.active { color: #fff; }
.home-page .nav-links > a:not(.btn)::after { background: linear-gradient(90deg, #1597ff, #df1875); }
.home-page .nav-trial { color: #fff; border-color: rgba(117,180,255,.35); background: rgba(13,45,91,.55); }
.home-page .nav-trial:hover { color: white; border-color: #4da9ff; background: rgba(15,73,145,.72); }

.hero-live {
  min-height: 940px;
  padding: 156px 0 112px;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 16%, rgba(0,118,255,.22), transparent 31%),
    radial-gradient(circle at 11% 76%, rgba(227,0,115,.16), transparent 27%),
    linear-gradient(145deg, #020918 0%, #061b3d 48%, #020a1d 100%);
}
.hero-live::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .2;
  background-image: linear-gradient(rgba(91,158,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(91,158,255,.22) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 68% 44%, #000, transparent 73%);
}
.hero-grid-lines { position: absolute; inset: auto -10% -36% 34%; z-index: -3; height: 78%; transform: perspective(800px) rotateX(67deg); background-image: linear-gradient(rgba(32,135,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(32,135,255,.18) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to top, transparent, #000 40%, transparent 92%); }
.hero-glow { position: absolute; z-index: -2; width: 420px; aspect-ratio: 1; border-radius: 50%; filter: blur(100px); opacity: .2; animation: heroDrift 9s ease-in-out infinite alternate; }
.hero-glow-blue { top: 14%; right: 3%; background: #008cff; }
.hero-glow-magenta { left: -12%; bottom: -12%; background: #e30073; animation-delay: -4s; }
.pixel-stream { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.pixel-stream i { position: absolute; width: 7px; height: 7px; border-radius: 2px; background: #1496ff; opacity: .42; animation: pixelFloat 10s linear infinite; }
.pixel-stream i:nth-child(2n) { background: #e30073; animation-duration: 13s; }
.pixel-stream i:nth-child(3n) { background: #ffc928; animation-duration: 16s; }
.pixel-stream i:nth-child(1) { left: 8%; top: 82%; }.pixel-stream i:nth-child(2) { left: 16%; top: 37%; }.pixel-stream i:nth-child(3) { left: 24%; top: 72%; }.pixel-stream i:nth-child(4) { left: 35%; top: 20%; }.pixel-stream i:nth-child(5) { left: 46%; top: 88%; }.pixel-stream i:nth-child(6) { left: 57%; top: 31%; }.pixel-stream i:nth-child(7) { left: 66%; top: 80%; }.pixel-stream i:nth-child(8) { left: 74%; top: 17%; }.pixel-stream i:nth-child(9) { left: 82%; top: 68%; }.pixel-stream i:nth-child(10) { left: 91%; top: 35%; }.pixel-stream i:nth-child(11) { left: 51%; top: 57%; }.pixel-stream i:nth-child(12) { left: 30%; top: 46%; }
.hero-live .hero-grid { grid-template-columns: minmax(390px, .82fr) minmax(620px, 1.18fr); gap: 54px; }
.hero-live .hero-copy { max-width: 590px; }
.hero-live .hero-kicker { color: #dce9fa; border-color: rgba(133,185,255,.26); background: rgba(255,255,255,.055); box-shadow: none; }
.hero-live .hero-kicker .live-dot { background: #36e0a7; box-shadow: 0 0 0 5px rgba(54,224,167,.12), 0 0 18px rgba(54,224,167,.7); animation: livePulse 1.8s ease-out infinite; }
.hero-live h1 { color: white; font-size: clamp(50px, 5.6vw, 78px); line-height: 1.01; letter-spacing: -.066em; }
.hero-live h1 .accent { color: transparent; background: linear-gradient(100deg, #3cb8ff, #dbefff 55%, #ff5dac); -webkit-background-clip: text; background-clip: text; }
.hero-live .hero-lead { color: #b4c2d7; font-size: 18px; line-height: 1.72; }
.hero-live .btn-primary { background: linear-gradient(115deg, #0878ff, #07a2ff); box-shadow: 0 18px 44px rgba(0,115,255,.32), inset 0 1px rgba(255,255,255,.25); }
.btn-ghost { color: #eef5ff; border-color: rgba(201,222,255,.24); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgba(201,222,255,.48); background: rgba(255,255,255,.1); }
.btn-trial b { padding: 5px 7px; border-radius: 7px; color: #06152f; background: #fff; font-size: 9px; letter-spacing: .05em; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.hero-metrics > div { padding: 15px 12px; border: 1px solid rgba(154,195,247,.13); border-radius: 14px; background: rgba(255,255,255,.035); }
.hero-metrics strong, .hero-metrics span { display: block; }
.hero-metrics strong { margin-bottom: 4px; color: #fff; font: 750 13px/1.2 'Manrope', sans-serif; }
.hero-metrics span { color: #8095b3; font-size: 10px; }

.live-product-stage { padding: 18px 0 42px 10px; perspective: 1600px; }
.product-aura { position: absolute; inset: 6% -3% 12% 17%; border-radius: 50%; background: radial-gradient(circle, rgba(18,132,255,.3), rgba(18,132,255,0) 68%); filter: blur(18px); animation: auraPulse 5s ease-in-out infinite; }
.real-app-window { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(154,195,247,.27); border-radius: 23px; background: #07162d; box-shadow: 0 48px 110px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.035) inset; transform: rotateY(-5deg) rotateX(1.5deg); transform-origin: center; transition: transform .55s ease, box-shadow .55s ease; }
.live-product-stage:hover .real-app-window { transform: rotateY(-1deg) rotateX(0); box-shadow: 0 58px 130px rgba(0,0,0,.58), 0 0 60px rgba(0,118,255,.11); }
.real-app-topbar { height: 42px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 12px; padding: 0 15px; border-bottom: 1px solid rgba(155,196,255,.13); background: linear-gradient(180deg, #0d203e, #09162b); }
.window-dots { display: flex; gap: 6px; }.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #ff6a6a; }.window-dots i:nth-child(2) { background: #ffc650; }.window-dots i:nth-child(3) { background: #2fd29e; }
.real-app-address { justify-self: center; display: inline-flex; align-items: center; gap: 7px; color: #8296b3; font-size: 9px; }.real-app-address i { width: 6px; height: 6px; border-radius: 50%; background: #2fd29e; box-shadow: 0 0 10px rgba(47,210,158,.7); }
.real-app-live { display: inline-flex; align-items: center; gap: 5px; color: #c4d6ed; font-size: 9px; font-weight: 750; }.real-app-live i { width: 6px; height: 6px; border-radius: 50%; background: #ff3d8d; animation: livePulse 1.8s infinite; }
.real-app-viewport { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #f5f7fa; }
.real-app-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035) translateY(5px); transition: opacity .7s ease, transform 1.1s cubic-bezier(.2,.75,.25,1); }
.real-app-shot.active { opacity: 1; transform: scale(1); }
.screen-sheen { position: absolute; inset: 0 auto 0 -55%; width: 32%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transform: skewX(-13deg); animation: screenSheen 7s ease-in-out infinite 1s; }
.real-app-controls { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(155,196,255,.12); background: #07152b; }
.real-app-controls button { min-height: 55px; padding: 8px 10px; border: 0; border-right: 1px solid rgba(155,196,255,.1); color: #7186a5; background: transparent; font-size: 9px; font-weight: 720; transition: .2s ease; }
.real-app-controls button:last-child { border-right: 0; }.real-app-controls button span { margin-right: 5px; color: #436080; font-size: 8px; }
.real-app-controls button:hover { color: #d9e8fb; background: rgba(255,255,255,.035); }.real-app-controls button.active { color: #fff; background: linear-gradient(180deg, rgba(8,120,255,.2), rgba(8,120,255,.05)); box-shadow: inset 0 2px #138eff; }
.showcase-progress { height: 3px; overflow: hidden; background: rgba(255,255,255,.055); }.showcase-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, #128fff, #df1875, #ffc928); }.is-playing .showcase-progress i { animation: showcaseProgress 4.5s linear forwards; }
.live-float { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(165,202,255,.25); border-radius: 15px; color: #fff; background: rgba(5,20,47,.84); box-shadow: 0 20px 45px rgba(0,0,0,.28); backdrop-filter: blur(16px); animation: floatingCard 4.5s ease-in-out infinite; }
.live-float > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: linear-gradient(135deg, #0878ff, #30c5f4); font-weight: 900; }.live-float small, .live-float strong { display: block; }.live-float small { color: #8ea2bf; font-size: 8px; }.live-float strong { font-size: 10px; }
.live-float-sales { right: -24px; top: 18%; }.live-float-offline { left: -26px; bottom: 17%; animation-delay: -2.1s; }.live-float-offline > span { color: #052b21; background: #39dda9; }
.real-capture-note { position: relative; z-index: 3; display: flex; align-items: center; justify-content: center; gap: 7px; margin: 17px 0 0; color: #6f86a5; font-size: 9px; }.real-capture-note i { width: 6px; height: 6px; border-radius: 50%; background: #35dda8; box-shadow: 0 0 10px rgba(53,221,168,.75); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; z-index: 3; display: grid; justify-items: center; gap: 5px; color: #607a9e; font-size: 8px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }.scroll-cue span { width: 21px; height: 33px; border: 1px solid rgba(154,195,247,.25); border-radius: 99px; }.scroll-cue span::after { content: ''; width: 3px; height: 6px; display: block; margin: 7px auto 0; border-radius: 99px; background: #48b8ff; animation: scrollDot 1.8s ease-in-out infinite; }

.home-page .trust-strip {
  border-color: rgba(255,255,255,.06);
  color: #dbe9fa;
  background: linear-gradient(180deg, #030c1d 0%, #06152f 100%);
}
.home-page .trust-inner {
  border-color: rgba(113,174,255,.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 5% 0%, rgba(227,0,115,.13), transparent 30%),
    radial-gradient(circle at 95% 100%, rgba(8,120,255,.17), transparent 34%),
    rgba(7,24,52,.96);
  box-shadow: 0 28px 70px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}
.home-page .trust-label {
  color: #fff;
  border-color: rgba(255,255,255,.08);
  font-size: 14px;
}
.home-page .trust-item {
  border-color: rgba(255,255,255,.08);
  transition: background .25s ease;
}
.home-page .trust-item:hover { background: rgba(20,142,255,.07); }
.home-page .trust-item span { color: #8fa5c3; }
.home-page .trust-item b { color: #f3f8ff; }
.home-page .trust-strip + .section { padding-top: 40px; }
.home-page .workflow-card { overflow: hidden; border-color: #e1eaf5; background: linear-gradient(155deg, #fff, #f6f9fd); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }.home-page .workflow-card:hover { transform: translateY(-8px); border-color: #a9cef8; box-shadow: 0 25px 55px rgba(7,52,112,.11); }.home-page .workflow-number { color: transparent; -webkit-text-stroke: 1px #9dc9f8; }
.home-page #produit { background: linear-gradient(180deg, #eef4fb, #f8fbff); }
.home-page .feature-tabs { position: sticky; top: 96px; z-index: 20; width: max-content; max-width: 100%; padding: 6px; border: 1px solid rgba(9,51,100,.1); border-radius: 16px; background: rgba(255,255,255,.82); box-shadow: 0 12px 32px rgba(6,33,72,.08); backdrop-filter: blur(16px); }
.home-page .feature-tab { border-radius: 11px; }
.home-page .feature-panel.active { align-items: center; gap: 46px; }
.real-screen-card { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(48,88,135,.18); border-radius: 22px; background: #07162c; box-shadow: 0 30px 70px rgba(6,21,47,.18); transition: transform .45s ease, box-shadow .45s ease; }.real-screen-card:hover { transform: translateY(-7px) scale(1.008); box-shadow: 0 40px 90px rgba(6,21,47,.24); }.real-screen-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }.real-screen-card figcaption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 18px; color: #dceafb; }.real-screen-card figcaption strong { flex: 0 0 auto; font-size: 11px; }.real-screen-card figcaption span { color: #748aa8; text-align: right; font-size: 8px; }.real-screen-badge { position: absolute; z-index: 2; right: 13px; top: 13px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: white; background: rgba(3,17,40,.78); backdrop-filter: blur(9px); font-size: 8px; font-weight: 800; }.real-screen-badge i { width: 5px; height: 5px; border-radius: 50%; background: #37dda9; box-shadow: 0 0 8px rgba(55,221,169,.85); }
.project-media-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 28px; }.project-media-strip figure { position: relative; overflow: hidden; min-height: 106px; margin: 0; border-radius: 13px; background: #dfe8f2; }.project-media-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }.project-media-strip figure:hover img { transform: scale(1.08); filter: saturate(1.08); }.project-media-strip figcaption { position: absolute; inset: auto 0 0; padding: 22px 9px 8px; color: #fff; background: linear-gradient(transparent, rgba(3,13,31,.78)); font-size: 8px; font-weight: 800; }
.home-page .section-dark { overflow: hidden; background: radial-gradient(circle at 80% 30%, rgba(8,120,255,.17), transparent 34%), #020b1e; }.home-page .sync-orbit { animation: orbitSpin 12s linear infinite; }.home-page .device-card { animation: deviceHover 5s ease-in-out infinite; }.home-page .cloud-node { animation: cloudGlow 3s ease-in-out infinite; }
.home-page .cta-box { overflow: hidden; background: radial-gradient(circle at 93% 10%, rgba(48,197,244,.22), transparent 35%), linear-gradient(130deg, #04152f, #082d68); }.home-page .site-footer { background: #010713; }.home-page .footer-brand img { filter: drop-shadow(0 18px 30px rgba(0,0,0,.28)); }

@keyframes heroDrift { to { transform: translate3d(38px,-28px,0) scale(1.08); } }
@keyframes pixelFloat { 0% { transform: translateY(80px) rotate(0); opacity: 0; } 15% { opacity: .45; } 85% { opacity: .28; } 100% { transform: translateY(-190px) rotate(170deg); opacity: 0; } }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(54,224,167,.48); } 75%,100% { box-shadow: 0 0 0 9px rgba(54,224,167,0); } }
@keyframes auraPulse { 50% { opacity: .6; transform: scale(1.08); } }
@keyframes screenSheen { 0%,62% { left: -55%; } 85%,100% { left: 130%; } }
@keyframes showcaseProgress { to { width: 100%; } }
@keyframes floatingCard { 50% { transform: translateY(-9px); } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes deviceHover { 50% { transform: translateY(-8px); } }
@keyframes cloudGlow { 50% { box-shadow: 0 0 38px rgba(8,120,255,.23); } }

@media (max-width: 1180px) {
  .hero-live .hero-grid { grid-template-columns: minmax(350px,.8fr) minmax(540px,1.2fr); gap: 34px; }
  .live-float-sales { right: -8px; }.live-float-offline { left: -8px; }
}
@media (max-width: 1050px) {
  .hero-live { min-height: auto; padding-bottom: 128px; }
  .hero-live .hero-grid { grid-template-columns: 1fr; }
  .hero-live .hero-copy { max-width: 780px; }
  .hero-metrics { max-width: 650px; margin-inline: auto; }
  .live-product-stage { width: min(830px, 100%); max-width: none; }
}
@media (max-width: 820px) {
  .home-page .site-header { background: rgba(2,10,27,.96); }
  .home-page .nav-links { border-color: rgba(255,255,255,.08); background: rgba(2,10,27,.98); }
  .home-page .nav-links > a { color: #c9d8ec; }
  .home-page .nav-toggle { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
  .home-page .nav-toggle span, .home-page .nav-toggle::before, .home-page .nav-toggle::after { background: #fff; }
  .hero-live { padding-top: 126px; }
  .hero-live h1 { font-size: clamp(45px, 10.5vw, 65px); }
  .live-product-stage { padding: 0 4px 38px; }
  .real-app-window { transform: none; }
  .live-product-stage:hover .real-app-window { transform: none; }
  .live-float { display: none; }
  .real-app-controls button { min-height: 49px; font-size: 8px; }
  .project-media-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-page .brand img { width: 128px; }
  .hero-live { padding: 118px 0 96px; }
  .hero-live .hero-copy { text-align: left; }
  .hero-live .hero-kicker { width: fit-content; }
  .hero-live h1 { font-size: 43px; }
  .hero-live .hero-lead { margin-inline: 0; font-size: 16px; }
  .hero-live .hero-actions { display: grid; }
  .hero-metrics { grid-template-columns: 1fr; margin-top: 25px; }
  .hero-metrics > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .hero-metrics strong { margin: 0; }
  .real-app-window { margin-inline: -7px; border-radius: 15px; }
  .real-app-topbar { height: 34px; grid-template-columns: 55px 1fr auto; padding-inline: 10px; }
  .real-app-address { font-size: 7px; }
  .real-app-controls { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .real-app-controls button { min-height: 45px; padding: 6px 2px; font-size: 0; }
  .real-app-controls button span { margin: 0; color: #91a8c7; font-size: 9px; }
  .real-app-controls button.active span { color: #fff; }
  .real-capture-note { font-size: 8px; }
  .home-page .feature-tabs { top: 78px; width: 100%; }
  .real-screen-card { border-radius: 15px; }
  .real-screen-card figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .real-screen-card figcaption span { text-align: left; }
  .project-media-strip { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .pixel-stream i, .screen-sheen, .live-float, .scroll-cue span::after, .sync-orbit, .device-card, .cloud-node, .showcase-progress i { animation: none !important; }
  .real-app-shot { transition: none; }
}

/* =========================================================================
   Corrections lisibilité, accessibilité et bloc SEO
   ========================================================================= */

/* Le texte de contenu descendait à 11 px : trop petit pour du corps de texte,
   surtout sur mobile. Ces tailles ne concernent que le contenu réel du site,
   pas les maquettes d'interface (.trial-*, .screen-*) volontairement réduites. */
.detail-card h3 { font-size: 16px; }
.detail-card p { font-size: 13.5px; line-height: 1.6; color: #56677f; }
.check-list li { font-size: 14px; line-height: 1.55; }
.comparison-table th, .comparison-table td { font-size: 13px; }
.comparison-table thead th { font-size: 14px; }
.feature-category > div:first-child p { font-size: 14.5px; }
.trust-item { font-size: 12px; }
.trust-item b { font-size: 14px; }

/* #64748b sur fond --soft ne donnait que 4,46:1 — sous le seuil AA (4,5:1)
   pour du texte courant. */
.section-lead, .plan-desc, .bento-card p { color: #56677f; }

/* Grille du bloc « Conçu pour le Maroc » : 6 cartes lisibles sur une largeur
   pleine, sinon les cartes deviennent démesurément larges en 2 colonnes. */
.detail-grid-4 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1050px) { .detail-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .detail-grid-4 { grid-template-columns: 1fr; } }

/* Bloc de contexte en pied de page (métiers et villes couverts). */
.footer-seo {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(159, 203, 255, 0.12);
}
.footer-seo p {
  max-width: 900px;
  margin: 0 0 8px;
  color: #8ea2bd;
  font-size: 12.5px;
  line-height: 1.7;
}
.footer-seo p:last-child { margin-bottom: 0; }
.footer-seo strong { color: #c9dbf3; }

/* Réserve la place des images avant leur chargement (évite le décalage de
   mise en page / CLS) tout en gardant le rendu fluide. */
img[width][height] { height: auto; }
