/* ───────────────────────────────────────────────
   DentaLab marketing — tokens
   ─────────────────────────────────────────────── */
:root {
  /* brand */
  --primary: #667eea;
  --primary-dark: #5568d3;
  --secondary: #764ba2;
  --accent: #f093fb;

  /* neutrals */
  --bg: #ffffff;
  --bg-soft: #fafbff;
  --bg-mute: #f3f4fb;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --border: #e8e9f3;
  --border-strong: #d4d6e8;

  /* state */
  --green: #10b981;
  --green-soft: #ecfdf5;
  --red: #ef4444;
  --red-soft: #fef2f2;
  --amber: #f59e0b;

  /* gradient */
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-soft: linear-gradient(135deg, rgba(102,126,234,.08), rgba(118,75,162,.05));
  --gradient-text: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

  /* shadow */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 8px 24px rgba(102, 126, 234, .10), 0 2px 4px rgba(15, 23, 42, .04);
  --shadow-lg: 0 20px 60px rgba(102, 126, 234, .18), 0 8px 20px rgba(15, 23, 42, .06);
  --shadow-brand: 0 12px 28px rgba(102, 126, 234, .35);

  /* radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* layout */
  --container: 1200px;
  --container-narrow: 920px;
  --nav-h: 68px;

  /* density (overridable by tweaks) */
  --section-py: 96px;
  --grid-gap: 24px;
  --card-py: 32px;

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-density="compact"] {
  --section-py: 64px;
  --grid-gap: 16px;
  --card-py: 24px;
}

[data-theme="dark"] {
  --bg: #0c0d1a;
  --bg-soft: #11132a;
  --bg-mute: #161936;
  --text: #f3f4f8;
  --text-muted: #a4a8c4;
  --text-faint: #6c7196;
  --border: #232645;
  --border-strong: #353a63;
  --gradient-soft: linear-gradient(135deg, rgba(102,126,234,.14), rgba(118,75,162,.08));
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .25);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
  --shadow: 0 8px 24px rgba(0, 0, 0, .4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
}

/* ───────────────────────────────────────────────
   Reset + base
   ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(102, 126, 234, .25); }

/* ───────────────────────────────────────────────
   Typography
   ─────────────────────────────────────────────── */
.h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  text-wrap: pretty;
}
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ───────────────────────────────────────────────
   Layout
   ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }
.section { padding: var(--section-py) 0; }
.section-tight { padding: calc(var(--section-py) * .6) 0; }

/* ───────────────────────────────────────────────
   Buttons
   ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  user-select: none;
  position: relative;
  isolation: isolate;
}
.btn:active { transform: scale(.97); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(102, 126, 234, .42); }
.btn-primary:active { transform: scale(.97); }

.btn-outline {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: var(--bg-mute);
  color: var(--text);
}
.btn-ghost:hover { background: var(--border); }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 15px; color: var(--primary);
}
.btn-arrow::after { content: '→'; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

.btn .icon-arrow { transition: transform .2s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(2px); }

/* ───────────────────────────────────────────────
   Top navigation
   ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.brand-mark {
  font-weight: 800;
}
.brand-mark .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-mute); }
.nav-link.active { color: var(--primary); }
.nav-cta { margin-left: 8px; }

.nav-tools {
  display: flex; align-items: center; gap: 8px; margin-left: 8px;
}
.lang-switch {
  display: inline-flex;
  background: var(--bg-mute);
  border-radius: var(--r-pill);
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
}
.lang-switch button {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-switch button.active {
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-xs);
}

.theme-toggle {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--bg-mute);
  color: var(--text-muted);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.theme-toggle:hover { background: var(--border); color: var(--text); }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

.nav-burger {
  display: none;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--bg-mute);
  align-items: center; justify-content: center;
}

/* ───────────────────────────────────────────────
   Hero
   ─────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
}
.hero-blob.a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(102,126,234,.55) 0%, transparent 70%);
  top: -80px; left: -120px;
}
.hero-blob.b {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(240,147,251,.45) 0%, transparent 70%);
  top: -40px; right: -160px;
}
.hero-blob.c {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(118,75,162,.35) 0%, transparent 70%);
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
}
[data-blobs="off"] .hero-blob { display: none; }
.hero-inner { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px 0 6px;
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-xs);
}
.badge .badge-dot {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
}
.badge strong { color: var(--text); font-weight: 600; }

.hero-h1 { margin: 24px auto 20px; max-width: 12ch; }
.hero-sub { max-width: 620px; margin: 0 auto; }
.hero-ctas {
  margin-top: 36px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  margin: 56px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-card {
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
}
.stat-num {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ───────────────────────────────────────────────
   Hero variant: split (alt layout)
   ─────────────────────────────────────────────── */
[data-hero="split"] .hero { text-align: left; padding-bottom: 80px; }
[data-hero="split"] .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
[data-hero="split"] .hero-h1 { margin: 20px 0 16px; max-width: none; }
[data-hero="split"] .hero-sub { margin: 0; }
[data-hero="split"] .hero-ctas { justify-content: flex-start; }
[data-hero="split"] .hero-stats {
  margin: 36px 0 0;
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}
[data-hero="split"] .hero-product { display: block; }
[data-hero="split"] .hero-mockup-wrap { display: none; }
.hero-product { display: none; }

@media (max-width: 880px) {
  [data-hero="split"] .hero-inner { grid-template-columns: 1fr; }
  [data-hero="split"] .hero { text-align: center; }
  [data-hero="split"] .hero-ctas { justify-content: center; }
}

/* ───────────────────────────────────────────────
   Hero product mockup (under fold)
   ─────────────────────────────────────────────── */
