:root {
  --navy-950: #041225;
  --navy-900: #071a33;
  --navy-850: #09213f;
  --navy-800: #0b294d;
  --navy-700: #123b68;
  --green-700: #0d7c4d;
  --green-600: #11965d;
  --green-500: #16a36a;
  --green-400: #2cbd7d;
  --green-100: #dff6ec;
  --grey-900: #24303a;
  --grey-800: #34424d;
  --grey-700: #53616c;
  --grey-600: #667580;
  --grey-500: #84919a;
  --grey-400: #a7b0b6;
  --grey-300: #ccd3d7;
  --grey-200: #e1e6e8;
  --grey-150: #ebeff0;
  --grey-100: #f3f6f7;
  --grey-50: #f8fafb;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 5px 18px rgba(7, 26, 51, 0.06);
  --shadow-md: 0 18px 50px rgba(7, 26, 51, 0.10);
  --shadow-lg: 0 30px 90px rgba(4, 18, 37, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1216px;
  --header-height: 82px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--grey-800);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
}

h3 {
  font-size: 1.28rem;
}

::selection {
  background: var(--green-100);
  color: var(--navy-900);
}

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

.section {
  padding: 112px 0;
}

.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;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 9999;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 18px;
  border: 2px solid var(--green-500);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* Shared components */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 163, 106, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(22, 163, 106, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-600);
  box-shadow: 0 15px 32px rgba(22, 163, 106, 0.28);
}

.button-ghost {
  border-color: var(--grey-300);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--navy-900);
  background: var(--white);
}

.button-sm {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-lg {
  min-height: 56px;
  padding: 15px 23px;
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 760;
  text-align: left;
}

.text-link-large {
  font-size: 1.02rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-kicker-light {
  color: var(--green-400);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 430px;
  margin-bottom: 7px;
  color: var(--grey-600);
  font-size: 1.05rem;
}

.centered-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .section-kicker {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 18px;
}

.centered-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--grey-600);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(7, 26, 51, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(7, 26, 51, 0.06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: var(--grey-700);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color var(--transition);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--navy-900);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 720;
}

.header-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green-500);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--grey-200);
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menu-close-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 0;
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 68%);
}

.hero::before {
  position: absolute;
  top: 90px;
  right: -190px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 106, 0.09) 0%, rgba(22, 163, 106, 0) 69%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(7, 26, 51, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 26, 51, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(440px, 0.82fr);
  align-items: center;
  gap: 42px;
  min-height: 610px;
}

.hero-copy {
  padding-bottom: 35px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--grey-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  position: relative;
  width: 28px;
  height: 10px;
}

.eyebrow span::before,
.eyebrow span::after {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--green-500);
  content: "";
}

.eyebrow span::before {
  top: 1px;
  transform: translateX(4px);
}

.eyebrow span::after {
  bottom: 1px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 25px;
}

.hero h1 em {
  position: relative;
  color: var(--green-500);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 2px;
  bottom: -7px;
  left: 3px;
  height: 5px;
  border-radius: 20px;
  background: var(--green-500);
  content: "";
  opacity: 0.16;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 33px;
  color: var(--grey-600);
  font-size: clamp(1.05rem, 1.8vw, 1.21rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 34px;
}

.hero-actions .button-ghost svg {
  fill: var(--green-500);
  stroke: var(--green-500);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  color: var(--grey-700);
  font-size: 0.84rem;
  font-weight: 620;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-100);
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual-wrap {
  position: relative;
  min-width: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(22, 163, 106, 0.08);
  filter: blur(45px);
  transform: translate(-50%, -50%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 25px 45px rgba(7, 26, 51, 0.12));
}

.visual-status-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 13px 16px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.visual-status-card .status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid var(--green-100);
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(22, 163, 106, 0.08);
}

.visual-status-card div {
  display: grid;
  gap: 2px;
}

.visual-status-card strong {
  color: var(--navy-900);
  font-size: 0.82rem;
  line-height: 1.2;
}

.visual-status-card small {
  color: var(--grey-500);
  font-size: 0.69rem;
}

.capability-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr repeat(5, auto);
  align-items: center;
  gap: 30px;
  min-height: 84px;
  margin-top: 32px;
  border-top: 1px solid var(--grey-200);
  color: var(--grey-500);
  font-size: 0.8rem;
  font-weight: 710;
  letter-spacing: 0.035em;
}

