:root {
  --bg: #f6f9ff;
  --paper: #ffffff;
  --paper-soft: #fbfdff;
  --ink: #102033;
  --muted: #5d6a7c;
  --soft: #e6edf7;
  --line: #dbe6f4;
  --blue: #2358f5;
  --blue-2: #0b7ad9;
  --indigo: #3344d8;
  --teal: #0f9f8f;
  --green: #15a66a;
  --amber: #f2a516;
  --red: #df4d4d;
  --shadow: 0 18px 46px rgba(29, 67, 124, 0.12);
  --shadow-soft: 0 10px 26px rgba(29, 67, 124, 0.08);
  --radius: 8px;
  --max: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(35, 88, 245, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 88, 245, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(16, 32, 51, 0.08) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 45%);
  z-index: -1;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section {
  padding: 92px 24px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 118px;
  background:
    linear-gradient(180deg, rgba(246, 249, 255, 0), #ffffff 78%),
    repeating-linear-gradient(90deg, rgba(35, 88, 245, 0.08) 0 1px, transparent 1px 52px);
  pointer-events: none;
}

.site-header {
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-bottom: 1px solid rgba(205, 220, 240, 0.82);
  border-radius: 0;
  background: rgba(246, 249, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(246, 249, 255, 0.94);
  border-bottom-color: rgba(187, 206, 232, 0.92);
  box-shadow: 0 12px 28px rgba(29, 67, 124, 0.08);
}

.site-header.is-hidden {
  transform: translate3d(0, calc(-100% - 10px), 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  display: block;
  color: #07132e;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

.footer .brand-mark {
  width: 42px;
  height: 42px;
}

.footer .brand-text {
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #3b4a5f;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid #d6e4ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(29, 67, 124, 0.1);
}

.header-cta svg,
.btn svg,
.icon-btn svg,
.panel-icon svg,
.feature-card > svg,
.benefit-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 58px 0 88px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #dbe8ff;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  line-height: 1.05;
}

h1 {
  margin-top: 22px;
  max-width: 760px;
  font-size: 54px;
  font-weight: 700;
  color: #102033;
}

.hero-lead {
  max-width: 660px;
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(35, 88, 245, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 24px 42px rgba(35, 88, 245, 0.28);
}

.btn-secondary,
.btn-plan {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-plan:hover {
  border-color: #c8d8ef;
  box-shadow: var(--shadow);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 42px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  color: var(--blue);
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-visual {
  min-height: 650px;
  position: relative;
}

.route-map {
  position: absolute;
  inset: 42px 0 70px;
  border: 1px solid rgba(219, 230, 244, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(35, 88, 245, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 159, 143, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.62);
  background-size: 48px 48px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.path {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(35, 88, 245, 0.12), rgba(15, 159, 143, 0.52));
  overflow: hidden;
}

.path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-100%);
  animation: route-light 3.7s linear infinite;
}

.path-a {
  width: 54%;
  left: 12%;
  top: 18%;
  transform: rotate(13deg);
}

.path-b {
  width: 62%;
  right: 8%;
  bottom: 22%;
  transform: rotate(-9deg);
  animation-delay: 0.7s;
}

.moving-box {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ffffff;
  border: 2px solid rgba(35, 88, 245, 0.2);
  box-shadow: 0 8px 20px rgba(35, 88, 245, 0.18);
}

.moving-box::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 4px;
  background: rgba(35, 88, 245, 0.16);
}

.box-a {
  top: 16%;
  left: 12%;
  animation: move-a 7s ease-in-out infinite;
}

.box-b {
  right: 20%;
  bottom: 18%;
  border-color: rgba(15, 159, 143, 0.24);
  animation: move-b 8s ease-in-out infinite;
}

.zone-label {
  position: absolute;
  padding: 7px 10px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #3d4b60;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.zone-a {
  left: 8%;
  top: 34%;
}

.zone-b {
  right: 10%;
  top: 18%;
}

.zone-c {
  right: 14%;
  bottom: 33%;
}

.desktop-console {
  width: 84%;
  min-width: 500px;
  position: absolute;
  left: 0;
  top: 96px;
  border: 1px solid #cad9ee;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(24, 66, 124, 0.18);
  overflow: hidden;
  animation: console-float 6s ease-in-out infinite;
}

.console-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f6f9ff;
}

.console-topbar > span,
.mock-window-bar > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfd9e7;
}

.console-topbar > span:nth-child(1),
.mock-window-bar > span:nth-child(1) {
  background: #ffb3a8;
}

.console-topbar > span:nth-child(2),
.mock-window-bar > span:nth-child(2) {
  background: #ffd46b;
}

.console-topbar > span:nth-child(3),
.mock-window-bar > span:nth-child(3) {
  background: #72d9ad;
}

.console-search {
  margin-left: auto;
  width: 44%;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #8190a4;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.console-body {
  min-height: 360px;
  display: grid;
  grid-template-columns: 86px 1fr;
}

.console-sidebar {
  padding: 18px 15px;
  background: #f8fbff;
  border-right: 1px solid var(--line);
}

.console-sidebar b {
  display: block;
  margin-bottom: 24px;
  font-family: "Unbounded", sans-serif;
  color: var(--blue);
}

.console-sidebar span {
  display: block;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 7px;
  background: #eaf1fb;
}

.console-sidebar span.active {
  background: linear-gradient(135deg, rgba(35, 88, 245, 0.16), rgba(15, 159, 143, 0.14));
  border: 1px solid rgba(35, 88, 245, 0.18);
}

.console-main {
  padding: 22px;
}

.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-heading small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 700;
}

.console-heading strong {
  font-size: 23px;
  font-weight: 800;
}

.console-heading button,
.mock-title-row button,
.phone-screen button,
.mobile-ui button {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.stat-card {
  padding: 15px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
}

.stat-card.blue strong {
  color: var(--blue);
}

.stat-card.green strong {
  color: var(--green);
}

.stat-card.amber strong {
  color: var(--amber);
}

.table-mock {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: #344255;
  font-size: 13px;
  font-weight: 700;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  min-height: 38px;
  color: var(--muted);
  background: #f6f9ff;
  font-size: 12px;
}

.status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.status.ready {
  color: var(--blue);
  background: #eef4ff;
}

.status.wait {
  color: #9b6b00;
  background: #fff5d8;
}

.status.done {
  color: var(--green);
  background: #e9f9f1;
}

.phone-preview {
  width: 174px;
  min-height: 354px;
  position: absolute;
  right: 8px;
  bottom: 72px;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid #cbd8ea;
  background: #eef3fb;
  box-shadow: 0 24px 46px rgba(24, 66, 124, 0.2);
  animation: phone-float 5.4s ease-in-out infinite;
}

.phone-speaker {
  width: 52px;
  height: 5px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: #c3cfdf;
}

.phone-screen {
  min-height: 314px;
  padding: 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.phone-appbar,
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-appbar b,
.mobile-top b {
  color: var(--blue);
}

.scan-area {
  min-height: 112px;
  margin-top: 18px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
  color: var(--blue);
  border: 1px dashed rgba(35, 88, 245, 0.38);
  border-radius: var(--radius);
  background: #f5f8ff;
  font-size: 11px;
  font-weight: 800;
}

.scan-area svg {
  width: 40px;
  height: 40px;
}

.phone-task {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.phone-task small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.phone-task strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.phone-screen button {
  width: 100%;
  margin-top: 12px;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  max-width: 890px;
  margin: 18px auto 0;
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
}

.section-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.workflow,
.mobile-section,
.benefits,
.cta-section {
  background: #ffffff;
}

.workflow-grid,
.steps-grid,
.mobile-grid,
.features-grid,
.benefits-grid,
.faq-grid,
.pricing-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workflow-panel:hover,
.feature-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.screen-card:hover,
.mobile-shot:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #c8d8ef;
}

.panel-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #d8e6ff;
}

.panel-icon svg {
  width: 25px;
  height: 25px;
}

.workflow-panel h3,
.step-card h3,
.feature-card h3,
.benefit-card h3,
.pricing-card h3,
.screen-card h3,
.mobile-shot h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
  font-weight: 800;
}

.workflow-panel p,
.step-card p,
.feature-card p,
.benefit-card p,
.screen-card p,
.mobile-shot p,
.pricing-head p,
.footer p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-panel ul,
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.workflow-panel li {
  position: relative;
  padding-left: 25px;
  margin-top: 11px;
  color: #344255;
  font-weight: 700;
  line-height: 1.45;
}

.workflow-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 159, 143, 0.1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.step-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(35, 88, 245, 0.06), rgba(15, 159, 143, 0.04)),
    #ffffff;
}