.hero-mockup-wrap {
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.hero-mockup-wrap::before {
  content: '';
  position: absolute;
  inset: -40px -10% auto -10%;
  height: 60%;
  background: var(--gradient-soft);
  filter: blur(40px);
  z-index: -1;
}

/* ───────────────────────────────────────────────
   Browser frame (macOS-style)
   ─────────────────────────────────────────────── */
.frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.frame-head {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 14px;
  background: var(--bg-mute);
  border-bottom: 1px solid var(--border);
}
.frame-dots { display: inline-flex; gap: 6px; }
.frame-dots span {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.frame-dots span:nth-child(1) { background: #ff5f57; }
.frame-dots span:nth-child(2) { background: #febc2e; }
.frame-dots span:nth-child(3) { background: #28c840; }
.frame-url {
  flex: 1;
  max-width: 360px;
  margin: 0 auto;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  background: var(--bg);
  border-radius: var(--r-pill);
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.frame-url::before {
  content: '';
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.frame-body { background: var(--bg); }

/* ───────────────────────────────────────────────
   Mock dashboard (for hero peek)
   ─────────────────────────────────────────────── */
.mock-dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
  font-size: 13px;
}
.mock-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
}
.mock-side-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  margin-bottom: 22px;
}
.mock-side-brand .dot {
  width: 22px; height: 22px; border-radius: 7px; background: var(--gradient);
}
.mock-side-section { margin-bottom: 18px; }
.mock-side-label {
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-faint);
  padding: 0 10px 8px;
}
.mock-side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-weight: 500;
}
.mock-side-item.active {
  background: rgba(102, 126, 234, .1);
  color: var(--primary);
}
.mock-side-item .ico { width: 16px; height: 16px; border-radius: 4px; background: currentColor; opacity: .45; }
.mock-side-item.active .ico { opacity: 1; }
.mock-side-item .badge-num {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--r-pill);
}

.mock-main { padding: 20px 24px; }
.mock-greet {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 22px;
}
.mock-greet h4 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.mock-greet p { color: var(--text-muted); font-size: 13px; margin: 0; }
.mock-greet .right { display: flex; gap: 8px; }
.mock-greet .chip {
  height: 28px; display: inline-flex; align-items: center; gap: 6px;
  padding: 0 12px; border-radius: var(--r-pill);
  background: var(--bg-mute); font-size: 12px; font-weight: 500;
}
.mock-greet .chip.primary { background: var(--gradient); color: #fff; }

.mock-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.mock-kpi {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
}
.mock-kpi .lbl { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.mock-kpi .val {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  margin-top: 4px; line-height: 1;
}
.mock-kpi .delta { font-size: 11px; color: var(--green); margin-top: 6px; font-weight: 600; }
.mock-kpi .delta.down { color: var(--red); }

.mock-pipeline {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
}
.mock-pipeline-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.mock-pipeline-head h5 {
  font-size: 14px; font-weight: 700; margin: 0;
}
.mock-pipeline-steps {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.mock-step {
  background: var(--bg-mute);
  border-radius: var(--r-sm);
  padding: 10px 8px 12px;
  text-align: center;
}
.mock-step.done { background: rgba(16, 185, 129, .12); }
.mock-step.cur { background: rgba(102, 126, 234, .14); border: 1px solid rgba(102, 126, 234, .3); }
.mock-step .step-name { font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.mock-step .step-count { font-size: 18px; font-weight: 800; margin-top: 4px; line-height: 1; }
.mock-step.done .step-name { color: var(--green); }
.mock-step.cur .step-name { color: var(--primary); }
.mock-step.todo .step-count { color: var(--text-faint); }

/* ───────────────────────────────────────────────
   Logo strip
   ─────────────────────────────────────────────── */
.logos {
  padding: 48px 0;
  text-align: center;
}
.logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.logos-row {
  display: flex; flex-wrap: wrap; gap: 36px 56px;
  justify-content: center; align-items: center;
  opacity: .7;
}
.logo-item {
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-item .ll-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--text-muted); opacity: .55;
  display: inline-block;
}

/* ───────────────────────────────────────────────
   Without / With comparison
   ─────────────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.compare-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.compare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.compare-card.bad::before { background: var(--red); }
.compare-card.good::before { background: var(--green); }
.compare-card h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.compare-list { display: flex; flex-direction: column; gap: 14px; }
.compare-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.5;
}
.compare-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  margin-top: 1px;
}
.compare-item.bad .compare-icon { background: var(--red-soft); color: var(--red); }
.compare-item.good .compare-icon { background: var(--green-soft); color: var(--green); }

@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────
   Section headers
   ─────────────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }

/* ───────────────────────────────────────────────
   Feature grid
   ─────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
.features-2 { grid-template-columns: repeat(2, 1fr); }
.features-4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--card-py) 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gradient-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .features-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features, .features-2, .features-4 { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────
   Demo showcase (dark)
   ─────────────────────────────────────────────── */
.showcase {
  background: #0c0d1a;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(102,126,234,.45) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.showcase .section-head h2 { color: #fff; }
.showcase .section-head .lede { color: rgba(255, 255, 255, .65); }
.showcase .eyebrow { color: var(--accent); }
.demo-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-pill);
  padding: 8px 14px 8px 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  margin-top: 20px;
}
.demo-chip .key {
  background: rgba(255, 255, 255, .12);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #fff;
}
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shots { grid-template-columns: 1fr; } }
.shot {
  position: relative;
  display: flex; flex-direction: column;
}
.shot .frame {
  background: #fff;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .35), 0 4px 12px rgba(0, 0, 0, .2);
  transition: transform .3s var(--ease);
}
.shot:hover .frame { transform: translateY(-4px); }
.shot-cap {
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}
.shot-cap .em {
  font-size: 16px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex; align-items: center; justify-content: center;
}
.shot-cap-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-left: auto;
}
.showcase-cta {
  margin-top: 48px;
  text-align: center;
}
.showcase-cta .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}
.showcase-cta .btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.showcase-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  text-align: center;
}

/* ───────────────────────────────────────────────
   Mini mock screens for showcase frames
   ─────────────────────────────────────────────── */
.mini {
  padding: 18px;
  color: var(--text);
  background: var(--bg-soft);
  font-size: 11px;
  min-height: 240px;
}
.mini h6 {
  font-size: 13px; font-weight: 700; margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.mini-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 6px;
}
.mini-row .id { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text-faint); }
.mini-row .name { font-weight: 600; flex: 1; }
.mini-row .pill {
  font-size: 9px; font-weight: 600; padding: 2px 8px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pill-blue { background: rgba(102,126,234,.12); color: var(--primary); }
.pill-green { background: rgba(16,185,129,.12); color: var(--green); }
.pill-amber { background: rgba(245,158,11,.12); color: var(--amber); }
.pill-red { background: rgba(239,68,68,.12); color: var(--red); }
.pill-gray { background: var(--bg-mute); color: var(--text-muted); }

.mini-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 12px; }
.mini-kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
}
.mini-kpi .l { font-size: 10px; color: var(--text-muted); }
.mini-kpi .v { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }

.mini-tg {
  background: #1a1a2e;
  color: #fff;
  border-radius: var(--r);
  padding: 14px;
  font-size: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.mini-tg-head {
  display: flex; align-items: center; gap: 8px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mini-tg-head .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gradient);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.mini-tg-head .nm { font-weight: 600; font-size: 12px; }
.mini-tg-head .st { font-size: 10px; color: rgba(255,255,255,.5); }
.mini-tg-msg {
  background: rgba(255,255,255,.07);
  padding: 8px 10px;
  border-radius: 10px;
  max-width: 86%;
  font-size: 11px;
  line-height: 1.45;
}
.mini-tg-msg.out {
  background: var(--gradient);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}
.mini-tg-msg .mb { font-weight: 600; margin-bottom: 2px; font-size: 11px; }

.mini-chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px;
  margin-top: 8px;
  height: 130px;
  position: relative;
  overflow: hidden;
}
.mini-chart svg { width: 100%; height: 100%; }

.mini-bill-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 5px;
  font-size: 11px;
}
.mini-bill-row .who { font-weight: 600; }
.mini-bill-row .qty { color: var(--text-muted); font-family: 'JetBrains Mono', monospace; font-size: 10px; }
.mini-bill-row .am { font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.mini-bill-tot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px;
  margin-top: 8px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 12px;
}
.mini-bill-tot .v { font-weight: 800; font-family: 'JetBrains Mono', monospace; font-size: 14px; }

