:root {
  --navy-950: #071525;
  --navy-900: #0b1f33;
  --navy-800: #12324e;
  --blue-600: #2563eb;
  --blue-500: #3578f6;
  --blue-100: #dbeafe;
  --orange-500: #ff7547;
  --orange-100: #ffede7;
  --ice-50: #f6f9fc;
  --ice-100: #eef4f8;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --white: #ffffff;
  --success: #0f9f6e;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.14);
  --shadow-soft: 0 14px 40px rgba(11, 31, 51, 0.09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(203, 213, 225, 0.75);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.12);
}

.brand-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand small {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 650;
}

.navlinks a:hover {
  color: var(--blue-600);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 13px 30px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-300);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(7, 21, 37, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 117, 71, 0.2), transparent 24%),
    radial-gradient(circle at 8% 20%, rgba(53, 120, 246, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--ice-50) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -230px;
  bottom: 90px;
  border-radius: 50%;
  border: 90px solid rgba(53, 120, 246, 0.05);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 78px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange-500);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 20px 0 22px;
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.5vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--slate-700);
  font-size: 1.18rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
  color: var(--slate-700);
  font-size: 0.91rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.phone-card {
  position: relative;
  padding: 17px;
  border-radius: 34px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 35px 85px rgba(7, 21, 37, 0.3);
  transform: rotate(1.5deg);
}

.app-window {
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
}

.app-header,
.pick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--slate-300);
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #9a3412;
  background: var(--orange-100);
  font-size: 0.7rem;
  font-weight: 800;
}

.pick-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  padding: 15px 0;
  border-bottom: 1px solid #e8eef4;
}

.pick-item b,
.pick-item small {
  display: block;
}

.pick-item small {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 0.74rem;
}

.thumb {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.2rem;
}

.thumb-produce { background: #e6f8ef; }
.thumb-chilled { background: #e7f2ff; }
.thumb-frozen { background: #eef1ff; }

.scan-box {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 20px;
  border: 1px dashed #88a8d8;
  border-radius: 16px;
  color: var(--navy-900);
  background: #f6faff;
  text-align: center;
  font-weight: 800;
}

.scan-box small {
  display: block;
  margin-top: 10px;
  color: var(--success);
  font-weight: 700;
}

.scan-line {
  height: 2px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
}

.floating-stat {
  position: absolute;
  right: -28px;
  bottom: 45px;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.floating-stat strong {
  display: block;
  color: var(--blue-600);
  font-size: 1.25rem;
}

.image-grid {
  position: relative;
  z-index: 1;
  margin-top: 74px;
}

.image-card {
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.app-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.app-gallery-grid img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  border: 1px solid #dce5ee;
  background: var(--ice-100);
}

.section {
  padding: 105px 0;
}

.section-tinted {
  background: var(--ice-50);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .section-kicker {
  justify-content: center;
  margin-bottom: 12px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--slate-500);
  font-size: 1.06rem;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head.align-left .section-kicker {
  justify-content: flex-start;
}

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

.card {
  padding: 30px;
  border: 1px solid #dce5ee;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(11, 31, 51, 0.06);
}

.card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 14px;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: 1.35rem;
  font-weight: 850;
}

.card:nth-child(2) .icon {
  color: #c2410c;
  background: var(--orange-100);
}

.card p,
.operation-card p {
  margin-bottom: 0;
  color: var(--slate-500);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 76px;
}

.list {
  display: grid;
  gap: 14px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 9px 25px rgba(11, 31, 51, 0.06);
}

.list-item span {
  color: var(--slate-500);
}

.visual-panel {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 117, 71, 0.35), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.zone-labels {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.zone-labels span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.74rem;
  font-weight: 800;
}

.route {
  display: grid;
  gap: 12px;
}

.route-step {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.route-step span {
  color: #bad0e4;
  font-size: 0.82rem;
}

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

.operation-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--ice-50);
}

.operation-card:nth-child(even) {
  background: #fff4ef;
}

.operation-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--blue-600);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.operation-card:nth-child(even) .operation-number {
  color: #c2410c;
}

.integration-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  margin-top: 70px;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #1749a5);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.24);
}

.integration-banner .section-kicker {
  color: #dbeafe;
}

.integration-banner h2 {
  max-width: 750px;
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.integration-banner p {
  max-width: 780px;
  margin-bottom: 0;
  color: #dbeafe;
}

.demo-section {
  padding-top: 25px;
  background: linear-gradient(180deg, var(--white) 0%, var(--ice-50) 100%);
}

.demo-cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  padding: 58px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 117, 71, 0.28), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.section-kicker.light {
  color: #a8c7ff;
}

.demo-content p {
  color: #c9d9e8;
}

.demo-points {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.demo-points li::before {
  content: "✓";
  margin-right: 10px;
  color: #5ee0ad;
  font-weight: 900;
}

.demo-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #d8e1ea;
  border-radius: 12px;
  color: var(--navy-900);
  background: #fbfdff;
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(53, 120, 246, 0.18);
  border-color: var(--blue-500);
}

.demo-form .btn-light {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), #f2592d);
}

.success-box {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 12px;
  color: #065f46;
  background: #d1fae5;
  font-weight: 750;
}

.footer {
  padding: 30px 0;
  color: #b7c8d8;
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer a {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 1020px) {
  .navlinks {
    display: none;
  }

  .hero-grid,
  .split,
  .demo-cta {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .phone-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .app-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .topbar .btn {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .hero {
    padding: 64px 0 55px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .section {
    padding: 76px 0;
  }

  .cards,
  .operations-grid,
  .form-row,
  .integration-banner {
    grid-template-columns: 1fr;
  }

  .app-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-card {
    padding: 10px;
    transform: none;
  }

  .app-window {
    padding: 17px;
  }

  .floating-stat {
    right: 10px;
    bottom: -22px;
  }

  .integration-banner,
  .demo-cta {
    padding: 30px 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.workflow-infographic {
  margin-top: 64px;
}

.workflow-infographic figure {
  margin-bottom: 0;
}

.workflow-infographic a {
  display: block;
}

.workflow-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.workflow-infographic figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px 0;
  color: var(--slate-500);
  font-size: 0.95rem;
}

.workflow-infographic figcaption span {
  white-space: nowrap;
  color: var(--blue-600);
  font-weight: 700;
}

@media (max-width: 700px) {
  .workflow-infographic {
    margin-top: 36px;
  }

  .workflow-infographic .image-card {
    padding: 8px;
  }

  .workflow-infographic img {
    border-radius: 12px;
  }

  .workflow-infographic figcaption {
    display: block;
    padding: 12px 6px 4px;
    font-size: 0.85rem;
  }

  .workflow-infographic figcaption span {
    display: block;
    margin-top: 4px;
  }
}