:root {
  --navy: #071A3D;
  --navy-2: #0C3C84;
  --blue: #1267F4;
  --blue-2: #5A93FF;
  --blue-3: #EAF2FF;
  --ink: #0C1731;
  --text: #2B3855;
  --muted: #65708A;
  --line: #DDE6F3;
  --soft: #F5F8FD;
  --white: #FFFFFF;
  --green: #14A36D;
  --shadow: 0 18px 50px rgba(7, 26, 61, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 230, 243, .8);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: 182px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--blue); }

.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(18, 103, 244, .18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 103, 244, .24);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-outline {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 10% 15%, rgba(18, 103, 244, .07), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background: url("assets/background-grid.svg");
  opacity: .55;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
  color: var(--navy);
}

.hero h1 span { color: var(--blue); }

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
  font-weight: 650;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-demo {
  position: relative;
  min-height: 610px;
}

.app-window {
  position: absolute;
  inset: 16px 0 auto 0;
  z-index: 3;
  border: 1px solid #C9D6E8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 26, 61, .18);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.app-topbar {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #F9FBFE;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 900;
}
.mini-brand img { width: 26px; }

.app-search,
.account-chip {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: #8590A8;
  font-size: 12px;
}

.account-chip {
  justify-content: center;
  color: var(--text);
  font-weight: 700;
}

.app-body {
  display: grid;
  grid-template-columns: 118px 1fr 170px;
  min-height: 390px;
}

.app-sidebar {
  padding: 14px 10px;
  background: var(--navy);
}

.side-item {
  margin-bottom: 8px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #C7D6F2;
  font-size: 11px;
  font-weight: 700;
}
.side-item.active {
  color: #fff;
  background: var(--blue);
}

.product-table {
  padding: 14px;
  background: #fff;
}

.table-head,
.product-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.4fr) minmax(95px, 1fr) 65px 38px;
  gap: 8px;
  align-items: center;
}

.table-head {
  padding: 8px 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-row {
  min-height: 48px;
  padding: 7px 9px;
  border-top: 1px solid #EDF1F6;
  color: #34415B;
  font-size: 10px;
}

.product-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--ink);
}

.product-row.selected {
  background: #EEF5FF;
  border-color: transparent;
  border-radius: 8px;
}