/* ───────────────────────────────────────────────
   Pricing
   ─────────────────────────────────────────────── */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .prices { grid-template-columns: 1fr; max-width: 460px; }
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--gradient) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
@media (max-width: 980px) {
  .price-card.featured { transform: none; }
}
.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.price-card > * { position: relative; z-index: 1; }
.price-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-brand);
  z-index: 2;
}
.price-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-amt {
  display: flex; align-items: baseline; gap: 6px;
  margin: 14px 0 4px;
}
.price-num {
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-cur { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.price-per { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.price-save {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.price-features {
  display: flex; flex-direction: column; gap: 12px;
  margin: 18px 0 28px;
  flex: 1;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 12px no-repeat;
}

.trial-banner {
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
  padding: 24px 28px;
  border-radius: var(--r-lg);
  background: var(--gradient-soft);
  border: 1px solid color-mix(in oklab, var(--primary) 18%, transparent);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.trial-banner .tb-text { display: flex; align-items: center; gap: 14px; }
.trial-banner .tb-icon {
  width: 42px; height: 42px; border-radius: var(--r);
  background: var(--gradient);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.trial-banner h4 { font-size: 17px; font-weight: 700; margin: 0; }
.trial-banner p { color: var(--text-muted); font-size: 14px; margin: 2px 0 0; }

/* ───────────────────────────────────────────────
   CTA banner
   ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 80px 56px;
  text-align: center;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  filter: blur(60px);
}
.cta-banner::before { top: -150px; left: -100px; }
.cta-banner::after { bottom: -200px; right: -100px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p {
  max-width: 540px;
  margin: 16px auto 0;
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255, 255, 255, .85);
}
.cta-banner .hero-ctas { margin-top: 32px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
}
.cta-banner .btn-primary:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, .2); }
.cta-banner .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}

@media (max-width: 720px) {
  .cta-banner { padding: 56px 28px; }
}

/* ───────────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────────── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  margin-left: auto;
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-mute) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat;
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: var(--gradient) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat;
}
.faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ───────────────────────────────────────────────
   Forms
   ─────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.form-group .req { color: var(--red); }
.input, .textarea, .select {
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.textarea { height: auto; min-height: 140px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, .14);
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.help { font-size: 12px; color: var(--text-muted); }

.msg {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.msg-success { background: var(--green-soft); border-color: rgba(16, 185, 129, .25); color: #047857; }
.msg-error { background: var(--red-soft); border-color: rgba(239, 68, 68, .25); color: #b91c1c; }

/* ───────────────────────────────────────────────
   Contact cards
   ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.contact-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.contact-card .ic {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gradient-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card .lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.contact-card .val { font-size: 15px; font-weight: 600; margin-top: 2px; }
.contact-card .sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ───────────────────────────────────────────────
   About — values + story
   ─────────────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }
.story p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.story .accent-block {
  background: var(--gradient-soft);
  border: 1px solid color-mix(in oklab, var(--primary) 18%, transparent);
  border-radius: var(--r-lg);
  padding: 28px;
}
.story .accent-num {
  font-size: 56px; font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.story .accent-lbl {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
}
.value-card .feature-icon { margin-left: auto; margin-right: auto; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; }

/* ───────────────────────────────────────────────
   Footer
   ─────────────────────────────────────────────── */
.footer {
  background: #0a0b18;
  color: rgba(255, 255, 255, .7);
  padding: 72px 0 28px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: #fff; }
.footer-tag {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .55);
  max-width: 280px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  transition: color .15s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom .made { display: inline-flex; align-items: center; gap: 6px; }

/* ───────────────────────────────────────────────
   Tweaks panel (floating)
   ─────────────────────────────────────────────── */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 60;
  font-size: 13px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.tweaks.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.tweaks-head h6 { font-size: 13px; font-weight: 700; margin: 0; }
.tweaks-head button {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  color: var(--text-muted);
}
.tweaks-head button:hover { background: var(--bg-mute); color: var(--text); }
.tweaks-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.tweak-row { display: flex; flex-direction: column; gap: 8px; }
.tweak-row .tl { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--r-pill);
  background: var(--bg-mute);
  color: var(--text-muted);
  transition: background .15s, color .15s;
}
.tweak-opt.active { background: var(--text); color: var(--bg); }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform .15s var(--ease), border-color .15s var(--ease);
}
.tweak-swatch.active { transform: scale(1.1); border-color: var(--text); }

.tweaks-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-brand);
  z-index: 59;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease);
}
.tweaks-fab:hover { transform: scale(1.05) rotate(45deg); }

/* ───────────────────────────────────────────────
   Page header (non-home pages)
   ─────────────────────────────────────────────── */
.page-head {
  position: relative;
  padding: 88px 0 56px;
  text-align: center;
  overflow: hidden;
}
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { margin-bottom: 18px; }
.page-head .lede { max-width: 640px; margin: 0 auto; }

/* ───────────────────────────────────────────────
   Long-form (terms/privacy)
   ─────────────────────────────────────────────── */
.doc {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.doc-meta {
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--bg-mute);
  border-radius: var(--r);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.doc-section h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  display: flex; gap: 14px; align-items: baseline;
}
.doc-section h3 .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
}
.doc-section p, .doc-section li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.doc-section ul {
  padding-left: 22px;
  list-style: disc;
}
.doc-section ul li { margin-bottom: 6px; }
.doc-section strong { color: var(--text); }

/* ───────────────────────────────────────────────
   Team (about)
   ─────────────────────────────────────────────── */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}
@media (max-width: 880px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team { grid-template-columns: 1fr; } }
.member {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 18px;
}
.member-av {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.member-name { font-size: 16px; font-weight: 700; }
.member-role { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ───────────────────────────────────────────────
   Scroll reveal
   ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ───────────────────────────────────────────────
   Mobile nav
   ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links .nav-link:not(.nav-cta) { display: none; }
  .nav-burger { display: inline-flex; }
}

/* Mobile sheet */
.mobile-sheet {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 49;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-sheet.open { display: flex; }
.mobile-sheet a {
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 600;
  border-radius: var(--r);
  color: var(--text);
}
.mobile-sheet a:hover, .mobile-sheet a.active {
  background: var(--bg-mute);
  color: var(--primary);
}
.mobile-sheet .btn { margin-top: 16px; }

/* ───────────────────────────────────────────────
   Small utilities
   ─────────────────────────────────────────────── */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 64px 0;
}
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--bg-mute);
  color: var(--text-muted);
}

[hidden] { display: none !important; }