.step-card span {
  font-family: "Unbounded", sans-serif;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.row-heading h2,
.row-heading p {
  margin-left: 0;
  margin-right: 0;
}

.slider-controls {
  display: none;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.screens-slider {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.screens-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.screens-track::-webkit-scrollbar {
  display: none;
}

.screens-track::-webkit-scrollbar-thumb {
  background: #b9c8dc;
  border-radius: 999px;
}

.screen-card,
.mobile-shot,
.feature-card,
.benefit-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.screen-card {
  display: flex;
  flex-direction: column;
  min-height: 566px;
  padding: 18px;
  scroll-snap-align: start;
  overflow: hidden;
}

.mock-window {
  height: 420px;
  min-height: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbd8ea;
  border-radius: var(--radius);
  background: #ffffff;
}

.screen-card *,
.mock-window * {
  min-width: 0;
}

.mock-window-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  background: #f4f8fe;
  border-bottom: 1px solid var(--line);
}

.mock-window-bar b {
  margin-left: 8px;
  color: #3c4c62;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-window-body {
  height: calc(100% - 42px);
  min-height: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.mock-sidebar {
  background:
    linear-gradient(180deg, #eef4ff 0 18%, transparent 18% 100%),
    repeating-linear-gradient(180deg, #eaf1fb 0 26px, transparent 26px 38px);
  border-right: 1px solid var(--line);
}

.mock-content {
  padding: 18px;
}

.mock-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.mock-title-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mock-title-row h4,
.stock-list h4,
.rights-panel h4 {
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.18;
}

.receipt-flow {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  margin-top: 18px;
}

.barcode-card,
.placement-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  text-align: center;
  overflow: hidden;
}

.barcode-card svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.barcode-card span,
.placement-card strong {
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.placement-card small {
  color: var(--muted);
  font-weight: 800;
}

.mini-table {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13px;
}

.mini-table div {
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 0.5fr 0.7fr;
  min-height: 39px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.mini-table div:first-child {
  background: #f6f9ff;
  color: var(--muted);
}

.mini-table div:last-child {
  border-bottom: 0;
}

.stock-screen .mock-window-body {
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  padding: 18px;
}

.stock-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-right: 16px;
}

.rack {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(35, 88, 245, 0.08) 18% 20%, transparent 20% 40%, rgba(35, 88, 245, 0.08) 40% 42%, transparent 42%),
    #f8fbff;
  color: #42536b;
  font-weight: 900;
}

.rack.active {
  border-color: rgba(15, 159, 143, 0.28);
  background: #eefaf7;
  color: var(--teal);
}

.rack.warning {
  border-color: rgba(242, 165, 22, 0.34);
  background: #fff8e8;
  color: #a46c00;
}

.stock-list {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.stock-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #42536b;
}

.stock-line span {
  overflow-wrap: anywhere;
}

.stock-line:last-child {
  border-bottom: 0;
}

.stock-line b {
  color: var(--ink);
}

.report-body {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 18px;
}

.chart-area {
  min-height: 278px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(180deg, transparent 0 46px, rgba(16, 32, 51, 0.06) 47px),
    #fbfdff;
}

.chart-area span {
  flex: 1;
  min-height: 34px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #3c7cff, #14a58f);
  animation: bar-pulse 4s ease-in-out infinite;
}

.chart-area span:nth-child(even) {
  animation-delay: 0.6s;
}

.report-cards {
  display: grid;
  gap: 12px;
}

.report-cards div {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.report-cards small {
  color: var(--muted);
  font-weight: 800;
}

.report-cards strong {
  margin-top: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 30px;
  color: var(--blue);
}

.users-body {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding: 18px;
}

.user-list,
.rights-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px;
  border-radius: 7px;
  color: #43546a;
  overflow: hidden;
}

.user-row b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-row.active {
  background: #eef4ff;
  color: var(--blue);
}

.user-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.rights-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: #43546a;
  font-size: 14px;
  font-weight: 700;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8c7da;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--blue);
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mobile-shot {
  padding: 24px;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

.phone-frame {
  width: min(236px, 100%);
  min-height: 478px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 32px;
  border: 1px solid #cbd8ea;
  background: #eef3fb;
  box-shadow: 0 20px 38px rgba(29, 67, 124, 0.14);
}

.phone-notch {
  width: 72px;
  height: 7px;
  margin: 3px auto 12px;
  border-radius: 999px;
  background: #c3cfdf;
}

.mobile-ui {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: 23px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: left;
  overflow: hidden;
}

.mobile-ui * {
  min-width: 0;
}

.task-progress {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: #eaf0f8;
  overflow: hidden;
}

.task-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.mobile-card {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  overflow: hidden;
}

.mobile-card.accent {
  background: #eef4ff;
  border-color: #d8e6ff;
}

.mobile-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.mobile-card strong {
  display: block;
  margin-top: 5px;
  max-width: 100%;
  font-size: 22px;
  line-height: 1.12;
  color: var(--blue);
  overflow-wrap: anywhere;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.scanner-ui .mobile-card strong {
  font-size: 15px;
  white-space: nowrap;
}

.pick-list {
  margin-top: 14px;
}

.pick-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #43546a;
  font-size: 13px;
  font-weight: 800;
}

.pick-list div:last-child {
  border-bottom: 0;
}

.mobile-ui button {
  width: 100%;
  margin-top: auto;
}

.scanner-box {
  min-height: 168px;
  margin-top: 18px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(35, 88, 245, 0.45);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(35, 88, 245, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(35, 88, 245, 0.07) 1px, transparent 1px),
    #f6f9ff;
  background-size: 26px 26px;
  color: var(--blue);
  overflow: hidden;
}

.scanner-box svg {
  width: 64px;
  height: 64px;
}

.scan-line-anim {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(15, 159, 143, 0.48);
  animation: scan-y 2.4s ease-in-out infinite;
}

.barcode-lines {
  min-height: 42px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  margin-top: 15px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.barcode-lines span {
  width: 5px;
  background: #203047;
}

.barcode-lines span:nth-child(2),
.barcode-lines span:nth-child(5) {
  width: 9px;
}

.barcode-lines span:nth-child(4) {
  width: 3px;
}

.status-ring {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  margin: 28px auto 18px;
  border-radius: 999px;
  background: conic-gradient(var(--blue) 0 84%, #e8eef7 84% 100%);
  position: relative;
}

.status-ring::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: inherit;
  background: #ffffff;
}

.status-ring span {
  position: relative;
  z-index: 2;
  font-family: "Unbounded", sans-serif;
  font-size: 28px;
  color: var(--blue);
  font-weight: 700;
}

.status-list {
  display: grid;
  gap: 9px;
}

.status-list div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: #42536b;
  font-size: 12px;
  font-weight: 800;
}

.status-list span {
  overflow-wrap: anywhere;
}

.status-list svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.status-list div:last-child svg {
  color: var(--amber);
  animation: rotate-loader 2s linear infinite;
}

.features {
  background:
    linear-gradient(180deg, #ffffff 0, #f6f9ff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 226px;
  padding: 24px;
}

.feature-card > svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
  padding: 7px;
  border-radius: var(--radius);
  background: #eef4ff;
  box-sizing: content-box;
}

.feature-card:nth-child(2) > svg,
.feature-card:nth-child(4) > svg {
  color: var(--teal);
  background: #eafaf7;
}

.feature-card:nth-child(3) > svg,
.feature-card:nth-child(6) > svg {
  color: #a56d00;
  background: #fff5db;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 248px;
  padding: 24px;
}

.benefit-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #d8e6ff;
}

.benefit-card:nth-child(2) span {
  color: var(--teal);
  background: #eafaf7;
  border-color: #c8efe7;
}

.benefit-card:nth-child(3) span {
  color: #a56d00;
  background: #fff5db;
  border-color: #ffe3a2;
}

.benefit-card:nth-child(4) span {
  color: var(--green);
  background: #e9f9f1;
  border-color: #cbefd9;
}

.pricing {
  background:
    linear-gradient(90deg, rgba(35, 88, 245, 0.04) 1px, transparent 1px),
    #f6f9ff;
  background-size: 60px 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(35, 88, 245, 0.45);
  box-shadow: 0 24px 58px rgba(35, 88, 245, 0.16);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  max-width: 118px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eafaf7;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
}

.pricing-card.featured .pricing-head {
  padding-right: 124px;
}

.pricing-head h3 {
  margin-top: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 28px;
}

.price {
  margin-top: 28px;
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--blue);
}

.price span {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 13px;
  color: #344255;
  line-height: 1.45;
  font-weight: 700;
}

.pricing-card li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card ul {
  margin-bottom: 30px;
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  min-height: 182px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  padding-bottom: 110px;
}

.cta-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 52px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: 39px;
}

.cta-copy p {
  max-width: 690px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.lead-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #334358;
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  outline: none;
  appearance: none;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lead-form textarea {
  min-height: 106px;
  padding: 14px 13px;
  line-height: 1.55;
  font-weight: 700;
  vertical-align: top;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(35, 88, 245, 0.64);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(35, 88, 245, 0.12);
}

.lead-form .btn {
  width: 100%;
}

.lead-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-toast {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 90;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: fit-content;
  max-width: calc(100vw - 32px);
  padding: 15px 17px;
  border: 1px solid rgba(35, 88, 245, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(20, 35, 63, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.96);
  filter: blur(4px);
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.lead-toast__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue);
}

.lead-toast__icon svg {
  width: 20px;
  height: 20px;
}

.lead-toast__title {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.lead-toast__text {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.lead-toast__text:empty {
  display: none;
}

.lead-toast.is-error .lead-toast__icon {
  background: #d53535;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 36;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 88, 245, 0.18);
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 16px 34px rgba(35, 88, 245, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.96);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top:hover {
  transform: translate3d(0, -3px, 0) scale(1);
  box-shadow: 0 20px 42px rgba(35, 88, 245, 0.28);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.footer {
  padding: 34px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.footer p {
  max-width: 430px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  margin-left: auto;
  text-align: right;
  color: #43546a;
  font-weight: 700;
}

.footer-links a {
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes route-light {
  to {
    transform: translateX(100%);
  }
}

@keyframes move-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(260px, 74px) rotate(10deg);
  }
}

@keyframes move-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-210px, -46px) rotate(-9deg);
  }
}

@keyframes console-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(12px) rotate(-1deg);
  }
}

@keyframes bar-pulse {
  0%,
  100% {
    opacity: 0.92;
  }
  50% {
    opacity: 0.68;
  }
}

@keyframes scan-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(122px);
  }
}