.plant-dot {
  width: 26px;
  height: 26px;
  border-radius: 7px 7px 10px 10px;
  display: inline-block;
  position: relative;
  background: #E9F4E8;
}
.plant-dot::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 12px;
  height: 16px;
  border-radius: 70% 20% 70% 20%;
  background: #3D8B46;
  transform: rotate(-18deg);
}
.plant-2::before { background: #7EBB61; transform: rotate(20deg); }
.plant-3::before { background: #9B6BB3; }
.plant-4::before { background: #5C9652; height: 19px; }
.plant-5::before { background: #71A36B; }

.label-panel {
  padding: 14px;
  border-left: 1px solid var(--line);
  background: #FBFCFE;
  text-align: center;
}

.product-thumb {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: #EEF4EB;
  font-size: 34px;
}

.label-panel strong,
.label-panel small {
  display: block;
}
.label-panel strong { font-size: 12px; }
.label-panel small { margin-top: 3px; color: var(--muted); font-size: 9px; }

.label-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin: 12px 0;
}
.label-tabs span {
  padding: 6px 2px;
  border-radius: 6px;
  color: var(--muted);
  background: #EEF2F7;
  font-size: 8px;
  font-weight: 900;
}
.label-tabs .active {
  color: var(--blue);
  background: #E5EFFF;
}

.barcode-card,
.mini-label,
.label-sample {
  padding: 10px;
  border: 1px solid #D8E0EC;
  border-radius: 9px;
  background: #fff;
}

.barcode {
  height: 38px;
  background:
    repeating-linear-gradient(
      to right,
      #111 0 2px,
      transparent 2px 4px,
      #111 4px 5px,
      transparent 5px 8px,
      #111 8px 11px,
      transparent 11px 13px
    );
}

.barcode.ean {
  background:
    repeating-linear-gradient(
      to right,
      #111 0 1px,
      transparent 1px 3px,
      #111 3px 6px,
      transparent 6px 8px,
      #111 8px 10px,
      transparent 10px 12px
    );
}

.barcode.small { height: 24px; }
.barcode.tiny { height: 18px; }

.barcode-card b {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: .04em;
}

.label-panel label {
  display: block;
  margin-top: 12px;
  text-align: left;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.label-panel input {
  width: 100%;
  margin-top: 4px;
  padding: 8px;
  border: 1px solid #CAD4E3;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.label-panel button {
  width: 100%;
  margin-top: 9px;
  padding: 9px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.hardware-scene {
  position: absolute;
  z-index: 6;
  left: 2%;
  right: 0;
  bottom: 2px;
  height: 185px;
}

.parcel {
  position: absolute;
  left: 4%;
  bottom: 22px;
  width: 142px;
  height: 112px;
  padding: 20px 18px 12px;
  background: linear-gradient(135deg, #DFA766, #C98D4C);
  border-radius: 7px;
  box-shadow: 0 12px 25px rgba(66, 43, 14, .2);
  text-align: center;
  transform: rotate(-1deg);
}
.parcel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 30px;
  height: 100%;
  background: rgba(255,255,255,.12);
  transform: translateX(-50%);
}
.parcel span,
.parcel b {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 9px;
}
.parcel .barcode { position: relative; z-index: 2; margin: 4px 0; }

.scanner {
  position: absolute;
  left: 37%;
  bottom: 8px;
  width: 92px;
  height: 136px;
  transform: rotate(-12deg);
}
.scanner-head {
  position: absolute;
  top: 0;
  left: 4px;
  width: 80px;
  height: 48px;
  border-radius: 20px 28px 14px 18px;
  background: linear-gradient(160deg, #303A49, #111821);
  box-shadow: inset -8px -8px 18px rgba(0,0,0,.28), 0 14px 24px rgba(0,0,0,.2);
}
.scanner-head::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 18px;
  height: 9px;
  border-radius: 9px;
  background: #20A8FF;
  box-shadow: 0 0 8px rgba(32,168,255,.65);
}
.scanner-handle {
  position: absolute;
  top: 38px;
  left: 26px;
  width: 34px;
  height: 94px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(90deg, #202934, #0F151D);
  transform: skewX(-8deg);
}

.printer {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 185px;
  height: 142px;
  border-radius: 28px 28px 12px 12px;
  background: linear-gradient(145deg, #2F3A48, #11171F);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}
.printer-slot {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 56px;
  height: 12px;
  border-radius: 8px;
  background: #070A0E;
}
.printer-light {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57C85E;
}
.print-label {
  position: absolute;
  left: 47px;
  top: 66px;
  width: 96px;
  min-height: 108px;
  padding: 9px;
  background: #fff;
  text-align: center;
  box-shadow: 0 9px 18px rgba(0,0,0,.12);
}
.print-label b { font-size: 10px; }
.print-label small { font-size: 7px; }

.hero-ribbon {
  position: absolute;
  z-index: 1;
  right: -150px;
  bottom: -240px;
  width: 390px;
  opacity: .25;
  pointer-events: none;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.split-heading h2,
.audience-section h2,
.about-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading p:not(.eyebrow),
.split-heading > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.workflow-section {
  background: #fff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #FFFFFF, #F8FBFF);
  box-shadow: 0 12px 34px rgba(7, 26, 61, .06);
}

.step-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 24px;
}
.step-card p {
  min-height: 72px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.mini-ui {
  padding: 16px;
  border: 1px solid #D8E6F7;
  border-radius: 12px;
  background: #EAF4FF;
}

.mini-ui label {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.input-demo {
  padding: 11px 12px;
  border: 1px solid #C9D6E8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.mini-label {
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
}
.mini-label strong, .mini-label small {
  display: block;
}
.mini-label .barcode { margin: 7px 0; }

.labels-section {
  background: var(--soft);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.split-heading > div { max-width: 620px; }
.split-heading > p { max-width: 420px; margin: 0; }

.label-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.label-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.label-card h3 {
  margin: 16px 0 7px;
  color: var(--navy);
  font-size: 18px;
}

.label-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.label-sample {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.label-sample .barcode { min-height: 38px; }
.label-sample small { margin-top: 7px; }

.text-label b,
.bin-label b,
.custom-label b {
  font-size: 22px;
  color: var(--navy);
}

.bin-label b { font-size: 28px; letter-spacing: .02em; }
.custom-label b { color: #B33C2E; font-size: 19px; }

.benefits-band {
  padding: 32px 0;
  background: var(--navy);
  color: #fff;
}

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

.benefits-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(90, 147, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5A93FF;
  font-size: 24px;
  font-weight: 900;
}

.benefits-grid h3 {
  margin: 0 0 5px;
  font-size: 16px;
}
.benefits-grid p {
  margin: 0;
  color: #C6D2E8;
  font-size: 13px;
  line-height: 1.45;
}

.audience-section { background: #fff; }
.audience-section.alt { background: var(--soft); }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-column.reverse > :first-child { order: 2; }

.large-copy {
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.feature-visual {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(18,103,244,.08), rgba(18,103,244,.02)),
    url("assets/background-grid.svg"),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.scan-flow {
  display: grid;
  grid-template-columns: 74px auto 112px auto 120px;
  gap: 14px;
  align-items: center;
}

.scan-flow span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(7,26,61,.08);
}
.scan-flow .scan-code {
  background: var(--navy);
  color: #fff;
}
.scan-flow .label-output {
  color: var(--blue);
}
.scan-flow i {
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
}
.feature-visual p {
  margin: 30px 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.label-wall {
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 18px;
}

.wall-label {
  min-height: 120px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #D8E0EC;
  background: #fff;
  box-shadow: 0 10px 20px rgba(7,26,61,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.wall-label small { color: var(--muted); }
.wall-label b { color: var(--navy); font-size: 25px; }
.wall-label.warning b { color: #B33C2E; font-size: 19px; }
.wall-label.product .barcode { min-height: 34px; margin-bottom: 7px; }

.pricing-section {
  background: #fff;
}

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

.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(7,26,61,.06);
}

.price-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, #F5F9FF, #FFFFFF);
}

.best-value {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.plan-name {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}
.price span {
  font-size: 26px;
  vertical-align: top;
}

.price-card > p:not(.plan-name) {
  color: var(--muted);
  margin: 7px 0 14px;
}
.price-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.price-note {
  display: block;
  min-height: 42px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.large-plan {
  background: linear-gradient(180deg, #FFFFFF, #F8FBFF);
}

.pricing-points {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  padding: 28px;
  border-radius: 22px;
  background: var(--soft);
}
.pricing-points .check-list { margin: 0; }

.about-section {
  background: var(--soft);
}

.about-section p:not(.eyebrow) {
  color: var(--text);
  line-height: 1.65;
}

.cta-section {
  background: #fff;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding: 54px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(18, 103, 244, .14), transparent 55%),
    var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -135px;
  width: 330px;
  height: 330px;
  background: url("assets/hero-illustration.svg") center/contain no-repeat;
  opacity: .2;
}
.cta-card > * { position: relative; z-index: 2; }
.cta-card .eyebrow { color: #74A5FF; }
.cta-card h2 { color: #fff; }
.cta-card p:not(.eyebrow) {
  max-width: 720px;
  color: #D6E1F3;
  font-size: 17px;
  line-height: 1.6;
}

.site-footer {
  padding: 40px 0;
  background: #041129;
  color: #C5D0E4;
}

.footer-layout {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-layout img { width: 190px; }
.footer-layout p { margin: 0; text-align: center; font-size: 13px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  text-decoration: none;
  color: #DCE6F7;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: 200px 1fr auto;
  }
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 13px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-demo {
    min-height: 610px;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
  }

  .label-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { position: sticky; }
  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }
  .brand img { width: 160px; }
  .nav-cta { display: none; }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }
  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--navy);
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }
  .primary-nav a:hover { background: var(--soft); }

  .hero { padding-top: 54px; }
  .hero-points { grid-template-columns: 1fr; }

  .app-window { transform: none; }
  .hero-demo { min-height: 560px; }
  .app-topbar { grid-template-columns: 120px 1fr; }
  .account-chip { display: none; }
  .app-body { grid-template-columns: 92px 1fr 145px; }
  .side-item { padding: 9px 7px; }
  .table-head, .product-row { grid-template-columns: minmax(120px, 1.5fr) 1fr 50px; }
  .table-head span:last-child,
  .product-row span:last-child { display: none; }

  .workflow-grid { grid-template-columns: 1fr; }
  .step-card p { min-height: auto; }
  .label-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column, .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .two-column.reverse > :first-child { order: 0; }
  .pricing-layout { grid-template-columns: 1fr 1fr; }
  .pricing-points { grid-column: 1 / -1; }
  .split-heading { display: block; }
  .split-heading > p { margin-top: 12px; }

  .cta-card { padding: 38px; }
  .footer-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 40px 0 22px; }
  .hero h1 { font-size: 52px; }
  .hero-lede { font-size: 18px; }
  .hero-actions .button { width: 100%; }

  .hero-demo {
    min-height: 500px;
    margin-top: 10px;
  }
  .app-window {
    left: 0;
    right: 0;
  }
  .app-topbar {
    grid-template-columns: 1fr;
  }
  .mini-brand { display: none; }
  .app-body {
    grid-template-columns: 1fr;
    min-height: 330px;
  }
  .app-sidebar { display: none; }
  .product-table { padding: 10px; }
  .table-head,
  .product-row {
    grid-template-columns: 1.5fr 1fr;
  }
  .table-head span:nth-child(n+3),
  .product-row span:nth-child(n+3) { display: none; }
  .label-panel {
    display: none;
  }
  .hardware-scene { height: 165px; }
  .parcel { width: 120px; left: 0; }
  .scanner { left: 44%; transform: scale(.85) rotate(-12deg); transform-origin: bottom; }
  .printer { width: 155px; right: -5px; transform: scale(.9); transform-origin: bottom right; }

  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .label-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .scan-flow {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .scan-flow i { transform: rotate(90deg); text-align: center; }
  .label-wall { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-points { grid-column: auto; }
  .cta-card {
    display: block;
    padding: 32px 24px;
  }
  .cta-card .button {
    width: 100%;
    margin-top: 18px;
  }
}

.brand-owner-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(18, 103, 244, .08), transparent 28%),
    var(--soft);
}

.brand-owner-section p:not(.eyebrow) {
  color: var(--text);
  line-height: 1.65;
}

.brand-product-visual {
  position: relative;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 22px;
  min-height: 430px;
  overflow: hidden;
}

.brand-pack {
  position: relative;
  min-height: 280px;
  padding: 28px 22px 24px;
  border-radius: 18px 18px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 35px rgba(7, 26, 61, .14);
}

.pack-one {
  background: linear-gradient(160deg, #0C3C84, #071A3D);
  color: #fff;
  transform: rotate(-2deg);
}

.pack-two {
  background: linear-gradient(160deg, #EAF2FF, #C9DCF9);
  color: var(--navy);
  transform: rotate(2deg) translateY(16px);
}

.brand-pack-name {
  position: absolute;
  top: 24px;
  left: 22px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.brand-pack-product {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
}

.brand-ean-label {
  padding: 12px;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 8px 18px rgba(7, 26, 61, .12);
}

.brand-ean-label .barcode {
  height: 46px;
}

.brand-ean-label small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .08em;
}

.brand-message {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  text-align: left;
}

.brand-message strong,
.brand-message span {
  display: block;
}

.brand-message strong {
  color: var(--navy);
  font-size: 18px;
}

.brand-message span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .brand-product-visual {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    padding: 22px 16px;
  }

  .brand-pack {
    min-height: 220px;
    padding: 20px 14px 16px;
  }

  .brand-pack-name {
    top: 18px;
    left: 14px;
    font-size: 10px;
  }

  .brand-pack-product {
    font-size: 16px;
  }

  .brand-ean-label {
    padding: 8px;
  }

  .brand-ean-label .barcode {
    height: 34px;
  }
}
