/* ═══════════════════════════════════════════════
   KeepOn Landing — couleurs & style de l'app
   ═══════════════════════════════════════════════ */

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

:root {
  --blue:       #2f6bff;
  --blue-d:     #2055e0;
  --blue-soft:  #e9f0ff;
  --ink:        #0e1626;
  --ink2:       #162030;
  --text:       #1f2a37;
  --muted:      #6b7280;
  --border:     #e7eaf0;
  --bg:         #f4f5f8;
  --card:       #ffffff;
  --green:      #16a34a;
  --red:        #e2483d;
  --amber:      #d97706;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-card: 0 1px 3px rgba(16,24,40,.05), 0 4px 18px rgba(16,24,40,.08);
  --shadow-lg:   0 8px 48px rgba(16,24,40,.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #fff; color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── BUTTONS ─── */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; text-decoration: none;
  padding: 10px 22px; border-radius: 11px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(47,107,255,.32);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-blue:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(47,107,255,.42); }
.btn-blue svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-blue.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn-ghost { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; padding: 9px 16px; border-radius: 9px; transition: background .15s; }
.btn-ghost:hover { background: var(--bg); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.25); transition: border-color .15s, background .15s;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 10px 0;
  box-shadow: 0 2px 16px rgba(16,24,40,.06);
}
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 28px; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 30px; object-fit: contain; }
.nav-links { display: flex; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; padding: 7px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: all .2s; }
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ─── SECTION HEADS ─── */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-family: 'Sora', sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -.02em; margin: 10px 0 12px; color: var(--text); }
.sec-head p { color: var(--muted); font-size: 16px; max-width: 480px; margin: 0 auto; }
.sec-badge { display: inline-flex; background: var(--blue-soft); color: var(--blue); padding: 5px 13px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ─── AOS ─── */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

.afu { opacity: 0; transform: translateY(22px); animation: fadeup .65s ease forwards; }
.d1{animation-delay:.12s} .d2{animation-delay:.24s} .d3{animation-delay:.36s} .d4{animation-delay:.48s}
@keyframes fadeup { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .28; }
.g1 { width: 560px; height: 560px; background: var(--blue); top: -180px; left: -80px; animation: gm 9s ease-in-out infinite; }
.g2 { width: 420px; height: 420px; background: #1a3a7a; top: 80px; right: -100px; animation: gm 11s ease-in-out infinite reverse; }
@keyframes gm { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(18px,-22px) scale(1.04)} }
.dots-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 32px 32px; }