.capability-label {
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Solutions */
.solutions-section {
  background: var(--white);
}

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

.solution-card {
  position: relative;
  display: flex;
  min-height: 352px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 90px;
  background: var(--grey-50);
  content: "";
  transition: background var(--transition), transform 300ms ease;
}

.solution-card:hover {
  border-color: rgba(22, 163, 106, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.solution-card:hover::before {
  background: var(--green-100);
  transform: scale(1.12);
}

.solution-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: var(--white);
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.solution-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.solution-card p {
  margin-bottom: 20px;
  color: var(--grey-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 25px;
}

.tag-row span {
  padding: 5px 8px;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  background: var(--grey-50);
  color: var(--grey-600);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.solution-card .text-link {
  margin-top: auto;
  color: var(--green-700);
  font-size: 0.83rem;
}

.solution-card .text-link svg {
  width: 17px;
  height: 17px;
}

.featured-card {
  grid-column: span 2;
  padding-right: 37%;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  border-color: var(--navy-800);
}

.featured-card::before {
  top: auto;
  right: -42px;
  bottom: -80px;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(22, 163, 106, 0.17);
  border-radius: 50%;
  background: transparent;
}

.featured-card::after {
  position: absolute;
  right: 43px;
  bottom: 48px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  transform: rotate(8deg);
}

.featured-card:hover {
  border-color: var(--green-500);
}

.featured-card .solution-icon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.featured-card .solution-icon svg {
  stroke: var(--white);
}

.featured-card h3,
.featured-card .text-link {
  color: var(--white);
}

.featured-card p {
  color: rgba(255, 255, 255, 0.70);
}

.featured-card .tag-row span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.product-label {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--green-400);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Product showcase */
.showcase-section {
  overflow: hidden;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.74);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: 72px;
}

.showcase-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.showcase-copy > p {
  max-width: 520px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.03rem;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 37px;
}

.showcase-tab {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.58);
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.showcase-tab:hover,
.showcase-tab.is-active {
  border-color: var(--green-500);
  background: rgba(22, 163, 106, 0.13);
  color: var(--white);
}

.showcase-content {
  min-height: 294px;
}

.showcase-number {
  display: block;
  margin-bottom: 13px;
  color: var(--green-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.showcase-content h3 {
  max-width: 480px;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.6rem;
}

.showcase-content > p {
  max-width: 500px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: 0.92rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 0.86rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(22, 163, 106, 0.17);
  fill: none;
  stroke: var(--green-400);
  stroke-width: 2.4;
}

.showcase-screen {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0,0,0,.28);
}

.showcase-screen::before {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(44, 189, 125, .25);
  border-radius: 50%;
  content: "";
}

.screen-chrome {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-50);
}

.screen-dots {
  display: flex;
  gap: 5px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
}

.screen-dots span:first-child {
  background: var(--green-500);
}

.screen-address {
  display: flex;
  height: 28px;
  flex: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--grey-500);
  font-size: 0.65rem;
}

.screen-user {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
}

.product-screen {
  position: absolute;
  inset: 54px 0 0;
  overflow: hidden;
  background: var(--grey-100);
  color: var(--grey-800);
  animation: fadeScreen 300ms ease;
}

@keyframes fadeScreen {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ERP screen */
.product-screen[data-screen="erp"] {
  display: grid;
  grid-template-columns: 68px 1fr;
}

.app-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding-top: 25px;
  background: var(--navy-900);
}

.app-sidebar img {
  width: 32px;
  margin-bottom: 18px;
}

.app-sidebar span {
  width: 25px;
  height: 7px;
  border-radius: 5px;
  background: rgba(255,255,255,.18);
}

.app-sidebar span.active {
  background: var(--green-400);
}

.app-canvas {
  padding: 27px;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.app-topline div {
  display: grid;
}

.app-topline small,
.metric-row small,
.chart-card > small,
.activity-card > small {
  color: var(--grey-500);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.app-topline strong {
  color: var(--navy-900);
  font-size: 1.15rem;
}

.app-topline button,
.id-panel-top button,
.id-action-row button,
.weigh-actions button {
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 750;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 16px;
}

.metric-row > div,
.chart-card,
.activity-card {
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  background: var(--white);
}

.metric-row > div {
  display: grid;
  gap: 4px;
}

.metric-row strong {
  color: var(--navy-900);
  font-size: 1.25rem;
}

.metric-row span {
  color: var(--green-600);
  font-size: 0.66rem;
  font-weight: 720;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 13px;
}

.chart-card {
  min-height: 194px;
}

.bar-chart {
  display: flex;
  height: 130px;
  align-items: flex-end;
  gap: 10px;
  padding-top: 25px;
}

.bar-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, var(--navy-800), var(--green-500));
  opacity: .88;
}

.activity-card p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 17px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-150);
  font-size: 0.65rem;
}

.activity-card b {
  color: var(--navy-900);
  font-weight: 680;
}

.activity-card span {
  color: var(--grey-600);
}

/* ID screen */
.product-screen[data-screen="id"] {
  padding: 27px;
  background: #eef2f4;
}

.id-admin-panel {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: var(--white);
}

.id-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--grey-150);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 750;
}