/* ====== PINK ACCENT BOOST ====== */
/* Make the pink (--accent #f093fb) more prominent across the UI */
:root {
  --accent-bright: #ec4899;
  --gradient-text: linear-gradient(135deg, #667eea 0%, #a855f7 40%, #f093fb 80%, #ec4899 100%);
  --gradient-brand: linear-gradient(135deg, #667eea 0%, #764ba2 45%, #f093fb 100%);
}
.gradient-text {
  background-image: var(--gradient-text);
}
/* CTA buttons: add pink-ish hover glow */
.btn-primary {
  background: var(--gradient-brand);
}
.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(240, 147, 251, .42);
}
/* Hero badge: pink dot */
.badge .badge-dot {
  background: linear-gradient(135deg, #f093fb, #ec4899);
}
/* Underline accents and decorative pinks */
.eyebrow { color: #ec4899; }
.feature-icon { color: #ec4899; background: linear-gradient(135deg, rgba(102,126,234,.08), rgba(240,147,251,.12)); }
/* Hero blob C boost - more pink */
.hero-blob.c {
  background: radial-gradient(circle, rgba(240,147,251,.42) 0%, transparent 70%);
}
/* Gradient borders for emphasis */
.cta-banner { background: linear-gradient(135deg, #667eea 0%, #a855f7 50%, #f093fb 100%); }
/* Logo trust marks: pink-ish hover */
.trust-mark:hover { border-color: #ec4899; color: #ec4899; }
.trust-mark:hover::before { background: linear-gradient(135deg, #f093fb, #ec4899); }

/* ====== POS RECEIPT PAPER MOCK ====== */
.pos-paper {
  background: #ffffff;
  width: 320px;
  padding: 24px 18px;
  border-radius: 4px 4px 12px 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 1px 0 rgba(0,0,0,.04);
  position: relative;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.pos-paper:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.pos-paper pre {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.5;
  color: #1a1a2e;
  margin: 0;
  white-space: pre;
  overflow-x: auto;
  letter-spacing: 0;
}
.pos-paper::before, .pos-paper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  pointer-events: none;
}
.pos-paper::before {
  top: -6px;
  background:
    linear-gradient(135deg, transparent 33%, white 33%, white 66%, transparent 66%),
    linear-gradient(45deg, transparent 33%, white 33%, white 66%, transparent 66%);
  background-size: 12px 12px;
}
.pos-paper::after {
  bottom: -6px;
  background:
    linear-gradient(135deg, white 33%, transparent 33%, transparent 66%, white 66%),
    linear-gradient(45deg, white 33%, transparent 33%, transparent 66%, white 66%);
  background-size: 12px 12px;
}
@media (max-width: 880px) {
  .pos-paper { transform: none; }
}


/* Language switcher: style anchors (replaced original buttons) */
.lang-switch a.lang-link,
.lang-switch .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-switch a.lang-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.6);
}
.lang-switch a.lang-link.active {
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
[data-theme="dark"] .lang-switch a.lang-link:hover {
  background: rgba(255,255,255,0.08);
}
[data-theme="dark"] .lang-switch a.lang-link.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
/* ============================================
   FEATURE CARD ILLUSTRATIONS (animated)
   6 unique CSS+SVG mini-scenes for home features
   ============================================ */

.feature-card { padding-top: 0; overflow: hidden; }
.f-illust {
  position: relative;
  height: 140px;
  margin: 0 -26px 22px;
  background: linear-gradient(135deg, rgba(102,126,234,.07), rgba(240,147,251,.10));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-card:hover .f-illust { background: linear-gradient(135deg, rgba(102,126,234,.12), rgba(240,147,251,.18)); }
.f-illust svg { display: block; }

/* ━━━ 1. Telegram avtomatlash — phone + plane + notification ━━━ */
.f-tg { position: relative; width: 220px; height: 110px; }
.f-tg__phone {
  position: absolute;
  left: 8px; top: 10px;
  width: 72px; height: 96px;
  border-radius: 14px;
  background: #1a1a2e;
  border: 2px solid #2a2a4e;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.f-tg__screen {
  position: absolute;
  inset: 6px 6px 14px 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0088cc 0%, #29b6f6 100%);
  overflow: hidden;
}
.f-tg__bubble {
  position: absolute;
  left: 6px; right: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.85);
}
.f-tg__bubble:nth-child(1) { top: 8px;  animation: tg-pop 3s ease-in-out infinite; }
.f-tg__bubble:nth-child(2) { top: 26px; right: 6px; left: 18px; animation: tg-pop 3s 0.4s ease-in-out infinite; background: rgba(255,255,255,.55); }
.f-tg__bubble:nth-child(3) { top: 44px; animation: tg-pop 3s 0.9s ease-in-out infinite; }
@keyframes tg-pop {
  0%, 30%, 100% { opacity: 0; transform: translateY(8px); }
  40%, 80% { opacity: 1; transform: translateY(0); }
}
.f-tg__dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ec4899;
  box-shadow: 0 0 0 0 rgba(236,72,153,.6);
  animation: tg-pulse 1.8s ease-out infinite;
}
@keyframes tg-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,72,153,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(236,72,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,72,153,0); }
}
.f-tg__plane {
  position: absolute;
  top: 36px;
  right: 8px;
  width: 38px; height: 38px;
  color: #667eea;
  animation: tg-fly 3.5s ease-in-out infinite;
}
@keyframes tg-fly {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); opacity: 1; }
  50% { transform: translate(-12px, -6px) rotate(-4deg); opacity: 1; }
}

/* ━━━ 2. 7 bosqichli pipeline ━━━ */
.f-pipe { width: 240px; height: 60px; position: relative; }
.f-pipe__track {
  position: absolute;
  top: 27px; left: 14px; right: 14px;
  height: 4px;
  background: rgba(102,126,234,.18);
  border-radius: 2px;
}
.f-pipe__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #667eea, #ec4899);
  border-radius: 2px;
  animation: pipe-fill 3.6s ease-in-out infinite;
}
@keyframes pipe-fill {
  0%   { width: 0%; }
  60%  { width: 100%; }
  100% { width: 100%; opacity: 0.4; }
}
.f-pipe__dot {
  position: absolute;
  top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(102,126,234,.3);
  transition: all .3s var(--ease);
}
.f-pipe__dot:nth-child(2) { left: 6px;   animation: pipe-dot 3.6s 0.0s ease-out infinite; }
.f-pipe__dot:nth-child(3) { left: 42px;  animation: pipe-dot 3.6s 0.4s ease-out infinite; }
.f-pipe__dot:nth-child(4) { left: 78px;  animation: pipe-dot 3.6s 0.8s ease-out infinite; }
.f-pipe__dot:nth-child(5) { left: 114px; animation: pipe-dot 3.6s 1.2s ease-out infinite; }
.f-pipe__dot:nth-child(6) { left: 150px; animation: pipe-dot 3.6s 1.6s ease-out infinite; }
.f-pipe__dot:nth-child(7) { left: 186px; animation: pipe-dot 3.6s 2.0s ease-out infinite; }
.f-pipe__dot:nth-child(8) { left: 218px; animation: pipe-dot 3.6s 2.4s ease-out infinite; }
@keyframes pipe-dot {
  0%, 10%  { transform: scale(1); border-color: rgba(102,126,234,.3); background: #fff; box-shadow: none; }
  15%, 25% { transform: scale(1.4); border-color: transparent; background: linear-gradient(135deg, #667eea, #ec4899); box-shadow: 0 0 0 6px rgba(236,72,153,.15); }
  35%, 100% { transform: scale(1); border-color: transparent; background: #10b981; box-shadow: none; }
}

/* ━━━ 3. FIFO hisob-kitob — coin stack ━━━ */
.f-coin { position: relative; width: 130px; height: 110px; }
.f-coin__stack { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); }
.f-coin__c {
  width: 64px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 2px 0 #b45309, 0 0 0 1px rgba(0,0,0,.08);
  margin-top: -8px;
  position: relative;
  opacity: 0;
  animation: coin-drop 4s ease-in-out infinite;
}
.f-coin__c:nth-child(1) { animation-delay: 0.0s; }
.f-coin__c:nth-child(2) { animation-delay: 0.6s; }
.f-coin__c:nth-child(3) { animation-delay: 1.2s; }
.f-coin__c:nth-child(4) { animation-delay: 1.8s; }
.f-coin__c:nth-child(5) { animation-delay: 2.4s; }
@keyframes coin-drop {
  0%   { opacity: 0; transform: translateY(-50px) scale(.6); }
  20%  { opacity: 1; transform: translateY(0) scale(1); }
  90%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(0) scale(1); }
}
.f-coin__symbol {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 800;
  color: #f59e0b;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.f-coin__fifo {
  position: absolute;
  top: 6px; right: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  background: linear-gradient(135deg, #667eea, #ec4899);
  color: #fff;
  border-radius: 999px;
}

/* ━━━ 4. Doktor portali — avatar + status badges ━━━ */
.f-doc { position: relative; width: 200px; height: 110px; }
.f-doc__av {
  position: absolute;
  left: 18px; top: 20px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}
.f-doc__pulse {
  position: absolute;
  left: 18px; top: 20px;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid #ec4899;
  animation: doc-pulse 2s ease-out infinite;
}
@keyframes doc-pulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.f-doc__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  opacity: 0;
  animation: doc-badge 4s ease-in-out infinite;
}
.f-doc__badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
}
.f-doc__badge.b1 { top: 14px; right: 4px; animation-delay: 0s; }
.f-doc__badge.b1::before { background: #f59e0b; }
.f-doc__badge.b2 { top: 44px; right: 4px; animation-delay: 1.2s; }
.f-doc__badge.b2::before { background: #3b82f6; }
.f-doc__badge.b3 { top: 74px; right: 4px; animation-delay: 2.4s; }
.f-doc__badge.b3::before { background: #10b981; }
@keyframes doc-badge {
  0%, 25%  { opacity: 0; transform: translateX(20px); }
  30%, 55% { opacity: 1; transform: translateX(0); }
  60%, 100% { opacity: 0; transform: translateX(-20px); }
}

/* ━━━ 5. Buyurtma katalogi — sliding cards ━━━ */
.f-cat { position: relative; width: 180px; height: 110px; }
.f-cat__card {
  position: absolute;
  left: 50%; top: 50%;
  width: 110px; height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  padding: 8px 10px;
  font-size: 10px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.f-cat__card .name { font-weight: 700; color: var(--text); }
.f-cat__card .price { font-weight: 600; color: var(--primary); font-size: 9px; }
.f-cat__card:nth-child(1) { transform: translate(-50%, -50%) translate(-26px, 14px) rotate(-6deg); z-index: 1; animation: cat-shuffle1 5s ease-in-out infinite; }
.f-cat__card:nth-child(2) { transform: translate(-50%, -50%) translate(0, 2px) rotate(0deg); z-index: 2; animation: cat-shuffle2 5s ease-in-out infinite; }
.f-cat__card:nth-child(3) { transform: translate(-50%, -50%) translate(26px, -10px) rotate(6deg); z-index: 3; animation: cat-shuffle3 5s ease-in-out infinite; }
@keyframes cat-shuffle1 {
  0%, 100% { transform: translate(-50%, -50%) translate(-26px, 14px) rotate(-6deg); }
  50%      { transform: translate(-50%, -50%) translate(-30px, 8px) rotate(-9deg); }
}
@keyframes cat-shuffle2 {
  0%, 100% { transform: translate(-50%, -50%) translate(0, 2px) rotate(0deg); }
  50%      { transform: translate(-50%, -50%) translate(0, -4px) rotate(0deg); }
}
@keyframes cat-shuffle3 {
  0%, 100% { transform: translate(-50%, -50%) translate(26px, -10px) rotate(6deg); }
  50%      { transform: translate(-50%, -50%) translate(30px, -16px) rotate(9deg); }
}

/* ━━━ 6. Hisobotlar — growing bars ━━━ */
.f-chart { position: relative; width: 180px; height: 110px; }
.f-chart__grid {
  position: absolute;
  inset: 12px 12px 28px 24px;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.f-chart__bar {
  position: absolute;
  bottom: 0;
  width: 14px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #ec4899 0%, #667eea 100%);
  transform-origin: bottom;
  animation: bar-grow 3.5s ease-out infinite;
}
.f-chart__bar.b1 { left: 4%;  --h: 30%; animation-delay: 0.0s; }
.f-chart__bar.b2 { left: 19%; --h: 45%; animation-delay: 0.2s; }
.f-chart__bar.b3 { left: 34%; --h: 60%; animation-delay: 0.4s; }
.f-chart__bar.b4 { left: 49%; --h: 50%; animation-delay: 0.6s; }
.f-chart__bar.b5 { left: 64%; --h: 80%; animation-delay: 0.8s; }
.f-chart__bar.b6 { left: 79%; --h: 95%; animation-delay: 1.0s; }
@keyframes bar-grow {
  0%   { height: 0; opacity: 0; }
  30%  { height: var(--h); opacity: 1; }
  85%  { height: var(--h); opacity: 1; }
  100% { height: 0; opacity: 0; }
}
.f-chart__line {
  position: absolute;
  inset: 12px 12px 28px 24px;
  overflow: visible;
}
.f-chart__line path {
  fill: none;
  stroke: url(#chartGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: line-draw 3.5s ease-out infinite;
}
@keyframes line-draw {
  0%   { stroke-dashoffset: 220; }
  40%  { stroke-dashoffset: 0; }
  80%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 220; }
}

/* ━━━ Reduced motion: freeze ━━━ */
@media (prefers-reduced-motion: reduce) {
  .f-illust *, .f-illust *::before, .f-illust *::after {
    animation: none !important;
  }
  .f-illust .f-coin__c { opacity: 1; }
  .f-illust .f-chart__bar { height: var(--h); opacity: 1; }
  .f-illust .f-chart__line path { stroke-dashoffset: 0; }
  .f-illust .f-doc__badge { opacity: 1; transform: none; }
}

/* ━━━ Mobile: smaller illustrations ━━━ */
@media (max-width: 560px) {
  .f-illust { height: 110px; margin-bottom: 18px; }
}
/* ============================================
   FEATURES.HTML — 18 compact animated illustrations
   Designed for 4-column grid (smaller cards than home)
   ============================================ */

.features-4 .feature-card { padding-top: 0; overflow: hidden; }
.fi {
  position: relative;
  height: 100px;
  margin: 0 -26px 18px;
  background: linear-gradient(135deg, rgba(102,126,234,.06), rgba(240,147,251,.10));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-card:hover .fi { background: linear-gradient(135deg, rgba(102,126,234,.11), rgba(240,147,251,.18)); }

/* ━━━ 1. Buyurtma boshqaruvi — order document ━━━ */
.fi-order { width: 120px; height: 80px; position: relative; }
.fi-order__doc {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  padding: 10px 12px;
}
.fi-order__line {
  height: 4px;
  border-radius: 2px;
  background: rgba(102,126,234,.18);
  margin-bottom: 6px;
  transform-origin: left;
  transform: scaleX(0);
  animation: ord-line 3s ease-in-out infinite;
}
.fi-order__line.l1 { width: 80%; animation-delay: 0s; }
.fi-order__line.l2 { width: 60%; animation-delay: 0.3s; }
.fi-order__line.l3 { width: 90%; animation-delay: 0.6s; background: linear-gradient(90deg, #667eea, #ec4899); }
.fi-order__line.l4 { width: 70%; animation-delay: 0.9s; }
@keyframes ord-line {
  0%, 10%  { transform: scaleX(0); }
  30%, 70% { transform: scaleX(1); }
  90%, 100% { transform: scaleX(1); opacity: .5; }
}
.fi-order__check {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 10px rgba(16,185,129,.4);
  animation: ord-check 3s ease-out infinite;
}
@keyframes ord-check {
  0%, 70% { transform: scale(0); }
  80%     { transform: scale(1.3); }
  90%, 100% { transform: scale(1); }
}

/* ━━━ 2. Pipeline (smaller version of home pipe) ━━━ */
.fi-pipe { width: 160px; height: 40px; position: relative; }
.fi-pipe__track {
  position: absolute;
  top: 18px; left: 8px; right: 8px;
  height: 3px;
  background: rgba(102,126,234,.18);
  border-radius: 2px;
}
.fi-pipe__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #667eea, #ec4899);
  border-radius: 2px;
  animation: pipe-fill 3.6s ease-in-out infinite;
}
.fi-pipe__dot {
  position: absolute;
  top: 14px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(102,126,234,.3);
}
.fi-pipe__dot:nth-child(2) { left: 4px;   animation: pipe-dot 3.6s 0.0s ease-out infinite; }
.fi-pipe__dot:nth-child(3) { left: 30px;  animation: pipe-dot 3.6s 0.4s ease-out infinite; }
.fi-pipe__dot:nth-child(4) { left: 56px;  animation: pipe-dot 3.6s 0.8s ease-out infinite; }
.fi-pipe__dot:nth-child(5) { left: 82px;  animation: pipe-dot 3.6s 1.2s ease-out infinite; }
.fi-pipe__dot:nth-child(6) { left: 108px; animation: pipe-dot 3.6s 1.6s ease-out infinite; }
.fi-pipe__dot:nth-child(7) { left: 134px; animation: pipe-dot 3.6s 2.0s ease-out infinite; }
.fi-pipe__dot:nth-child(8) { left: 152px; animation: pipe-dot 3.6s 2.4s ease-out infinite; }

/* ━━━ 3. Telegram (compact phone) ━━━ */
.fi-tg { width: 130px; height: 80px; position: relative; }
.fi-tg__phone {
  position: absolute; left: 6px; top: 6px;
  width: 50px; height: 68px;
  border-radius: 10px;
  background: #1a1a2e;
  border: 2px solid #2a2a4e;
}
.fi-tg__screen {
  position: absolute; inset: 4px 4px 10px 4px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0088cc, #29b6f6);
  overflow: hidden;
}
.fi-tg__bub {
  position: absolute; left: 4px; right: 8px;
  height: 7px; border-radius: 4px;
  background: rgba(255,255,255,.85);
  opacity: 0;
}
.fi-tg__bub:nth-child(1) { top: 5px;  animation: tg-pop 3s 0.0s ease-in-out infinite; }
.fi-tg__bub:nth-child(2) { top: 17px; right: 4px; left: 12px; animation: tg-pop 3s 0.4s ease-in-out infinite; background: rgba(255,255,255,.55); }
.fi-tg__bub:nth-child(3) { top: 29px; animation: tg-pop 3s 0.9s ease-in-out infinite; }
.fi-tg__dot2 {
  position: absolute; top: 4px; right: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ec4899;
  animation: tg-pulse 1.8s ease-out infinite;
}
.fi-tg__plane {
  position: absolute; top: 28px; right: 6px;
  width: 28px; height: 28px;
  color: #667eea;
  animation: tg-fly 3.5s ease-in-out infinite;
}

/* ━━━ 4. Doctor portal (compact) ━━━ */
.fi-doc { width: 140px; height: 80px; position: relative; }
.fi-doc__av {
  position: absolute; left: 12px; top: 14px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.fi-doc__pulse {
  position: absolute; left: 12px; top: 14px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid #ec4899;
  animation: doc-pulse 2s ease-out infinite;
}
.fi-doc__badge2 {
  position: absolute; right: 4px;
  padding: 3px 8px; border-radius: 999px;
  font-size: 9px; font-weight: 700;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  opacity: 0;
  animation: doc-badge 4s ease-in-out infinite;
}
.fi-doc__badge2.b1 { top: 10px; animation-delay: 0s; color: #f59e0b; }
.fi-doc__badge2.b2 { top: 34px; animation-delay: 1.2s; color: #3b82f6; }
.fi-doc__badge2.b3 { top: 58px; animation-delay: 2.4s; color: #10b981; }

/* ━━━ 5. FIFO coins (compact) ━━━ */
.fi-coin { width: 90px; height: 80px; position: relative; }
.fi-coin__stack2 { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); }
.fi-coin__c2 {
  width: 48px; height: 12px; border-radius: 50%;
  background: linear-gradient(180deg, #fbbf24, #f59e0b 50%, #d97706);
  box-shadow: 0 1.5px 0 #b45309;
  margin-top: -6px;
  opacity: 0;
  animation: coin-drop 4s ease-in-out infinite;
}
.fi-coin__c2:nth-child(1) { animation-delay: 0s; }
.fi-coin__c2:nth-child(2) { animation-delay: 0.5s; }
.fi-coin__c2:nth-child(3) { animation-delay: 1.0s; }
.fi-coin__c2:nth-child(4) { animation-delay: 1.5s; }
.fi-coin__fifo2 {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  font-size: 8px; font-weight: 800; letter-spacing: 0.08em;
  padding: 2px 6px; border-radius: 999px;
  background: linear-gradient(135deg, #667eea, #ec4899);
  color: #fff;
}

/* ━━━ 6. Material catalog (compact stacking cards) ━━━ */
.fi-cat2 { width: 130px; height: 80px; position: relative; }
.fi-cat2__c {
  position: absolute; left: 50%; top: 50%;
  width: 82px; height: 36px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  padding: 6px 8px;
  font-size: 8px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.fi-cat2__c .nm { font-weight: 700; color: var(--text); }
.fi-cat2__c .pr { font-weight: 600; color: var(--primary); font-size: 7px; }
.fi-cat2__c:nth-child(1) { transform: translate(-50%, -50%) translate(-18px, 10px) rotate(-5deg); z-index: 1; }
.fi-cat2__c:nth-child(2) { transform: translate(-50%, -50%) translate(0, 0) rotate(0deg); z-index: 2; }
.fi-cat2__c:nth-child(3) { transform: translate(-50%, -50%) translate(18px, -8px) rotate(5deg); z-index: 3; }

/* ━━━ 7. Qarzlar — debt counter going down ━━━ */
.fi-debt { width: 140px; height: 70px; position: relative; }
.fi-debt__amt {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  font-size: 22px; font-weight: 900;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: debt-tick 3.5s ease-out infinite;
}
@keyframes debt-tick {
  0%   { content: '5 500 000'; }
  100% { content: '0'; }
}
.fi-debt__bar-wrap {
  position: absolute; bottom: 10px; left: 14px; right: 14px;
  height: 8px;
  background: rgba(239,68,68,.18);
  border-radius: 999px;
  overflow: hidden;
}
.fi-debt__bar {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #f59e0b, #10b981);
  border-radius: 999px;
  transform-origin: right;
  animation: debt-shrink 3.5s ease-out infinite;
}
@keyframes debt-shrink {
  0%   { transform: scaleX(1); }
  85%  { transform: scaleX(0.08); }
  100% { transform: scaleX(0.08); opacity: .5; }
}
.fi-debt__lbl {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ━━━ 8. Hisobotlar chart (compact) ━━━ */
.fi-ch { width: 140px; height: 80px; position: relative; }
.fi-ch__grid {
  position: absolute;
  inset: 8px 8px 14px 16px;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fi-ch__bar {
  position: absolute; bottom: 0;
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #ec4899, #667eea);
  animation: bar-grow 3.5s ease-out infinite;
}
.fi-ch__bar.b1 { left: 4%;  --h: 28%; animation-delay: 0.0s; }
.fi-ch__bar.b2 { left: 20%; --h: 50%; animation-delay: 0.2s; }
.fi-ch__bar.b3 { left: 36%; --h: 38%; animation-delay: 0.4s; }
.fi-ch__bar.b4 { left: 52%; --h: 70%; animation-delay: 0.6s; }
.fi-ch__bar.b5 { left: 68%; --h: 60%; animation-delay: 0.8s; }
.fi-ch__bar.b6 { left: 84%; --h: 90%; animation-delay: 1.0s; }

/* ━━━ 9. Foydalanuvchi rollari — 4 role badges ━━━ */
.fi-roles { width: 140px; height: 80px; position: relative; }
.fi-roles__b {
  position: absolute;
  padding: 4px 10px; border-radius: 999px;
  font-size: 9px; font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: role-in 4s ease-in-out infinite;
}
.fi-roles__b.r1 { top: 6px;  left: 6px;  background: linear-gradient(135deg, #667eea, #764ba2); animation-delay: 0.0s; }
.fi-roles__b.r2 { top: 6px;  right: 6px; background: linear-gradient(135deg, #ec4899, #f093fb); animation-delay: 0.5s; }
.fi-roles__b.r3 { bottom: 6px; left: 6px; background: linear-gradient(135deg, #10b981, #059669); animation-delay: 1.0s; }
.fi-roles__b.r4 { bottom: 6px; right: 6px; background: linear-gradient(135deg, #f59e0b, #d97706); animation-delay: 1.5s; }
@keyframes role-in {
  0%, 5%   { opacity: 0; transform: scale(.7); }
  15%, 80% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(.7); }
}
.fi-roles__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ━━━ 10. Buyurtma shablonlari — duplicating ━━━ */
.fi-tpl { width: 130px; height: 80px; position: relative; }
.fi-tpl__c {
  position: absolute;
  width: 80px; height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.fi-tpl__c::before, .fi-tpl__c::after {
  content: '';
  height: 4px; border-radius: 2px;
  background: rgba(102,126,234,.25);
}
.fi-tpl__c::after { width: 60%; }
.fi-tpl__c.t1 { left: 14px; top: 14px; z-index: 1; opacity: .35; }
.fi-tpl__c.t2 { left: 22px; top: 18px; z-index: 2; opacity: .65; }
.fi-tpl__c.t3 { left: 30px; top: 22px; z-index: 3; animation: tpl-pop 3s ease-out infinite; }
@keyframes tpl-pop {
  0%   { transform: translate(-8px, -4px) scale(.94); opacity: .6; }
  40%  { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 1; }
}
.fi-tpl__plus {
  position: absolute; top: 6px; right: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #ec4899);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  box-shadow: 0 4px 10px rgba(102,126,234,.3);
}

/* ━━━ 11. Eslatmalar va izohlar — speech bubbles ━━━ */
.fi-chat { width: 130px; height: 80px; position: relative; }
.fi-chat__b {
  position: absolute;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
  border-radius: 12px;
  font-size: 9px;
  color: var(--text);
  opacity: 0;
  animation: chat-pop 4s ease-in-out infinite;
}
.fi-chat__b::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: inherit;
  border: inherit;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.fi-chat__b.c1 { top: 6px; left: 6px; animation-delay: 0s; }
.fi-chat__b.c1::after { bottom: -5px; left: 12px; }
.fi-chat__b.c2 { top: 30px; right: 6px; animation-delay: 1s; background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; border-color: transparent; }
.fi-chat__b.c2::after { bottom: -5px; right: 12px; }
.fi-chat__b.c3 { bottom: 6px; left: 18px; animation-delay: 2s; }
.fi-chat__b.c3::after { top: -5px; left: 12px; border: none; }
@keyframes chat-pop {
  0%, 10%   { opacity: 0; transform: translateY(8px); }
  20%, 70%  { opacity: 1; transform: translateY(0); }
  85%, 100% { opacity: 0; transform: translateY(-4px); }
}

/* ━━━ 12. Fotosuratlar va STL — image gallery ━━━ */
.fi-img { width: 130px; height: 80px; position: relative; }
.fi-img__f {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f3f4fb, #e8e9f3);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.fi-img__f::after {
  content: '';
  position: absolute; inset: 8px;
  background: linear-gradient(135deg, #667eea, #ec4899);
  opacity: .25;
  border-radius: 6px;
}
.fi-img__f.f1 { left: 8px; top: 14px; transform: rotate(-6deg); z-index: 1; }
.fi-img__f.f2 { left: 36px; top: 10px; z-index: 2; }
.fi-img__f.f3 { right: 8px; top: 18px; transform: rotate(6deg); z-index: 3; }
.fi-img__stl {
  position: absolute;
  top: 4px; right: 4px;
  padding: 2px 6px;
  background: #1a1a2e; color: #fff;
  font-size: 8px; font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.06em;
  z-index: 4;
  animation: stl-blink 2s ease-in-out infinite;
}
@keyframes stl-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* ━━━ 13. KPI panel — 4 tiles with ticking ━━━ */
.fi-kpi { width: 140px; height: 80px; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; }
.fi-kpi__t {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  display: flex; flex-direction: column;
  font-size: 8px; line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.fi-kpi__t::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #ec4899);
  animation: kpi-fill 2.5s ease-out infinite;
}
.fi-kpi__t.k1::after { animation-delay: 0s; }
.fi-kpi__t.k2::after { animation-delay: 0.3s; }
.fi-kpi__t.k3::after { animation-delay: 0.6s; }
.fi-kpi__t.k4::after { animation-delay: 0.9s; }
@keyframes kpi-fill {
  0%   { width: 0; }
  60%  { width: var(--w, 80%); }
  100% { width: var(--w, 80%); opacity: .6; }
}
.fi-kpi__t.k1 { --w: 70%; }
.fi-kpi__t.k2 { --w: 50%; }
.fi-kpi__t.k3 { --w: 90%; }
.fi-kpi__t.k4 { --w: 60%; }
.fi-kpi__l { color: var(--text-muted); font-size: 7px; text-transform: uppercase; letter-spacing: .04em; }
.fi-kpi__v { font-size: 14px; font-weight: 800; color: var(--text); }

/* ━━━ 14. Bulut va xavfsizlik — shield + cloud ━━━ */
.fi-sec { width: 100px; height: 80px; position: relative; }
.fi-sec__shield {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 58px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  clip-path: polygon(50% 0, 100% 22%, 100% 60%, 50% 100%, 0 60%, 0 22%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  animation: sec-glow 2.5s ease-in-out infinite;
}
@keyframes sec-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(102,126,234,.6); filter: brightness(1); }
  50%      { box-shadow: 0 0 0 12px rgba(102,126,234,0); filter: brightness(1.08); }
}
.fi-sec__shield svg { width: 22px; height: 22px; }
.fi-sec__cloud {
  position: absolute; top: 6px; right: 4px;
  font-size: 13px;
  animation: sec-float 3s ease-in-out infinite;
}
@keyframes sec-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ━━━ 15. Bir nechta laboratoriya — 3 buildings ━━━ */
.fi-multi { width: 130px; height: 80px; position: relative; display: flex; align-items: flex-end; justify-content: space-around; padding: 0 12px 12px; }
.fi-multi__b {
  width: 22px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #667eea, #764ba2);
  position: relative;
  animation: multi-grow 3s ease-out infinite;
}
.fi-multi__b::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .35;
}
.fi-multi__b.h1 { --h: 40px; animation-delay: 0.0s; }
.fi-multi__b.h2 { --h: 56px; animation-delay: 0.3s; background: linear-gradient(180deg, #ec4899, #f093fb); }
.fi-multi__b.h3 { --h: 48px; animation-delay: 0.6s; }
@keyframes multi-grow {
  0%   { height: 0; }
  30%  { height: var(--h); }
  100% { height: var(--h); }
}

/* ━━━ 16. API integratsiyalar — connecting blocks ━━━ */
.fi-api { width: 130px; height: 80px; position: relative; }
.fi-api__node {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800; font-size: 11px;
}
.fi-api__node.n1 { top: 8px; left: 8px; background: linear-gradient(135deg, #667eea, #764ba2); }
.fi-api__node.n2 { top: 8px; right: 8px; background: linear-gradient(135deg, #ec4899, #f093fb); }
.fi-api__node.n3 { bottom: 8px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #10b981, #059669); }
.fi-api__line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
  background-size: 200% 100%;
  animation: api-flow 2s linear infinite;
  transform-origin: left;
}
.fi-api__line.l1 { top: 21px; left: 34px; right: 34px; }
.fi-api__line.l2 { left: 22px; top: 22px; width: 50px; transform: rotate(58deg); transform-origin: left; animation-delay: 0.5s; }
.fi-api__line.l3 { right: 22px; top: 22px; width: 50px; transform: rotate(-58deg) translateX(-100%); transform-origin: right; animation-delay: 1s; }
@keyframes api-flow {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ━━━ 17. POS NARYAD — printer with ticket coming out ━━━ */
.fi-naryad { width: 110px; height: 80px; position: relative; }
.fi-naryad__pr {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 30px;
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(180deg, #4a4a5e 0%, #2a2a3e 100%);
}
.fi-naryad__pr::before {
  content: '';
  position: absolute;
  top: 8px; left: 6px; right: 6px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 2px;
}
.fi-naryad__pr::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: tg-pulse 1.5s ease-out infinite;
}
.fi-naryad__paper {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 36px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,.08) 3px, rgba(0,0,0,.08) 4px);
  animation: paper-out 3s ease-in-out infinite;
}
@keyframes paper-out {
  0%   { transform: translateX(-50%) translateY(20px) scaleY(.05); }
  40%  { transform: translateX(-50%) translateY(0) scaleY(1); }
  100% { transform: translateX(-50%) translateY(0) scaleY(1); }
}
.fi-naryad__label {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  font-size: 8px; font-weight: 800;
  padding: 2px 6px; border-radius: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  letter-spacing: 0.06em;
}

/* ━━━ 18. POS CHEK — receipt with checkmark ━━━ */
.fi-chek { width: 90px; height: 80px; position: relative; }
.fi-chek__paper {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 58px; height: 64px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.10);
  border-radius: 2px 2px 6px 6px;
  background-image:
    linear-gradient(0deg, transparent 8px, rgba(102,126,234,.08) 8px, rgba(102,126,234,.08) 9px, transparent 9px),
    linear-gradient(0deg, transparent 18px, rgba(102,126,234,.08) 18px, rgba(102,126,234,.08) 19px, transparent 19px),
    linear-gradient(0deg, transparent 28px, rgba(102,126,234,.08) 28px, rgba(102,126,234,.08) 29px, transparent 29px),
    linear-gradient(0deg, transparent 40px, rgba(0,0,0,.10) 40px, rgba(0,0,0,.10) 41px, transparent 41px);
}
.fi-chek__paper::before {
  content: '';
  position: absolute; top: -4px; left: 0; right: 0;
  height: 8px;
  background:
    linear-gradient(135deg, white 33%, transparent 33%, transparent 66%, white 66%),
    linear-gradient(45deg, white 33%, transparent 33%, transparent 66%, white 66%);
  background-size: 8px 8px;
}
.fi-chek__check {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(16,185,129,.4);
  animation: ord-check 3s ease-out infinite;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .fi *, .fi *::before, .fi *::after { animation: none !important; }
  .fi .fi-coin__c2, .fi .fi-roles__b, .fi .fi-chat__b, .fi .fi-doc__badge2 { opacity: 1; }
  .fi .fi-multi__b { height: var(--h); }
  .fi .fi-ch__bar { height: var(--h); }
  .fi .fi-order__check, .fi .fi-chek__check { transform: scale(1); }
}

/* Mobile */
@media (max-width: 560px) {
  .fi { height: 90px; margin-bottom: 14px; }
}