@keyframes rotate-loader {
  to {
    transform: rotate(360deg);
  }
}

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

@media (max-width: 980px) {
  .slider-controls {
    display: flex;
  }

  .screens-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    padding: 0 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #b9c8dc transparent;
  }

  .screens-track::-webkit-scrollbar {
    display: block;
    height: 8px;
  }

  .slider-dots {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .section {
    padding: 78px 22px;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy {
    padding: 56px 0 12px;
  }

  h1 {
    max-width: 840px;
    font-size: 44px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .desktop-console {
    width: calc(100% - 80px);
    min-width: 0;
    left: 0;
  }

  .phone-preview {
    right: 0;
  }

  .features-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    order: -1;
  }

  .pricing-card.featured .pricing-head {
    padding-right: 0;
  }

  .popular {
    position: static;
    width: fit-content;
    max-width: none;
    margin-bottom: 14px;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 64px 18px;
  }

  .site-header,
  .hero-shell,
  .section-heading,
  .workflow-grid,
  .steps-grid,
  .screens-slider,
  .mobile-grid,
  .features-grid,
  .benefits-grid,
  .faq-grid,
  .pricing-grid,
  .cta-wrap,
  .footer-inner {
    width: 100%;
  }

  .site-header {
    width: 100%;
    top: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-shell {
    width: min(100%, calc(100% - 36px));
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 44px;
    padding: 0;
  }

  h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .desktop-console {
    width: 100%;
    top: 64px;
  }

  .console-body {
    grid-template-columns: 64px 1fr;
  }

  .console-sidebar {
    padding: 14px 10px;
  }

  .console-main {
    padding: 16px;
  }

  .console-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 11px 13px;
  }

  .phone-preview {
    width: 154px;
    min-height: 326px;
    bottom: 24px;
    right: 8px;
  }

  .phone-screen {
    min-height: 286px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 31px;
  }

  .row-heading {
    display: grid;
    text-align: left;
  }

  .workflow-grid,
  .steps-grid,
  .mobile-grid,
  .features-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .screens-track {
    grid-auto-columns: 100%;
  }

  .screen-card {
    min-height: 0;
  }

  .mock-window {
    height: auto;
    min-height: 0;
  }

  .mock-window-body,
  .stock-screen .mock-window-body,
  .report-body,
  .users-body {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .mock-title-row {
    display: grid;
  }

  .mock-title-row button {
    width: 100%;
  }

  .mock-sidebar {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .receipt-flow {
    grid-template-columns: 1fr;
  }

  .stock-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
  }

  .chart-area {
    min-height: 210px;
  }

  .phone-frame {
    width: min(224px, 100%);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 56px 14px;
  }

  .hero {
    padding-top: var(--header-height);
    padding-left: 0;
    padding-right: 0;
  }

  .site-header,
  .hero-shell,
  .section-heading,
  .workflow-grid,
  .steps-grid,
  .screens-slider,
  .mobile-grid,
  .features-grid,
  .benefits-grid,
  .faq-grid,
  .pricing-grid,
  .cta-wrap,
  .footer-inner {
    width: 100%;
  }

  .site-header {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    min-height: var(--header-height);
  }

  .hero-shell {
    width: min(100%, calc(100% - 28px));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 24px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .route-map {
    inset: 28px 0 42px;
  }

  .desktop-console {
    top: 44px;
  }

  .console-search {
    display: none;
  }

  .console-heading {
    display: grid;
  }

  .console-heading button {
    width: 100%;
  }

  .phone-preview {
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    animation: none;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 28px;
  }

  .section-heading p,
  .cta-copy p {
    font-size: 15px;
  }

  .workflow-panel,
  .step-card,
  .feature-card,
  .benefit-card,
  .faq-item,
  .pricing-card,
  .mobile-shot {
    padding: 20px;
  }

  .screens-track {
    gap: 14px;
    padding-bottom: 14px;
  }

  .screen-card {
    padding: 14px;
  }

  .mock-window-bar {
    min-height: 40px;
    padding: 0 10px;
  }

  .mock-window-bar b {
    font-size: 12px;
  }

  .mock-content,
  .stock-screen .mock-window-body,
  .report-body,
  .users-body {
    padding: 14px;
  }

  .mock-title-row h4,
  .stock-list h4,
  .rights-panel h4 {
    font-size: 18px;
  }

  .barcode-card,
  .placement-card {
    min-height: 82px;
  }

  .barcode-card span,
  .placement-card strong {
    font-size: 14px;
  }

  .mini-table {
    font-size: 12px;
  }

  .mini-table div {
    grid-template-columns: 1fr 0.42fr 0.42fr 0.58fr;
    gap: 6px;
    min-height: 36px;
    padding: 0 8px;
  }

  .stock-map {
    gap: 8px;
  }

  .rack {
    min-height: 62px;
  }

  .chart-area {
    min-height: 168px;
    gap: 8px;
    padding: 12px;
  }

  .report-cards div {
    min-height: 74px;
    padding: 13px;
  }

  .report-cards strong {
    font-size: 24px;
  }

  .user-row {
    min-height: 48px;
  }

  .phone-frame {
    width: min(214px, 100%);
    min-height: 0;
    padding: 12px;
    border-radius: 30px;
  }

  .mobile-ui {
    min-height: 386px;
    padding: 12px;
    border-radius: 22px;
  }

  .scanner-box {
    min-height: 136px;
    margin-top: 14px;
  }

  .scan-line-anim {
    top: 18px;
  }

  .scanner-ui .mobile-card strong {
    font-size: 13px;
  }

  .status-ring {
    width: 132px;
    height: 132px;
    margin: 20px auto 14px;
  }

  .cta-wrap {
    padding: 0;
  }

  .price {
    font-size: 28px;
  }

  .lead-toast {
    right: 14px;
    bottom: 76px;
    width: calc(100vw - 28px);
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}