.id-workspace {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  height: calc(100% - 52px);
  padding: 22px;
}

.digital-id-card {
  position: relative;
  aspect-ratio: 1.58;
  padding: 17px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 22px 40px rgba(7,26,51,.22);
}

.digital-id-card::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border: 30px solid rgba(22,163,106,.28);
  border-radius: 50%;
  content: "";
}

.id-card-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.id-card-brand img {
  width: 20px;
}

.id-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 22px 0 12px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 1rem;
  font-weight: 780;
  place-items: center;
}

.digital-id-card > strong,
.digital-id-card > small {
  position: relative;
  z-index: 2;
  display: block;
}

.digital-id-card > strong {
  font-size: .85rem;
}

.digital-id-card > small {
  color: rgba(255,255,255,.62);
  font-size: .58rem;
}

.id-meta {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 17px;
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,.66);
  font-size: .48rem;
}

.qr-pattern {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  width: 46px;
  height: 46px;
  border: 5px solid var(--white);
  background-image: linear-gradient(90deg, var(--white) 50%, transparent 50%), linear-gradient(var(--white) 50%, transparent 50%);
  background-size: 8px 8px;
}

.id-details small {
  color: var(--green-600);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.id-details h4 {
  margin: 7px 0 16px;
  font-size: 1.35rem;
}

.id-details dl {
  margin: 0 0 20px;
}

.id-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-150);
  font-size: .67rem;
}

.id-details dt {
  color: var(--grey-500);
}

.id-details dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 680;
}

.id-details .status-live {
  color: var(--green-600);
}

.id-action-row {
  display: flex;
  gap: 7px;
}

.id-action-row button:first-child {
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--navy-900);
}

/* Weighbridge screen */
.product-screen[data-screen="weighbridge"] {
  padding: 30px;
  background: #eff3f4;
}

.weigh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.weigh-header div {
  display: grid;
}

.weigh-header small,
.weight-display small,
.weigh-details-grid small {
  color: var(--grey-500);
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.weigh-header strong {
  color: var(--navy-900);
  font-size: 1.12rem;
}

.live-pill {
  padding: 7px 10px;
  border-radius: 20px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .61rem;
  font-weight: 760;
}

.weight-display {
  position: relative;
  display: grid;
  min-height: 205px;
  align-content: center;
  justify-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-900);
  box-shadow: 0 20px 40px rgba(7,26,51,.15);
}

.weight-display::before {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
}

.weight-display small {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.58);
}

.weight-display strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.weight-display em {
  color: var(--green-400);
  font-size: .28em;
  font-style: normal;
  letter-spacing: .02em;
}

.weight-line {
  position: relative;
  z-index: 1;
  width: 155px;
  height: 3px;
  margin-top: 15px;
  border-radius: 4px;
  background: var(--green-500);
  box-shadow: 0 0 20px rgba(44,189,125,.75);
}

.weigh-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 19px;
}

.weigh-details-grid > div {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
}

.weigh-details-grid strong {
  color: var(--navy-900);
  font-size: .71rem;
}

.weigh-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.weigh-actions button:first-child {
  border: 1px solid var(--grey-300);
  background: var(--white);
  color: var(--grey-700);
}

.weigh-actions .primary-action {
  background: var(--navy-900);
}

/* Navigation screen */
.product-screen[data-screen="navigation"] {
  background: #eef2f3;
}

.map-interface,
.map-interface > svg {
  width: 100%;
  height: 100%;
}

.map-interface {
  position: relative;
}

.map-interface > svg {
  object-fit: cover;
}

.map-card {
  position: absolute;
  padding: 13px;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.map-card small {
  color: var(--grey-500);
  font-size: .57rem;
  font-weight: 740;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  font-size: .91rem;
}

.map-card p {
  margin: 4px 0 0;
  color: var(--grey-500);
  font-size: .58rem;
}

.map-progress {
  top: 24px;
  left: 24px;
  width: 154px;
}

.map-progress > div {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--grey-200);
}