.hero-content { text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 500;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title { font-family: 'Sora', sans-serif; font-size: clamp(36px,6.5vw,72px); font-weight: 800; line-height: 1.07; letter-spacing: -.03em; color: #fff; }
.text-blue { color: var(--blue); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.55); max-width: 540px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-kpis {
  display: flex; align-items: center; gap: 28px;
  padding: 20px 28px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  backdrop-filter: blur(10px); margin-top: 8px;
}
.hkpi { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hkpi-v { font-size: 28px; font-weight: 900; font-family: 'Sora', sans-serif; color: var(--blue); }
.hkpi-l { font-size: 11px; color: rgba(255,255,255,.4); white-space: nowrap; }
.hkpi-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* MOCKUP */
.hero-mockup { position: relative; margin-top: 60px; width: 100%; max-width: 900px; z-index: 1; }
.mockup-win { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 80px rgba(0,0,0,.5); background: #fff; }
.win-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.wd { width: 11px; height: 11px; border-radius: 50%; }
.wd.r{background:#ff5f57} .wd.y{background:#febc2e} .wd.g{background:#28c840}
.win-url { margin-left: 10px; font-size: 11px; color: var(--muted); background: #fff; border: 1px solid var(--border); padding: 3px 12px; border-radius: 6px; flex: 1; text-align: center; }
.win-body { display: flex; height: 340px; }

.mk-sidebar { width: 48px; background: var(--ink); border-right: 1px solid rgba(255,255,255,.05); display: flex; flex-direction: column; align-items: center; padding: 14px 0; gap: 6px; }
.mk-sb-top { margin-bottom: 10px; }
.mk-logo-dot { width: 24px; height: 24px; background: var(--blue); border-radius: 7px; }
.mk-nav { display: flex; flex-direction: column; gap: 3px; }
.mk-ni { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 7px; color: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; }
.mk-ni svg { width: 15px; height: 15px; }
.mk-ni.active { background: rgba(47,107,255,.25); color: var(--blue); }
.mk-ni:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.7); }

.mk-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; background: var(--bg); }
.mk-topbar { display: flex; justify-content: space-between; align-items: flex-start; }
.mk-page-title { font-size: 14px; font-weight: 800; color: var(--text); }
.mk-page-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }
.mk-periods { display: flex; gap: 3px; }
.mkp { font-size: 10px; padding: 4px 8px; border-radius: 6px; color: var(--muted); cursor: pointer; transition: all .2s; }
.mkp.active { background: var(--blue); color: #fff; }
.mk-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.mk-kpi { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 9px; display: flex; flex-direction: column; gap: 3px; }
.mk-kpi-ico { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 3px; }
.mk-kpi-ico svg { width: 14px; height: 14px; }
.kc-blue .mk-kpi-ico { background: rgba(47,107,255,.1); color: var(--blue); }
.kc-amber .mk-kpi-ico { background: rgba(217,119,6,.1); color: var(--amber); }
.kc-green .mk-kpi-ico { background: rgba(22,163,74,.1); color: var(--green); }
.kc-ink .mk-kpi-ico { background: rgba(14,22,38,.08); color: var(--ink); }
.mk-kpi-v { font-size: 16px; font-weight: 900; font-family: 'Sora',sans-serif; color: var(--text); }
.mk-kpi-l { font-size: 9px; color: var(--muted); }
.mk-chart-zone { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 10px; }
.mk-chart-title { font-size: 11px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.mk-bars { display: flex; flex-direction: column; gap: 6px; }
.mk-bar-row { display: flex; align-items: center; gap: 7px; font-size: 9px; color: var(--muted); }
.mk-bar-row > span:first-child { width: 70px; }
.mk-bar-bg { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.mk-bar-fill { height: 100%; background: var(--blue); border-radius: 3px; animation: bf 1.2s ease-out; }
@keyframes bf { from { width: 0 !important; } }
.mk-pct { font-size: 9px; color: var(--blue); font-weight: 700; width: 26px; text-align: right; }

.float-phone { position: absolute; right: -32px; bottom: -10px; transform: rotate(3.5deg); }
.fp-frame { width: 150px; background: var(--ink); border-radius: 22px; border: 2px solid rgba(255,255,255,.12); box-shadow: 0 20px 60px rgba(0,0,0,.5); overflow: hidden; }
.fp-notch { width: 55px; height: 8px; background: #060d18; border-radius: 0 0 8px 8px; margin: 0 auto 7px; }
.fp-screen { padding: 7px; display: flex; flex-direction: column; gap: 6px; }
.fp-title { font-size: 10px; font-weight: 700; color: #fff; }
.fp-sub { font-size: 7px; color: rgba(255,255,255,.4); }
.fp-row-stats { display: flex; gap: 5px; }
.fp-stat { flex: 1; background: rgba(255,255,255,.06); border-radius: 6px; padding: 4px; text-align: center; }
.fps-v { display: block; font-size: 13px; font-weight: 800; color: #fff; }
.fp-stat.green .fps-v { color: var(--green); }
.fp-stat.amber .fps-v { color: var(--amber); }
.fps-l { font-size: 6px; color: rgba(255,255,255,.35); }
.fp-visits { display: flex; flex-direction: column; gap: 4px; }
.fp-visit { display: flex; align-items: center; gap: 5px; padding: 4px; background: rgba(255,255,255,.05); border-radius: 6px; }
.fp-av { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: #fff; flex-shrink: 0; }
.fp-vi { flex: 1; min-width: 0; }
.fp-vn { font-size: 7px; font-weight: 600; color: #fff; }
.fp-vs { font-size: 6px; color: rgba(255,255,255,.4); }
.fp-badge { font-size: 7px; padding: 2px 4px; border-radius: 4px; flex-shrink: 0; margin-left: auto; }
.fp-badge.done { background: rgba(22,163,74,.2); color: var(--green); }
.fp-badge.cur { background: rgba(217,119,6,.2); color: var(--amber); }
.fp-new { width: 100%; padding: 6px; background: var(--blue); color: #fff; border: none; border-radius: 8px; font-size: 8px; font-weight: 700; cursor: pointer; }

/* ═══════════════ FEATURES ═══════════════ */
.features { padding: 96px 0; background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); transition: all .2s; }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(47,107,255,.2); }
.fc-span2 { grid-column: span 2; }
.fc-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fc-ico svg { width: 22px; height: 22px; }
.fci-blue { background: rgba(47,107,255,.1); color: var(--blue); }
.fci-red  { background: rgba(226,72,61,.1); color: var(--red); }
.fci-amber{ background: rgba(217,119,6,.1); color: var(--amber); }
.fci-green{ background: rgba(22,163,74,.1); color: var(--green); }
.fci-ink  { background: rgba(14,22,38,.07); color: var(--ink); }
.feat-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.fc-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.fc-chips span { font-size: 11px; padding: 3px 9px; border-radius: 6px; background: var(--bg); color: var(--muted); border: 1px solid var(--border); font-weight: 500; }

.fc-coming {
  display: inline-flex; align-items: center;
  background: rgba(217,119,6,.1); color: var(--amber);
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 100px; margin-left: 8px; vertical-align: middle;
  border: 1px solid rgba(217,119,6,.2);
}

.mob-plat-soon { opacity: .55; }

/* ═══════════════ SCREENSHOTS ═══════════════ */
.screenshots { padding: 96px 0; background: #fff; }
.sc-tabs { display: flex; gap: 5px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.sct { padding: 9px 18px; border-radius: 9px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.sct:hover { background: var(--bg); color: var(--text); }
.sct.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.sc-panel { display: none; }
.sc-panel.active { display: block; }

.sc-win { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.sc-winbar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.sc-winurl { margin-left: 10px; font-size: 11px; color: var(--muted); background: #fff; border: 1px solid var(--border); padding: 3px 12px; border-radius: 6px; flex: 1; text-align: center; }
.sc-body { display: flex; height: 420px; }
.sc-sb { width: 48px; background: var(--ink); border-right: 1px solid rgba(255,255,255,.05); display: flex; flex-direction: column; align-items: center; padding: 14px 0; gap: 6px; }
.sc-sb-logo { width: 24px; height: 24px; background: var(--blue); border-radius: 7px; margin-bottom: 8px; }
.sc-sb-i { width: 30px; height: 30px; background: rgba(255,255,255,.06); border-radius: 7px; }
.sc-sb-i.active { background: rgba(47,107,255,.25); }
.sc-main { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; background: var(--bg); }
.sc-ph { display: flex; justify-content: space-between; align-items: flex-start; }
.sc-pt { font-size: 15px; font-weight: 800; color: var(--text); }
.sc-ps { font-size: 11px; color: var(--muted); margin-top: 3px; }
.sc-periods { display: flex; gap: 4px; }
.sc-per { font-size: 11px; padding: 5px 10px; border-radius: 7px; color: var(--muted); cursor: pointer; }
.sc-per.active { background: var(--blue); color: #fff; }
.sc-btn-blue { background: var(--blue); color: #fff; border: none; padding: 8px 14px; border-radius: 9px; font-size: 12px; font-weight: 700; cursor: pointer; }

.sc-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.sc-kpi { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.sc-kv { font-size: 18px; font-weight: 900; font-family: 'Sora',sans-serif; }
.sc-kl { font-size: 10px; color: var(--muted); margin-top: 2px; }
.sc-kpi.blue .sc-kv { color: var(--blue); }
.sc-kpi.amber .sc-kv { color: var(--amber); }
.sc-kpi.green .sc-kv { color: var(--green); }
.sc-kpi.ink .sc-kv { color: var(--ink); }
.sc-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sc-chart { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.sc-ct { font-size: 11px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.sc-cbars { display: flex; flex-direction: column; gap: 7px; }
.sc-cbr { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--muted); }
.sc-cbr > span:first-child { width: 70px; }
.sc-cbg { flex: 1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.sc-cbf { height: 100%; background: var(--blue); border-radius: 3px; }
.sc-cp { font-size: 10px; color: var(--blue); font-weight: 700; width: 28px; text-align: right; }
.sc-acts { display: flex; flex-direction: column; gap: 7px; }
.sc-act { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); }
.sc-ad { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sc-act.ag .sc-ad { background: var(--green); }
.sc-act.ab .sc-ad { background: var(--blue); }
.sc-act.aa .sc-ad { background: var(--amber); }

.sc-vstats { display: flex; gap: 8px; }
.sc-vs { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 9px 14px; text-align: center; }
.sc-vsv { display: block; font-size: 18px; font-weight: 900; font-family: 'Sora',sans-serif; color: var(--text); }
.sc-vs.green .sc-vsv { color: var(--green); } .sc-vs.amber .sc-vsv { color: var(--amber); } .sc-vs.red .sc-vsv { color: var(--red); }
.sc-vsl { font-size: 10px; color: var(--muted); }
.sc-vlist { display: flex; flex-direction: column; gap: 5px; overflow: auto; }
.sc-vi { display: flex; align-items: center; gap: 10px; padding: 9px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; }
.sc-vav { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.sc-vn { font-size: 12px; font-weight: 600; color: var(--text); }
.sc-vd { font-size: 11px; color: var(--muted); }
.sc-vb { font-size: 10px; padding: 3px 9px; border-radius: 6px; margin-left: auto; }
.sc-vb.green { background: rgba(22,163,74,.1); color: var(--green); }
.sc-vb.amber { background: rgba(217,119,6,.1); color: var(--amber); }
.sc-vb.red  { background: rgba(226,72,61,.1); color: var(--red); }

.sc-table { overflow: hidden; }
.sc-thead { display: grid; grid-template-columns: 60px 1fr 1fr 80px 80px; gap: 8px; padding: 8px 10px; font-size: 10px; color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .04em; background: var(--bg); }
.sc-tr { display: grid; grid-template-columns: 60px 1fr 1fr 80px 80px; gap: 8px; padding: 9px 10px; font-size: 12px; color: var(--text); border-bottom: 1px solid var(--bg); align-items: center; background: var(--card); }
.sc-tr:hover { background: var(--bg); }
.sc-b { font-size: 10px; padding: 3px 8px; border-radius: 5px; text-align: center; }
.sc-b.green { background: rgba(22,163,74,.1); color: var(--green); }
.sc-b.blue  { background: rgba(47,107,255,.1); color: var(--blue); }
.sc-b.amber { background: rgba(217,119,6,.1); color: var(--amber); }
.sc-b.red   { background: rgba(226,72,61,.1); color: var(--red); }
.sc-b.gray  { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

.sc-alert-band { display: flex; align-items: center; gap: 8px; background: rgba(226,72,61,.07); border: 1px solid rgba(226,72,61,.2); color: var(--red); padding: 9px 13px; border-radius: 8px; font-size: 12px; font-weight: 600; }

.sc-delis { display: flex; flex-direction: column; gap: 10px; }
.sc-deli { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 13px; }
.sc-deli-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.sc-deli-t { font-size: 13px; font-weight: 700; color: var(--text); }
.sc-deli-p { display: flex; align-items: center; gap: 10px; }
.sc-dpb { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.sc-dpb div { height: 100%; background: var(--blue); border-radius: 3px; }
.sc-deli-p span { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ═══════════════ MOBILE ═══════════════ */
.mobile-sec { padding: 96px 0; background: var(--bg); overflow: hidden; }
.mobile-inner { display: flex; align-items: center; gap: 72px; }
.mob-text { flex: 1; }
.mob-text h2 { font-family: 'Sora',sans-serif; font-size: clamp(26px,4vw,40px); font-weight: 800; letter-spacing: -.02em; margin: 10px 0 14px; }
.mob-text > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.mob-feats { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.mob-feats li { display: flex; gap: 13px; align-items: flex-start; }
.mf-ico { width: 34px; height: 34px; background: rgba(47,107,255,.1); color: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mf-ico svg { width: 16px; height: 16px; }
.mob-feats strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.mob-feats span { font-size: 13px; color: var(--muted); }
.mob-plats { display: flex; gap: 8px; }
.mob-plat { display: inline-flex; align-items: center; gap: 7px; background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 9px 14px; border-radius: 9px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-card); }

.mob-phones { flex-shrink: 0; position: relative; width: 320px; height: 480px; }
.mob-phone { position: absolute; }
.p-back { right: 0; top: 40px; transform: rotate(4deg); z-index: 1; }
.p-front { left: 0; top: 0; transform: rotate(-2deg) translateY(20px); z-index: 2; }
.mpf { width: 172px; background: var(--ink); border-radius: 26px; border: 2px solid rgba(255,255,255,.1); overflow: hidden; box-shadow: 0 28px 72px rgba(14,22,38,.4); }
.mpf-notch { width: 66px; height: 9px; background: #060d18; border-radius: 0 0 9px 9px; margin: 0 auto 9px; }
.mpf-screen { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.mpf-title { font-size: 11px; font-weight: 700; color: #fff; }
.mpf-sub { font-size: 8px; color: rgba(255,255,255,.4); margin-bottom: 5px; }
.mpf-stepper { display: flex; align-items: center; gap: 5px; }
.mpf-step { font-size: 8px; padding: 3px 7px; border-radius: 5px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
.mpf-step.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.mpf-line { flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.mpf-filter { display: flex; gap: 4px; }
.mpf-f { font-size: 8px; padding: 3px 8px; border-radius: 5px; color: rgba(255,255,255,.4); cursor: pointer; }
.mpf-f.active { background: var(--blue); color: #fff; }
.mpf-clients { display: flex; flex-direction: column; gap: 4px; }
.mpf-cl { display: flex; align-items: center; gap: 6px; padding: 6px; background: rgba(255,255,255,.05); border-radius: 8px; color: rgba(255,255,255,.4); font-size: 10px; }
.mpf-av { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: #fff; flex-shrink: 0; }
.mpf-cn { font-size: 9px; font-weight: 600; color: #fff; }
.mpf-ca { font-size: 7px; color: rgba(255,255,255,.4); }
.mpf-catalog { display: flex; flex-direction: column; gap: 5px; }
.mpf-item { display: flex; align-items: center; justify-content: space-between; padding: 7px; background: rgba(255,255,255,.05); border-radius: 7px; }
.mpf-iname { font-size: 9px; font-weight: 600; color: #fff; }
.mpf-ip { font-size: 8px; color: var(--blue); font-weight: 600; }
.mpf-qty { display: flex; align-items: center; gap: 4px; }
.mpf-qty button { width: 18px; height: 18px; border-radius: 5px; background: rgba(47,107,255,.25); color: var(--blue); border: none; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mpf-qty span { font-size: 10px; font-weight: 700; color: #fff; min-width: 13px; text-align: center; }
.mpf-total { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08); }
.mpf-total span { font-size: 9px; color: rgba(255,255,255,.5); }
.mpf-tv { font-size: 12px; font-weight: 900 !important; color: var(--blue) !important; }
.mpf-confirm { width: 100%; padding: 8px; background: var(--blue); color: #fff; border: none; border-radius: 9px; font-size: 10px; font-weight: 700; cursor: pointer; }

/* ═══════════════ PRICING ═══════════════ */
.pricing { padding: 96px 0; background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 860px; margin: 0 auto; }
.price-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; box-shadow: var(--shadow-card); transition: all .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg); }
.pc-top-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; padding: 4px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.pc-name { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.pc-price { font-size: 44px; font-weight: 900; font-family: 'Sora',sans-serif; color: var(--text); line-height: 1; margin-bottom: 8px; }
.pc-dh { font-size: 18px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--muted); }
.pc-mo { font-size: 13px; color: var(--muted); font-weight: 400; }
.pc-sur { font-size: 26px; font-weight: 800; font-family: 'Sora',sans-serif; color: var(--text); display: block; padding: 12px 0 8px; }
.pc-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pc-list li { font-size: 13px; display: flex; align-items: center; gap: 8px; }
.pc-list li.on { color: var(--text); } .pc-list li.on::before { content: '✓'; color: var(--green); font-weight: 700; }
.pc-list li.off { color: var(--border); } .pc-list li.off::before { content: '—'; color: var(--border); }
.pc-cta { display: block; text-align: center; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
.pc-cta.blue { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(47,107,255,.3); }
.pc-cta.blue:hover { background: var(--blue-d); }
.pc-cta.outline { border: 1.5px solid var(--border); color: var(--text); }
.pc-cta.outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

/* ═══════════════ DEMO ═══════════════ */
.demo-sec { padding: 72px 0; background: var(--bg); }
.demo-card { background: linear-gradient(135deg, var(--ink), var(--ink2)); border-radius: var(--radius-lg); padding: 56px; display: flex; gap: 56px; align-items: center; box-shadow: var(--shadow-lg); }
.demo-left { flex: 1; }
.demo-left h2 { font-family: 'Sora',sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: #fff; margin-bottom: 10px; }
.demo-left > p { color: rgba(255,255,255,.5); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.demo-accs { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.demo-acc { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 11px; }
.da-r { display: block; font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.da-c { font-size: 11px; color: rgba(255,255,255,.45); font-family: monospace; }
.demo-right { display: flex; flex-direction: column; align-items: center; gap: 18px; flex-shrink: 0; }
.demo-browser { width: 260px; background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.demo-bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; background: var(--bg); border-bottom: 1px solid var(--border); }
.demo-url { margin-left: 8px; font-size: 10px; color: var(--muted); background: #fff; border: 1px solid var(--border); padding: 3px 10px; border-radius: 5px; flex: 1; text-align: center; }
.demo-screen { padding: 20px; }
.demo-login { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.demo-logo-img { height: 26px; object-fit: contain; margin-bottom: 4px; }
.demo-field { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 9px 13px; font-size: 12px; color: var(--text); }
.demo-field.pw { font-family: monospace; letter-spacing: 3px; }
.demo-submit { width: 100%; background: var(--blue); color: #fff; padding: 9px; border-radius: 8px; text-align: center; font-size: 13px; font-weight: 700; cursor: pointer; }
.demo-launch { width: 100%; justify-content: center; }

/* ═══════════════ CONTACT ═══════════════ */
.contact-sec { padding: 96px 0; background: #fff; }
.contact-inner { display: flex; gap: 72px; align-items: flex-start; }
.contact-left { flex: 1; }
.contact-left h2 { font-family: 'Sora',sans-serif; font-size: clamp(24px,3vw,36px); font-weight: 800; letter-spacing: -.02em; margin: 10px 0 14px; }
.contact-left > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.contact-mail { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; }
.contact-mail svg { color: var(--blue); flex-shrink: 0; }
.contact-form { flex: 1.2; display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 5px; }
.cf-g label { font-size: 12px; font-weight: 700; color: var(--text); }
.cf-g input, .cf-g textarea { background: var(--bg); border: 1.5px solid var(--border); border-radius: 11px; padding: 11px 14px; color: var(--text); font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s, box-shadow .15s; }
.cf-g input:focus, .cf-g textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(47,107,255,.08); }
.cf-g input::placeholder, .cf-g textarea::placeholder { color: #bcc3cc; }
.cf-g textarea { resize: vertical; }
.w100 { width: 100%; justify-content: center; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--ink); padding: 56px 0 20px; }
.footer-top { display: flex; gap: 56px; margin-bottom: 40px; }
.footer-brand { flex: 1; }
.footer-logo-img { height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: .75; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.3); font-size: 13px; max-width: 260px; line-height: 1.6; }
.footer-cols { display: flex; gap: 48px; }
.fcol { display: flex; flex-direction: column; gap: 9px; }
.fcol-t { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.fcol a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; transition: color .2s; }
.fcol a:hover { color: rgba(255,255,255,.75); }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); font-size: 12px; color: rgba(255,255,255,.2); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .fc-span2 { grid-column: span 2; }
  .mobile-inner { flex-direction: column; gap: 40px; }
  .mob-phones { width: 100%; display: flex; justify-content: center; height: 400px; }
  .contact-inner { flex-direction: column; gap: 36px; }
  .price-grid { grid-template-columns: 1fr; max-width: 380px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .fc-span2 { grid-column: span 1; }
  .hero-kpis { flex-direction: column; gap: 14px; }
  .hkpi-sep { width: 40px; height: 1px; }
  .float-phone { display: none; }
  .demo-card { flex-direction: column; gap: 28px; padding: 28px; }
  .demo-accs { grid-template-columns: 1fr; }
  .demo-right { width: 100%; }
  .demo-browser { width: 100%; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .sc-body { flex-direction: column; height: auto; }
  .sc-sb { display: none; }
  .sc-kpis { grid-template-columns: 1fr 1fr; }
  .sc-charts { grid-template-columns: 1fr; }
}