.map-progress > div span {
  display: block;
  width: 76%;
  height: 100%;
  background: var(--green-500);
}

.map-next {
  right: 24px;
  bottom: 24px;
  min-width: 154px;
}

/* Why */
.why-section {
  background: var(--grey-50);
}

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

.value-card {
  position: relative;
  min-height: 292px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 38px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-index {
  position: absolute;
  top: 21px;
  right: 22px;
  color: var(--grey-300);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: .88rem;
}

.decision-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
}

.decision-panel span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-400);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.decision-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
}

/* Process */
.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.22fr);
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 21px;
}

.process-intro p {
  max-width: 480px;
  margin-bottom: 29px;
  color: var(--grey-600);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 15px;
  padding: 31px 0;
  border-bottom: 1px solid var(--grey-200);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: var(--grey-50);
  color: var(--green-700);
  font-size: .73rem;
  font-weight: 800;
  place-items: center;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.process-list p {
  max-width: 540px;
  margin: 0;
  color: var(--grey-600);
  font-size: .94rem;
}

/* About */
.about-section {
  overflow: hidden;
  background: var(--grey-100);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(440px, 1.12fr);
  align-items: stretch;
  gap: 78px;
}

.about-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
}

.about-visual::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.about-mark {
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 64px;
  display: grid;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  place-items: center;
  transform: rotate(-6deg);
}

.about-mark img {
  width: 68px;
}

.about-line {
  position: absolute;
  z-index: 1;
  height: 9px;
  border-radius: 10px;
  background: var(--green-500);
  transform: rotate(-31deg);
}

.about-line-one {
  top: 255px;
  left: -76px;
  width: 480px;
}

.about-line-two {
  top: 303px;
  left: 25px;
  width: 480px;
  opacity: .4;
}

.about-pulse {
  position: absolute;
  right: 57px;
  bottom: 103px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(44,189,125,.42);
  border-radius: 50%;
}

.about-pulse::before,
.about-pulse::after {
  position: absolute;
  border: 1px solid rgba(44,189,125,.23);
  border-radius: 50%;
  content: "";
}

.about-pulse::before { inset: 15px; }
.about-pulse::after { inset: 34px; }

.about-pulse span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 20px rgba(44,189,125,.8);
  transform: translate(-50%, -50%);
}

.about-visual > p {
  position: absolute;
  z-index: 2;
  bottom: 55px;
  left: 58px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.7;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-copy > p {
  color: var(--grey-600);
  font-size: 1rem;
}

.about-copy > p strong {
  color: var(--navy-900);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.about-principles > div {
  padding: 18px;
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  background: var(--white);
}

.about-principles span,
.about-principles strong,
.about-principles small {
  display: block;
}

.about-principles span {
  margin-bottom: 15px;
  color: var(--green-600);
  font-size: .65rem;
  font-weight: 800;
}

.about-principles strong {
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: .85rem;
}

.about-principles small {
  color: var(--grey-500);
  font-size: .68rem;
  line-height: 1.5;
}

/* Demo form */
.demo-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.demo-section::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(22,163,106,.08);
  border-radius: 50%;
  content: "";
}

.demo-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(580px, 1.28fr);
  align-items: start;
  gap: 85px;
}

.demo-intro {
  position: sticky;
  top: 110px;
}

.demo-intro h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.demo-intro > p {
  margin-bottom: 30px;
  color: rgba(255,255,255,.64);
  font-size: 1rem;
}

.demo-contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.demo-contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  transition: border-color var(--transition), background var(--transition);
}

.demo-contact-list a:hover {
  border-color: rgba(44,189,125,.5);
  background: rgba(255,255,255,.06);
}

.demo-contact-list a > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(22,163,106,.15);
  place-items: center;
}

.demo-contact-list svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--green-400);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-contact-list div {
  display: grid;
}

.demo-contact-list small {
  color: rgba(255,255,255,.46);
  font-size: .65rem;
}

.demo-contact-list strong {
  color: var(--white);
  font-size: .88rem;
}

.demo-expectation {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.demo-expectation > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.demo-expectation li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.59);
  font-size: .8rem;
}

.demo-expectation li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: var(--green-400);
  font-size: .62rem;
  font-weight: 800;
  place-items: center;
}

.form-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-card-heading {
  margin-bottom: 27px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}

.form-card-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--green-600);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.form-card-heading h3 {
  margin-bottom: 7px;
  font-size: 1.6rem;
}

.form-card-heading p {
  margin: 0;
  color: var(--grey-500);
  font-size: .76rem;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: .75rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--grey-900);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 130px;
  padding: 12px 13px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--grey-600) 50%), linear-gradient(135deg, var(--grey-600) 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 35px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--grey-400);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--grey-500);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(22,163,106,.09);
  outline: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  background: #fffafa;
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 4px;
  color: var(--danger);
  font-size: .65rem;
  line-height: 1.3;
}

.textarea-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.textarea-meta > small:last-child {
  margin-top: 4px;
  color: var(--grey-400);
  font-size: .63rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--grey-600);
  cursor: pointer;
  font-size: .72rem;
  line-height: 1.55;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green-500);
}

.consent-error {
  margin: 4px 0 16px 26px;
}

.form-card .button-block {
  margin-top: 2px;
}

.form-card .button-block[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.whatsapp-form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 13px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--green-700);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 720;
}

.whatsapp-form-link svg {
  width: 18px;
  height: 18px;
  fill: var(--green-600);
  stroke: var(--green-600);
  stroke-width: 1.4;
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 620;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: var(--green-100);
  color: var(--success);
}

.form-status.is-error {
  background: #feeceb;
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(550px, 1.45fr);
  gap: 95px;
}

.faq-heading h2 {
  margin-bottom: 12px;
}

.faq-heading p {
  max-width: 330px;
  color: var(--grey-600);
}

.faq-list {
  border-top: 1px solid var(--grey-200);
}

.faq-list details {
  border-bottom: 1px solid var(--grey-200);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 2px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: .99rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--grey-300);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--navy-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 50px 24px 2px;
  color: var(--grey-600);
  font-size: .9rem;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.58);
}

.footer-main {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 21px;
}

.footer-brand > p {
  max-width: 330px;
  margin-bottom: 20px;
  font-size: .88rem;
}

.footer-contact {
  display: grid;
  gap: 5px;
  color: var(--white);
  font-size: .81rem;
  font-weight: 660;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green-400);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: .8rem;
  transition: color var(--transition);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 52px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(13,124,77,.32);
  font-size: .78rem;
  font-weight: 760;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--green-600);
  box-shadow: 0 18px 45px rgba(13,124,77,.38);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

/* Solution dialog */
.solution-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: min(88vh, 830px);
  padding: 0;
  overflow: hidden auto;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.solution-dialog::backdrop {
  background: rgba(4,18,37,.72);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  place-items: center;
}

.dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.dialog-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--green-100);
  place-items: center;
}

.dialog-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dialog-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--green-600);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.solution-dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.dialog-intro {
  max-width: 710px;
  margin-bottom: 29px;
  color: var(--grey-600);
}

.dialog-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 27px 0;
  border-top: 1px solid var(--grey-200);
}

.dialog-columns h3 {
  margin-bottom: 14px;
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.dialog-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog-list li {
  position: relative;
  padding-left: 18px;
  color: var(--grey-600);
  font-size: .82rem;
}

.dialog-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.outcomes-list li::before {
  width: 9px;
  height: 5px;
  border: solid var(--green-600);
  border-width: 0 0 2px 2px;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg);
}

.dialog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border-radius: 12px;
  background: var(--navy-900);
}

.dialog-cta > div {
  display: grid;
}

.dialog-cta strong {
  color: var(--white);
  font-size: .9rem;
}

.dialog-cta span {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
}

/* Toast */
.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 88px;
  max-width: 360px;
  padding: 13px 16px;
  border-radius: 9px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: .78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

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

/* Static legal pages */
.legal-page {
  padding-top: var(--header-height);
  background: var(--grey-50);
}

.legal-hero {
  padding: 90px 0 55px;
  background: var(--navy-900);
  color: rgba(255,255,255,.65);
}

.legal-hero h1 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.legal-content {
  max-width: 850px;
  margin: 45px auto 90px;
  padding: 45px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 26px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--grey-600);
  font-size: .92rem;
}

/* Reveal animation */
[data-reveal] {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Responsive */
@media (max-width: 1160px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: .86rem;
  }

  .header-phone span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
  }

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

  .featured-card {
    grid-column: span 2;
  }

  .showcase-layout {
    grid-template-columns: minmax(310px, .72fr) minmax(500px, 1.28fr);
    gap: 45px;
  }

  .showcase-screen {
    min-height: 500px;
  }

  .about-layout,
  .demo-layout {
    gap: 55px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .header-phone,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(255,255,255,.98);
    box-shadow: 0 15px 35px rgba(7,26,51,.08);
    opacity: 0;
    transition: max-height 320ms ease, opacity var(--transition), padding 320ms ease, border-color var(--transition);
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 13px 20px 25px;
    border-color: var(--grey-200);
    opacity: 1;
  }

  .mobile-nav a {
    padding: 14px 5px;
    border-bottom: 1px solid var(--grey-150);
    color: var(--navy-900);
    font-weight: 690;
  }

  .mobile-nav a:last-child {
    border: 0;
    color: var(--green-700);
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero-visual-wrap {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 25px 0;
    text-align: center;
  }

  .capability-label {
    grid-column: 1 / -1;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .showcase-layout,
  .process-layout,
  .about-layout,
  .demo-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 740px;
  }

  .showcase-content {
    min-height: 0;
  }

  .showcase-screen {
    min-height: 540px;
  }

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

  .process-layout {
    gap: 50px;
  }

  .process-intro,
  .demo-intro {
    position: static;
  }

  .about-layout {
    gap: 50px;
  }

  .about-visual {
    min-height: 480px;
  }

  .demo-layout {
    gap: 45px;
  }

  .demo-intro {
    max-width: 720px;
  }

  .faq-layout {
    gap: 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 177px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 53px);
  }

  .hero-layout {
    gap: 30px;
  }

  .eyebrow {
    font-size: .69rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .visual-status-card {
    right: 4px;
    bottom: 28px;
    min-width: 190px;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .featured-card {
    grid-column: auto;
    padding-right: 28px;
  }

  .featured-card::after {
    display: none;
  }

  .solution-card {
    min-height: 315px;
  }

  .product-label {
    position: static;
    display: block;
    margin: -12px 0 18px;
  }

  .showcase-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-tab {
    min-height: 40px;
  }

  .showcase-screen {
    min-height: 440px;
    border-radius: 14px;
  }

  .product-screen[data-screen="erp"] {
    grid-template-columns: 48px 1fr;
  }

  .app-canvas,
  .product-screen[data-screen="id"],
  .product-screen[data-screen="weighbridge"] {
    padding: 16px;
  }

  .app-sidebar {
    gap: 19px;
  }

  .app-sidebar img {
    width: 25px;
  }

  .app-topline button {
    display: none;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-row > div:last-child {
    display: none;
  }

  .metric-row strong {
    font-size: 1rem;
  }

  .dashboard-row {
    grid-template-columns: 1fr;
  }

  .activity-card {
    display: none;
  }

  .id-workspace {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  .digital-id-card {
    width: min(330px, 100%);
    margin-inline: auto;
  }

  .id-details {
    display: none;
  }

  .weigh-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .weight-display {
    min-height: 190px;
  }

  .weight-display strong {
    font-size: 2.9rem;
  }

  .map-progress {
    top: 15px;
    left: 15px;
  }

  .map-next {
    right: 15px;
    bottom: 15px;
  }

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

  .value-card {
    min-height: auto;
  }

  .decision-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 25px;
  }

  .decision-panel .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
  }

  .process-list > li > span {
    width: 40px;
    height: 40px;
  }

  .about-visual {
    min-height: 410px;
  }

  .about-mark {
    top: 48px;
    left: 40px;
    width: 90px;
    height: 90px;
  }

  .about-mark img {
    width: 52px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 26px 20px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .dialog-shell {
    padding: 35px 22px 23px;
  }

  .dialog-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dialog-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-cta .button {
    width: 100%;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .capability-strip {
    font-size: .72rem;
  }

  .showcase-screen {
    min-height: 405px;
  }

  .screen-chrome {
    padding: 0 11px;
  }

  .screen-address {
    font-size: .55rem;
  }

  .product-screen[data-screen="id"],
  .product-screen[data-screen="weighbridge"] {
    padding: 11px;
  }

  .id-admin-panel {
    padding: 11px;
  }

  .digital-id-card {
    padding: 13px;
  }

  .id-avatar {
    width: 50px;
    height: 50px;
    margin: 14px 0 8px;
  }

  .weight-display strong {
    font-size: 2.35rem;
  }

  .weigh-details-grid > div {
    padding: 9px;
  }

  .about-pulse {
    right: 22px;
    bottom: 92px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
